diff --git a/.gitattributes b/.gitattributes
index 1ff0c42304..16abb93829 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -61,3 +61,9 @@
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
+
+###############################################################################
+# Executable files - preserve execution permissions on Unix systems
+# (https://git-scm.com/docs/gitattributes#_executable)
+###############################################################################
+runtime/*.exe binary
\ No newline at end of file
diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml
index 9a5cace9a9..b81fa42928 100644
--- a/.github/workflows/spellcheck.yml
+++ b/.github/workflows/spellcheck.yml
@@ -1,6 +1,8 @@
-name: 'Spell Checker'
+name: Spell Checker
on:
+ push:
+ branches: [ dev ]
pull_request:
branches: [ dev ]
workflow_dispatch:
@@ -13,27 +15,26 @@ on:
jobs:
spellcheck:
runs-on: ubuntu-latest
- env:
+ env:
CONFIG_URL: https://raw.githubusercontent.com/Nightblade/pob-dict/main
steps:
-
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
- name: Fetch config file and dictionaries
- run: |
- curl --silent --show-error --parallel --remote-name-all \
- ${{ env.CONFIG_URL }}/cspell.json \
- ${{ env.CONFIG_URL }}/pob-dict.txt \
- ${{ env.CONFIG_URL }}/poe-dict.txt \
- ${{ env.CONFIG_URL }}/ignore-dict.txt \
- ${{ env.CONFIG_URL }}/extra-en-dict.txt \
+ run:
+ curl --silent --show-error --parallel --remote-name-all
+ ${{ env.CONFIG_URL }}/cspell.json
+ ${{ env.CONFIG_URL }}/pob-dict.txt
+ ${{ env.CONFIG_URL }}/poe-dict.txt
+ ${{ env.CONFIG_URL }}/ignore-dict.txt
+ ${{ env.CONFIG_URL }}/extra-en-dict.txt
${{ env.CONFIG_URL }}/contribs-dict.txt
- name: Run cspell
- uses: streetsidesoftware/cspell-action@v6.9.0
+ uses: streetsidesoftware/cspell-action@v7
with:
files: '**' # needed as workaround for non-incremental runs (overrides in config still work ok)
config: "cspell.json"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index aaaee8173f..290a8feb47 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,119 @@
# Changelog
+## [v0.11.2](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.11.2) (2025/09/02)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.11.1...v0.11.2)
+
+
+## What's Changed
+### Fixed Crashes
+- Fix crash when allocating Answered Call [\#1270](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1270) ([Blitz54](https://github.com/Blitz54))
+
+
+
+## [v0.11.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.11.1) (2025/09/02)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.11.0...v0.11.1)
+
+### Fixed Crashes
+- Fix Crash when importing builds using Warcries ([LocalIdentity](https://github.com/LocalIdentity))
+
+
+## [v0.11.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.11.0) (2025/09/02)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.10.0...v0.11.0)
+
+
+## What's Changed
+### The Third Edict
+- Add all new 0.3 skills and update existing skills [\#1257](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1257) ([LocalIdentity](https://github.com/LocalIdentity))
+- Update current Uniques and add 0.3 Uniques [\#1242](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1242) ([Blitz54](https://github.com/Blitz54))
+- Update Minions and Spectres with 0.3 changes [\#1236](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1236) ([Blitz54](https://github.com/Blitz54))
+- Add new 0.3 item bases [\#1235](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1235) ([Wires77](https://github.com/Wires77))
+- Add Abyssal Lich Ascendancy to tree [\#1238](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1238) ([trompetin17](https://github.com/justjuangui))
+- Add support for "Hollow Palm Technique" Keystone [\#1206](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1206) ([majochem](https://github.com/majochem))
+- Add support for "Blackflame Covenant" Keystone [\#1264](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1264) ([majochem](https://github.com/majochem))
+- Add support for Totems [\#1188](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1188) ([majochem](https://github.com/majochem))
+- Add support for adding essence modifiers to items [\#1239](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1239) ([Wires77](https://github.com/Wires77))
+- Add new 0.3.0 Keystones to "From Nothing" Unique jewel [\#1263](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1263) ([majochem](https://github.com/majochem))
+### New to Path of Building
+- Add support for new "+X% of Armour also applies to Y Damage" mods [\#1251](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1251) ([majochem](https://github.com/majochem))
+- Add support for monster on-kill explosion damage [\#1259](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1259) ([TPlant](https://github.com/PJacek))
+- Add support for "Sustainable Practices" (Pathfinder Ascendancy Node) [\#1250](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1250) ([majochem](https://github.com/majochem))
+- Update "item defence" related modifiers [\#1261](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1261) ([majochem](https://github.com/majochem))
+### User Interface
+- Show Influence icons on item headers [\#1199](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1199) ([Blitz54](https://github.com/Blitz54))
+- Fix Gem tooltips missing stats on some skills [\#1265](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1265) ([LocalIdentity](https://github.com/LocalIdentity))
+### Fixed Calculations
+- Fix values changing depending on order of skill groups [\#1245](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1245) ([Paliak](https://github.com/Paliak))
+- Remove cap on "x% Armour applies to y Damage" [\#1252](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1252) ([majochem](https://github.com/majochem))
+### Accuracy Improvements
+- Fix Lead Me Through Grace... parsing [\#1249](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1249) ([Nostrademous](https://github.com/Nostrademous))
+### Fixed Bugs
+- Fix invalid authentication URL being opened [\#1244](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1244) ([teroshan](https://github.com/teroshan))
+
+
+## [v0.10.2](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.10.2) (2025/08/30)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.10.1...v0.10.2)
+
+### Fixed Crashes
+- Fix error on issue opening builds created before 0.3 ([LocalIdentity](https://github.com/LocalIdentity))
+
+## [v0.10.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.10.1) (2025/08/30)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.10.0...v0.10.1)
+
+### Fixed Crashes
+- Fix Crash when opening some builds that converted a 0.2 tree to 0.3 ([LocalIdentity](https://github.com/LocalIdentity))
+
+## [v0.10.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.10.0) (2025/08/30)
+
+[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.9.0...v0.10.0)
+
+
+## What's Changed
+### The Third Edict
+- Add 0.3 passive tree [\#1234](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1234) ([trompetin17](https://github.com/justjuangui))
+- Update Minions to no longer need Accuracy [\#1193](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1193) ([majochem](https://github.com/majochem))
+- Update Giant's Blood [\#1208](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1208) ([dhope1106](https://github.com/dhope1106))
+- Add miscellaneous changes from patch notes [\#1187](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1187) ([LocalIdentity](https://github.com/LocalIdentity))
+- Update gem attributes requirement formula [\#1172](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1172) ([LocalIdentity](https://github.com/LocalIdentity))
+- Update Unarmed Crit to 5% [\#1192](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1192) ([majochem](https://github.com/majochem))
+- Update Evasion / Hit Chance formula [\#1228](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1228) ([LocalIdentity](https://github.com/LocalIdentity))
+- Update Evasion to also apply to Spell damage [\#1229](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1229) ([LocalIdentity](https://github.com/LocalIdentity))
+- Add Importing for Desecrated mods [\#1198](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1198) ([LocalIdentity](https://github.com/LocalIdentity))
+### New to Path of Building
+- Add shortcut to copy node text from Passive Tree to the clipboard [\#1211](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1211) ([rexfox147](https://github.com/rexfox147))
+- Add support for "with Spell skills" mods [\#1213](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1213) ([NL908](https://github.com/NL908))
+- Add support for "reduced effect of Freeze on you" [\#1216](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1216) ([Blitz54](https://github.com/Blitz54))
+- Sort Attribute Requirement List [\#1219](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1219) ([Blitz54](https://github.com/Blitz54))
+- Add support for "Apex of the Moment" (Chronomancer) [\#1194](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1194) ([majochem](https://github.com/majochem))
+- Update PoE.Ninja match URLs for merged site [\#1179](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1179) ([Wires77](https://github.com/Wires77))
+### User Interface
+- Fix Ascendancy header image and rename itemTooltip to tooltipHeader [\#1189](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1189) ([Blitz54](https://github.com/Blitz54))
+- Fix vertical spacing and tooltip header size [\#1190](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1190) ([Blitz54](https://github.com/Blitz54))
+- Change wording for "Base Damage Reduction" on Hit taken mult. section [\#1214](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1214) ([DarkJaslo](https://github.com/DarkJaslo))
+- Keep Max Price and Max Level between Trade Queries [\#1215](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1215) ([mcagnion](https://github.com/mcagnion))
+### Fixed Calculations
+- Fix rounding issue for min/max damage [\#1200](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1200) ([Blitz54](https://github.com/Blitz54))
+- Use harmonic mean for Dual Wield Attack Speed calc instead of average [\#1205](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1205) ([Tntmister](https://github.com/Tntmister))
+- Fix negative Impale DPS for dual wielding combined Attacks [\#1218](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1218) ([andyli00](https://github.com/andyli00))
+- Fix CI not working correctly with Ghostwrithe [\#1210](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1210) ([dhope1106](https://github.com/dhope1106))
+- Fixed EHP based on Block Effect calculation [\#1227](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1227) ([n1tr0xs](https://github.com/n1tr0xs))
+### Fixed Behaviours
+- Fix automatically running character import on loading build, and show logout button in more cases [\#1186](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1186) ([Blitz54](https://github.com/Blitz54))
+- Fix outdated PoE1 bonuses for dual wielding [\#1201](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1201) ([majochem](https://github.com/majochem))
+- Fix Reduced Effect of Curses on Self not being limited [\#1220](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1220) ([Blitz54](https://github.com/Blitz54))
+- Fix gems being added to skill groups when sorting dropdown [\#1221](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1221) ([Paliak](https://github.com/Paliak))
+- Fix Item sort option for "Current Usable" not using taking into account attribute requirement mods [\#1222](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1222) ([LocalIdentity](https://github.com/LocalIdentity))
+- Fix Imported Gem level for skills linked to + gem level supports [\#1204](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1204) ([LocalIdentity](https://github.com/LocalIdentity))
+- Fix Support gems not working with some Minion Skills [\#1231](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1231) ([Paliak](https://github.com/Paliak))
+- Fix Keystones and Jewel sockets from being allocated with Weapon Set passives [\#1197](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1197) ([TheDechev](https://github.com/TheDechev))
+### Accuracy Improvements
+- Fix hover tooltip showing same name for all Companions/Spectres [\#1207](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1207) ([Blitz54](https://github.com/Blitz54))
+
+
## [v0.9.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v0.9.0) (2025/08/23)
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/compare/v0.8.0...v0.9.0)
@@ -570,4 +684,4 @@ A quick hit-list of things that ^1ARE NOT SUPPORTED ^7in this initial release:
We still need to complete the process of fully removing the concept of
skill gems being tied to item sockets that was in PoE1 to allow for this, we just ran out of time
* Map Mods
-* Boss Skills
\ No newline at end of file
+* Boss Skills
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7c448d30c8..b12e6138a4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -68,6 +68,8 @@ The easiest way to make and test changes is by setting up a development installa
3. Start Path of Building from the repository by running `./runtime/Path{space}of{space}Building-PoE2.exe`.
+ * Note for Linux users: The executable files should automatically have the correct permissions when cloned fresh. If you still encounter permission issues, run once: `chmod +x ./runtime/Path{space}of{space}Building-PoE2.exe`
+
You can now use the shortcut to run the program from the repository. Running the program in this manner automatically enables "Dev Mode", which has some handy debugging feature:
* `F5` restarts the program in-place (this is what usually happens when an update is applied).
* `Ctrl` + `~` toggles the console (Note that this does not work with all keyboard layouts. US layout is a safe bet though).
diff --git a/RELEASE.md b/RELEASE.md
index 04c9523149..2147ab5314 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -27,6 +27,13 @@ Steps:
Updating data from the GGPK uses the PoB exporter (see CONTRIBUTING.md#exporting-ggpk-data-from-path-of-exile). Run each script in order, then check the differences in data to make sure nothing is missing that is expected.
+## Trade query and mod weight updates
+
+1. Delete `src/Data/QueryMods.lua`, then open the "Trade for these items" pane in PoB to re-generate it.
+2. In `src/Export/Scripts/ScriptResources`, there are several files that contain hardcoded mods. If a new mod is added to the game and we can't automatically get weights for it from the ggpk, we need to check the trade site.
+3. Search the corresponding ModX.lua file for `{ "default" }` to find mods that don't have any spawn weights.
+4. Search for those mods on the trade site to find what bases (if any) the mod needs to be added to in `ScriptResources`
+
## Skill tree updates
Skill tree updates require JSON data, usually released by GGG a few days before a new
diff --git a/changelog.txt b/changelog.txt
index 89f2df4c75..d357be3132 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,105 @@
+VERSION[0.11.2][2025/09/02]
+
+--- Fixed Crashes ---
+* Fix crash when allocating Answered Call (Blitz54)
+
+
+VERSION[0.11.1][2025/09/02]
+
+--- Fixed Crashes ---
+* Fix Crash when importing builds using Warcries (LocalIdentity)
+
+VERSION[0.11.0][2025/09/02]
+
+--- The Third Edict ---
+* Add all new 0.3 skills and update existing skills (LocalIdentity)
+* Update current Uniques and add 0.3 Uniques (Blitz54)
+* Update Minions and Spectres with 0.3 changes (Blitz54)
+* Add new 0.3 item bases (Wires77)
+* Add Abyssal Lich Ascendancy to tree (trompetin17)
+* Add support for "Hollow Palm Technique" Keystone (majochem)
+* Add support for "Blackflame Covenant" Keystone (majochem)
+* Add support for Totems (majochem)
+* Add support for adding essence modifiers to items (Wires77)
+* Add new 0.3.0 Keystones to "From Nothing" Unique jewel (majochem)
+
+--- New to Path of Building ---
+* Add support for new "+X% of Armour also applies to Y Damage" mods (majochem)
+* Add support for monster on-kill explosion damage (TPlant)
+* Add support for "Sustainable Practices" (Pathfinder Ascendancy Node) (majochem)
+* Update "item defence" related modifiers (majochem)
+
+--- User Interface ---
+* Show Influence icons on item headers (Blitz54)
+* Fix Gem tooltips missing stats on some skills (LocalIdentity)
+
+--- Fixed Calculations ---
+* Fix values changing depending on order of skill groups (Paliak)
+* Remove cap on "x% Armour applies to y Damage" (majochem)
+
+--- Accuracy Improvements ---
+* Fix Lead Me Through Grace... parsing (Nostrademous)
+
+--- Fixed Bugs ---
+* Fix invalid authentication URL being opened (teroshan)
+
+VERSION[0.10.2][2025/08/30]
+
+--- Fixed Crashes ---
+* Fix error on issue opening builds created before 0.3 (LocalIdentity)
+
+VERSION[0.10.1][2025/08/30]
+
+--- Fixed Crashes ---
+* Fix Crash when opening some builds that converted a 0.2 tree to 0.3 (LocalIdentity)
+
+VERSION[0.10.0][2025/08/30]
+
+--- The Third Edict ---
+* Add 0.3 passive tree (trompetin17)
+* Update Minions to no longer need Accuracy (majochem)
+* Update Giant's Blood (dhope1106)
+* Add miscellaneous changes from patch notes (LocalIdentity)
+* Update gem attributes requirement formula (LocalIdentity)
+* Update Unarmed Crit to 5% (majochem)
+* Update Evasion / Hit Chance formula (LocalIdentity)
+* Update Evasion to also apply to Spell damage (LocalIdentity)
+* Add Importing for Desecrated mods (LocalIdentity)
+
+--- New to Path of Building ---
+* Add shortcut to copy node text from Passive Tree to the clipboard (rexfox147)
+* Add support for "with Spell skills" mods (NL908)
+* Add support for "reduced effect of Freeze on you" (Blitz54)
+* Sort Attribute Requirement List (Blitz54)
+* Add support for "Apex of the Moment" (Chronomancer) (majochem)
+* Update PoE.Ninja match URLs for merged site (Wires77)
+
+--- User Interface ---
+* Fix Ascendancy header image and rename itemTooltip to tooltipHeader (Blitz54)
+* Fix vertical spacing and tooltip header size (Blitz54)
+* Change wording for "Base Damage Reduction" on Hit taken mult. section (DarkJaslo)
+* Keep Max Price and Max Level between Trade Queries (mcagnion)
+
+--- Fixed Calculations ---
+* Fix rounding issue for min/max damage (Blitz54)
+* Use harmonic mean for Dual Wield Attack Speed calc instead of average (Tntmister)
+* Fix negative Impale DPS for dual wielding combined Attacks (andyli00)
+* Fix CI not working correctly with Ghostwrithe (dhope1106)
+* Fixed EHP based on Block Effect calculation (n1tr0xs)
+
+--- Fixed Behaviours ---
+* Fix automatically running character import on loading build, and show logout button in more cases (Blitz54)
+* Fix outdated PoE1 bonuses for dual wielding (majochem)
+* Fix Reduced Effect of Curses on Self not being limited (Blitz54)
+* Fix gems being added to skill groups when sorting dropdown (Paliak)
+* Fix Item sort option for "Current Usable" not using taking into account attribute requirement mods (LocalIdentity)
+* Fix Imported Gem level for skills linked to + gem level supports (LocalIdentity)
+* Fix Support gems not working with some Minion Skills (Paliak)
+* Fix Keystones and Jewel sockets from being allocated with Weapon Set passives (TheDechev)
+
+--- Accuracy Improvements ---
+* Fix hover tooltip showing same name for all Companions/Spectres (Blitz54)
+
VERSION[0.9.0][2025/08/23]
--- New to Path of Building ---
@@ -580,4 +682,4 @@ A quick hit-list of things that ^1ARE NOT SUPPORTED ^7in this initial release:
We still need to complete the process of fully removing the concept of
skill gems being tied to item sockets that was in PoE1 to allow for this, we just ran out of time
* Map Mods
-* Boss Skills
\ No newline at end of file
+* Boss Skills
diff --git a/docs/modSyntax.md b/docs/modSyntax.md
index 4e60ea2f3b..4524b7a2ee 100644
--- a/docs/modSyntax.md
+++ b/docs/modSyntax.md
@@ -60,7 +60,7 @@ Often a mod will only apply under certain conditions, apply multiple times based
* effectEnemyCond: Specify a condition so this mod applies to the enemy when that condition is fulfilled
* effectStackVar: Multiplies the mod by this variable (usually another mod)
* modCond: Apply the mod when the actor has this condition
- * unscaleable: boolean that determines whether this buff can be scaled by buff effect
+ * unscalable: boolean that determines whether this buff can be scaled by buff effect
* DistanceRamp: A rare type that is used on skills and effects that do different things at different distances from the character
* ramp: Numbers to multiply the mod by at different distances. e.g. `ramp = {{35,0},{70,1}}` means the mod does nothing at 35 units, but has its full value at 70 units.
* ModFlagOr: Used when you only need one ModFlag to match, e.g. `["with axes or swords"] = { flags = ModFlag.Hit, tag = { type = "ModFlagOr", modFlags = bor(ModFlag.Axe, ModFlag.Sword) } },` needs `Hit`, but can use either of the other two flags
diff --git a/manifest.xml b/manifest.xml
index 662957a3ac..bd3f3023de 100644
--- a/manifest.xml
+++ b/manifest.xml
@@ -1,13 +1,17 @@
-
+
-
+
+
+
+
+
@@ -68,6 +72,7 @@
+
@@ -84,32 +89,32 @@
-
-
-
-
+
+
+
+
-
+
-
-
-
+
+
+
-
+
-
-
+
+
-
+
@@ -121,192 +126,251 @@
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
-
-
+
+
-
+
+
-
-
+
+
-
+
+
+
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
+
+
-
+
+
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
-
+
+
+
+
+
+
+
-
+
+
+
+
-
+
-
+
+
+
+
+
-
+
+
+
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
-
+
+
+
@@ -315,13 +379,17 @@
+
-
+
+
+
+
-
+
@@ -330,46 +398,62 @@
-
+
+
+
+
+
+
-
+
+
+
-
+
+
-
+
-
+
-
+
-
+
+
-
+
+
+
+
+
+
+
-
+
+
@@ -379,54 +463,67 @@
-
+
+
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
+
+
+
+
-
+
+
+
+
-
+
+
-
-
+
+
+
-
+
+
-
+
+
+
@@ -442,15 +539,19 @@
-
+
+
+
+
+
@@ -459,123 +560,155 @@
+
-
+
+
+
+
-
+
+
+
-
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
-
-
+
+
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
-
+
@@ -788,6 +921,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/runtime/Path{space}of{space}Building-PoE2.exe b/runtime/Path{space}of{space}Building-PoE2.exe
old mode 100644
new mode 100755
diff --git a/runtime/Update.exe b/runtime/Update.exe
old mode 100644
new mode 100755
diff --git a/spec/System/TestAttacks_spec.lua b/spec/System/TestAttacks_spec.lua
index 0d6f5f578d..df7df2d7b9 100644
--- a/spec/System/TestAttacks_spec.lua
+++ b/spec/System/TestAttacks_spec.lua
@@ -8,7 +8,7 @@ describe("TestAttacks", function()
end)
it("creates an item and has the correct crit chance", function()
- assert.are.equals(build.calcsTab.mainOutput.CritChance, 0)
+ assert.are.equals(build.calcsTab.mainOutput.CritChance, data.unarmedWeaponData[0].CritChance * build.calcsTab.mainOutput.HitChance / 100)
build.itemsTab:CreateDisplayItemFromRaw([[
New Item
Heavy Bow
@@ -72,9 +72,9 @@ describe("TestAttacks", function()
runCallback("OnFrame")
-- Add 2 skills with 1 red, 1 blue, 1 green support each
-- Test against Quarterstaff Strike (skill slot 1)
- build.skillsTab:PasteSocketGroup("Quarterstaff Strike 1/0 1\nSplinter 1/0 1\nConduction 1/0 1\nBiting Frost 1/0 1")
+ build.skillsTab:PasteSocketGroup("Quarterstaff Strike 1/0 1\nArmour Break I 1/0 1\nShock 1/0 1\nBiting Frost 1/0 1")
runCallback("OnFrame")
- build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnition 1/0 1\nDiscombobulate 1/0 1\nCoursing Current 1/0 1")
+ build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnite I 1/0 1\nDaze 1/0 1\nShock Conduction 1/0 1")
runCallback("OnFrame")
build.configTab:BuildModList()
diff --git a/spec/System/TestItemMods_spec.lua b/spec/System/TestItemMods_spec.lua
index adbaaf7551..3cd048c22f 100644
--- a/spec/System/TestItemMods_spec.lua
+++ b/spec/System/TestItemMods_spec.lua
@@ -176,4 +176,48 @@ describe("TetsItemMods", function()
assert.are_not.equals(baseLife, build.calcsTab.mainOutput.Life)
end)
+
+ it("globalLimit mods", function()
+ build.configTab.input.customMods = [[
+ -1000% to cold resistance
+ ]]
+ build.configTab:BuildModList()
+ build.itemsTab:CreateDisplayItemFromRaw([[Replica Nebulis
+ Clasped Sceptre
+ League: Heist
+ Quality: 20
+ Sockets: B-B-B
+ LevelReq: 68
+ Implicits: 1
+ 40% increased Elemental Damage
+ {fractured}{range:1}(15-20)% increased Cast Speed
+ {range:1}(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%
+ {range:1}(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%]])
+ build.itemsTab:AddDisplayItem()
+ build.skillsTab:PasteSocketGroup("Slot: Weapon 1\nFireball 20/0 Default 1\n")
+ runCallback("OnFrame")
+
+ assert.are_not.equals(340, build.calcsTab.mainEnv.modDB:Sum("INC", "FireDamage"))
+ assert.are_not.equals(340, build.calcsTab.mainEnv.modDB:Sum("INC", "ColdDamage"))
+
+ newBuild()
+
+ build.configTab.input.customMods = [[
+ Gain 25% increased Armour per 5 Power for 8 seconds when you Warcry, up to a maximum of 100%
+ Warcries have infinite Power
+ warcries grant arcane surge to you and allies, with 10% increased effect per 5 power, up to 100%
+ ]]
+ build.configTab:BuildModList()
+ build.itemsTab:CreateDisplayItemFromRaw([[
+ New Item
+ Fur Plate
+ Armour: 60
+ ]])
+ build.itemsTab:AddDisplayItem()
+ build.skillsTab:PasteSocketGroup("Arc 20/0 Default 1")
+
+ assert.are_not.equals(20, build.calcsTab.mainEnv.modDB:Sum("MORE", { flags = ModFlag.Cast }, "Speed"))
+ assert.are_not.equals(120, build.calcsTab.mainOutput.Armour)
+ runCallback("OnFrame")
+ end)
end)
diff --git a/spec/System/TestItemParse_spec.lua b/spec/System/TestItemParse_spec.lua
index 80db03147c..011e9bdf51 100644
--- a/spec/System/TestItemParse_spec.lua
+++ b/spec/System/TestItemParse_spec.lua
@@ -1,6 +1,6 @@
describe("TestItemParse", function()
local function raw(s, base)
- base = base or "Arcane Robe"
+ base = base or "Arcane Raiment"
return "Rarity: Rare\nName\n"..base.."\n"..s
end
@@ -146,8 +146,10 @@ describe("TestItemParse", function()
assert.truthy(item.mirrored)
item = new("Item", raw("Corrupted"))
assert.truthy(item.corrupted)
- item = new("Item", raw("Fractured Item"))
+ item = new("Item", raw("Leech 6.61% of Physical Attack Damage as Mana (fractured)"))
assert.truthy(item.fractured)
+ item = new("Item", raw("Adds 36 to 48 Fire Damage (desecrated)"))
+ assert.truthy(item.desecrated)
item = new("Item", raw("Crafted: true"))
assert.truthy(item.crafted)
item = new("Item", raw("Unreleased: true"))
@@ -243,9 +245,9 @@ describe("TestItemParse", function()
Corrupted
]])
item:BuildAndParseRaw()
- assert.are.equals(45, item.requirements.strMod)
- assert.are.equals(111, item.requirements.dexMod)
- assert.are.equals(71, item.requirements.intMod)
+ assert.are.equals(35, item.requirements.strMod)
+ assert.are.equals(86, item.requirements.dexMod)
+ assert.are.equals(55, item.requirements.intMod)
end)
diff --git a/src/Assets/fractureditemsymbol.png b/src/Assets/fractureditemsymbol.png
new file mode 100644
index 0000000000..afba72d563
Binary files /dev/null and b/src/Assets/fractureditemsymbol.png differ
diff --git a/src/Assets/veileditemsymbol.png b/src/Assets/veileditemsymbol.png
new file mode 100644
index 0000000000..a4b719299f
Binary files /dev/null and b/src/Assets/veileditemsymbol.png differ
diff --git a/src/Classes/GemSelectControl.lua b/src/Classes/GemSelectControl.lua
index 52afd5ea74..a393997405 100644
--- a/src/Classes/GemSelectControl.lua
+++ b/src/Classes/GemSelectControl.lua
@@ -48,6 +48,7 @@ end)
function GemSelectClass:CalcOutputWithThisGem(calcFunc, gemData, useFullDPS)
local gemList = self.skillsTab.displayGroup.gemList
+ local displayGemList = self.skillsTab.displayGroup.displayGemList
local oldGem
if gemList[self.index] then
oldGem = copyTable(gemList[self.index], true)
@@ -82,7 +83,9 @@ function GemSelectClass:CalcOutputWithThisGem(calcFunc, gemData, useFullDPS)
else
gemList[self.index] = nil
end
-
+
+ self.skillsTab.displayGroup.displayGemList = displayGemList
+
return output, gemInstance
end
@@ -539,6 +542,9 @@ function GemSelectClass:AddGemTooltip(gemInstance)
if gemInstance.gemData.tagString ~= "" then
self.tooltip:AddLine(16, "^x7F7F7F" .. gemInstance.gemData.tagString)
end
+ if gemInstance.gemData.gemFamily then
+ self.tooltip:AddLine(16, "^x7F7F7FCategory: ^7" .. gemInstance.gemData.gemFamily)
+ end
-- Will need rework if a gem can have 2+ additional supports
self:AddGrantedEffectInfo(gemInstance, grantedEffect, true)
for _, statSet in ipairs(grantedEffect.statSets) do
@@ -554,7 +560,11 @@ function GemSelectClass:AddGemTooltip(gemInstance)
self.tooltip:AddSeparator(10)
self:AddGrantedEffectInfo(gemInstance, additional)
for _, statSet in ipairs(additional.statSets) do
- self:AddStatSetInfo(gemInstance, grantedEffect, statSet)
+ self:AddStatSetInfo(gemInstance, additional, statSet)
+ end
+ else
+ for _, statSet in ipairs(additional.statSets) do
+ self:AddStatSetInfo(gemInstance, additional, statSet, true)
end
end
end
@@ -563,7 +573,7 @@ end
function GemSelectClass:AddGrantedEffectInfo(gemInstance, grantedEffect, addReq)
local displayInstance = gemInstance.displayEffect or gemInstance
local grantedEffectLevel = grantedEffect.levels[displayInstance.level] or { }
- if gemInstance.gemData.Tier then
+ if gemInstance.gemData.Tier and not grantedEffect.isLineage and not grantedEffect.hidden then
self.tooltip:AddLine(16, string.format("^x7F7F7FTier: ^7%d", gemInstance.gemData.Tier))
end
if addReq and not grantedEffect.support then
@@ -651,7 +661,7 @@ function GemSelectClass:AddGrantedEffectInfo(gemInstance, grantedEffect, addReq)
if grantedEffectLevel.critChance then
self.tooltip:AddLine(16, string.format("^x7F7F7FCritical Hit Chance: ^7%.2f%%", grantedEffectLevel.critChance))
end
- if gemInstance.gemData.weaponRequirements then
+ if gemInstance.gemData.weaponRequirements and not grantedEffect.hidden then
self.tooltip:AddLine(16, "^x7F7F7F Requires: ^7" .. gemInstance.gemData.weaponRequirements)
end
end
@@ -676,14 +686,14 @@ function GemSelectClass:AddGrantedEffectInfo(gemInstance, grantedEffect, addReq)
end
end
end
-function GemSelectClass:AddStatSetInfo(gemInstance, grantedEffect, statSet)
+function GemSelectClass:AddStatSetInfo(gemInstance, grantedEffect, statSet, noLabel)
local displayInstance = gemInstance.displayEffect or gemInstance
local statSetLevel = statSet.levels[displayInstance.level] or { }
- if statSet.label ~= grantedEffect.name and statSet.label ~= "" then
+ if statSet.label ~= grantedEffect.name and statSet.label ~= "" and not noLabel then
self.tooltip:AddSeparator(10)
self.tooltip:AddLine(20, colorCodes.GEM .. statSet.label)
+ self.tooltip:AddSeparator(10)
end
- self.tooltip:AddSeparator(10)
if statSetLevel.critChance then
self.tooltip:AddLine(16, string.format("^x7F7F7FCritical Hit Chance: ^7%.2f%%", statSetLevel.critChance))
end
@@ -691,7 +701,7 @@ function GemSelectClass:AddStatSetInfo(gemInstance, grantedEffect, statSet)
self.tooltip:AddLine(16, string.format("^x7F7F7FAttack Damage: ^7%d%%", statSetLevel.baseMultiplier * 100))
end
if self.skillsTab and self.skillsTab.build.data.describeStats then
- self.tooltip:AddSeparator(10)
+ if not noLabel then self.tooltip:AddSeparator(10) end
local stats = calcLib.buildSkillInstanceStats(displayInstance, grantedEffect, statSet)
--if mergeStatsFrom then
-- for stat, val in pairs(calcLib.buildSkillInstanceStats(displayInstance, mergeStatsFrom)) do
diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua
index aa9734c06d..5ddf54eab8 100644
--- a/src/Classes/ImportTab.lua
+++ b/src/Classes/ImportTab.lua
@@ -705,8 +705,17 @@ function ImportTabClass:ImportItemsAndSkills(charData)
local spectreList = data.spectres
if typeLine:sub(1, 8) == "Spectre:" then
local spectreName = typeLine:sub(10) -- gets monster name after "Spectre: "
+ for _, property in pairs(skillData.properties) do
+ if property.name == "Reservation" and property.values and property.values[1] and property.values[1][1] then
+ -- Example: "42 [Spirit]"
+ local reservationValue = property.values[1][1]:match("(%d+)")
+ if reservationValue then
+ gemInstance.reservation = tonumber(reservationValue)
+ end
+ end
+ end
for id, spectre in pairs(spectreList) do
- if spectre.name == spectreName then
+ if spectre.name == spectreName and gemInstance.reservation == spectre.spectreReservation then
if not isValueInArray(self.build.spectreList, id) then
t_insert(self.build.spectreList, id)
end
@@ -718,8 +727,17 @@ function ImportTabClass:ImportItemsAndSkills(charData)
end
if typeLine:sub(1, 10) == "Companion:" then
local companionName = typeLine:sub(12)
+ for _, property in pairs(skillData.properties) do
+ if property.name == "Reservation" and property.values and property.values[1] and property.values[1][1] then
+ -- Example: "42.3% [Spirit]"
+ local companionReservation = property.values[1][1]:match("([%d%.]+)%%?")
+ if companionReservation then
+ gemInstance.companionReservation = tonumber(companionReservation)
+ end
+ end
+ end
for id, spectre in pairs(spectreList) do
- if spectre.name == companionName then
+ if spectre.name == companionName and gemInstance.companionReservation == spectre.companionReservation then
if not isValueInArray(self.build.beastList, id) then
t_insert(self.build.beastList, id)
end
@@ -733,7 +751,11 @@ function ImportTabClass:ImportItemsAndSkills(charData)
gemInstance.nameSpec = self.build.data.gems[gemId].name
for _, property in pairs(skillData.properties) do
if property.name == "Level" then
- gemInstance.level = tonumber(property.values[1][1]:match("%d+"))
+ if skillData.properties[_ + 1] and skillData.properties[_ + 1].values[1][1]:match("(%d+) Level[s]? from Gem") then
+ gemInstance.level = tonumber(skillData.properties[_ + 1].values[1][1]:match("(%d+) Level[s]? from Gem"))
+ else
+ gemInstance.level = tonumber(property.values[1][1]:match("%d+"))
+ end
elseif escapeGGGString(property.name) == "Quality" then
gemInstance.quality = tonumber(property.values[1][1]:match("%d+"))
end
diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua
index 14252d734d..0f472fa0a0 100644
--- a/src/Classes/Item.lua
+++ b/src/Classes/Item.lua
@@ -381,9 +381,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
self.mirrored = true
elseif line == "Corrupted" then
self.corrupted = true
- elseif line == "Fractured Item" then
- self.fractured = true
- elseif line == "Desecrated Item" then
+ elseif line == "Desecrated Prefix" or line == "Desecrated Suffix" then
self.desecrated = true
elseif line == "Requirements:" then
-- nothing to do
@@ -620,6 +618,12 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
if modLine.enchant then
modLine.implicit = true
end
+ if modLine.desecrated then
+ self.desecrated = true
+ end
+ if modLine.fractured then
+ self.fractured = true
+ end
local baseName
if not self.base and (self.rarity == "NORMAL" or self.rarity == "MAGIC") then
-- Exact match (affix-less magic and normal items)
@@ -805,7 +809,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
local specificItemType = self.base.type:lower()
for runeName, runeMods in pairs(data.itemMods.Runes) do
local addModToGroupedRunes = function (modLine)
- local runeValue
+ local runeValue = 1
local runeStrippedModLine = modLine:gsub("(%d%.?%d*)", function(val)
runeValue = val
return "#"
@@ -831,7 +835,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
local remainingRunes = self.itemSocketCount
for i, modLine in ipairs(self.runeModLines) do
- local value
+ local value = 1
local strippedModLine = modLine.line:gsub("(%d%.?%d*)", function(val)
value = val
return "#"
@@ -1164,7 +1168,8 @@ function ItemClass:BuildRaw()
for varId in pairs(modLine.variantList) do
varSpec = (varSpec and varSpec .. "," or "") .. varId
end
- line = "{variant:" .. varSpec .. "}" .. line
+ local var = "{variant:" .. varSpec .. "}"
+ line = var .. line:gsub("\n", "\n" .. var) -- Variants that go over 1 line need to have the gsub to fix there being no "variant:" at the start
end
if modLine.modTags and #modLine.modTags > 0 then
line = "{tags:" .. table.concat(modLine.modTags, ",") .. "}" .. line
diff --git a/src/Classes/ItemDBControl.lua b/src/Classes/ItemDBControl.lua
index c6ac9ddcbc..9de768ef69 100644
--- a/src/Classes/ItemDBControl.lua
+++ b/src/Classes/ItemDBControl.lua
@@ -133,7 +133,7 @@ function ItemDBClass:DoesItemMatchFilters(item)
if (self.controls.requirement.selIndex == 2 or self.controls.requirement.selIndex == 4) and item.requirements.level and item.requirements.level > self.itemsTab.build.characterLevel then
return false
end
- if self.controls.requirement.selIndex > 2 and item.requirements and (item.requirements.str > self.itemsTab.build.calcsTab.mainOutput.Str or item.requirements.dex > self.itemsTab.build.calcsTab.mainOutput.Dex or item.requirements.int > self.itemsTab.build.calcsTab.mainOutput.Int) then
+ if self.controls.requirement.selIndex > 2 and item.requirements and (item.requirements.strMod > self.itemsTab.build.calcsTab.mainOutput.Str or item.requirements.dexMod > self.itemsTab.build.calcsTab.mainOutput.Dex or item.requirements.intMod > self.itemsTab.build.calcsTab.mainOutput.Int) then
return false
end
end
diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua
index 44f9ec1fad..b52e38d7a2 100644
--- a/src/Classes/ItemsTab.lua
+++ b/src/Classes/ItemsTab.lua
@@ -1804,7 +1804,7 @@ function ItemsTabClass:AddModComparisonTooltip(tooltip, mod)
local newItem = new("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 })
+ t_insert(newItem.explicitModLines, { line = checkLineForAllocates(subMod, self.build.spec.nodes), modTags = mod.modTags, [mod.type or "Suffix"] = true })
end
newItem:BuildAndParseRaw()
@@ -2511,12 +2511,35 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
end
return modA.level > modB.level
end)
+ elseif sourceId == "ESSENCE" then
+ for _, essence in pairs(self.build.data.essences) do
+ local modId = essence.mods[self.displayItem.type]
+ if modId then
+ local mod = self.displayItem.affixes[modId] or data.itemMods.Exclusive[modId]
+ t_insert(modList, {
+ label = essence.name .. " " .. "^8[" .. table.concat(mod, "/") .. "]" .. " (" .. (mod.type or "Suffix") .. ")",
+ mod = mod,
+ type = "custom",
+ essence = essence,
+ })
+ end
+ end
+ table.sort(modList, function(a, b)
+ if a.essence.type ~= b.essence.type then
+ return a.essence.type > b.essence.type
+ else
+ return a.essence.tierLevel > b.essence.tierLevel
+ end
+ end)
end
end
if not self.displayItem.crafted then
t_insert(sourceList, { label = "Prefix", sourceId = "PREFIX" })
t_insert(sourceList, { label = "Suffix", sourceId = "SUFFIX" })
end
+ if self.displayItem.type ~= "Jewel" and self.displayItem.type ~= "Flask" then
+ t_insert(sourceList, { label = "Essence", sourceId = "ESSENCE" })
+ end
t_insert(sourceList, { label = "Custom", sourceId = "CUSTOM" })
buildMods(sourceList[1].sourceId)
local function addModifier()
@@ -2585,6 +2608,27 @@ function ItemsTabClass:AddItemSetTooltip(tooltip, itemSet)
end
end
+function ItemsTabClass:SetTooltipHeaderInfluence(tooltip, item)
+ tooltip.influenceHeader1 = nil
+ tooltip.influenceHeader2 = nil
+ -- Fractured items don't have the icon now, they did on trade before 0.3. Maybe they will return.
+ --if item.fractured then
+ -- tooltip.influenceHeader1 = "Fractured"
+ --end
+ if item.desecrated then
+ if not tooltip.influenceHeader1 then
+ tooltip.influenceHeader1 = "Desecrated"
+ else
+ tooltip.influenceHeader2 = "Desecrated"
+ end
+ end
+
+ -- If only one influence, we copy to second header. Preparing for dual influence mods like in first game.
+ if tooltip.influenceHeader1 and not tooltip.influenceHeader2 then
+ tooltip.influenceHeader2 = tooltip.influenceHeader1
+ end
+end
+
function ItemsTabClass:FormatItemSource(text)
return text:gsub("unique{([^}]+)}",colorCodes.UNIQUE.."%1"..colorCodes.SOURCE)
:gsub("normal{([^}]+)}",colorCodes.NORMAL.."%1"..colorCodes.SOURCE)
@@ -2599,6 +2643,7 @@ function ItemsTabClass:AddItemTooltip(tooltip, item, slot, dbMode)
tooltip.tooltipHeader = item.rarity
tooltip.center = true
tooltip.color = rarityCode
+ self:SetTooltipHeaderInfluence(tooltip, item)
if item.title then
tooltip:AddLine(20, rarityCode..item.title)
tooltip:AddLine(20, rarityCode..item.baseName:gsub(" %(.+%)",""))
diff --git a/src/Classes/ModDB.lua b/src/Classes/ModDB.lua
index 75e0cad813..44f725f0d3 100644
--- a/src/Classes/ModDB.lua
+++ b/src/Classes/ModDB.lua
@@ -98,14 +98,7 @@ function ModDBClass:SumInternal(context, modType, cfg, flags, keywordFlags, sour
local mod = modList[i]
if mod.type == modType and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not source or ( mod.source and (mod.source:match("[^:]+") == source or mod.source == source))) then
if mod[1] then
- local value = context:EvalMod(mod, cfg) or 0
- if mod[1].globalLimit and mod[1].globalLimitKey then
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] or 0
- if globalLimits[mod[1].globalLimitKey] + value > mod[1].globalLimit then
- value = mod[1].globalLimit - globalLimits[mod[1].globalLimitKey]
- end
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] + value
- end
+ local value = context:EvalMod(mod, cfg, globalLimits) or 0
result = result + value
else
result = result + mod.value
@@ -133,14 +126,7 @@ function ModDBClass:MoreInternal(context, cfg, flags, keywordFlags, source, ...)
if mod.type == "MORE" and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not source or mod.source:match("[^:]+") == source) then
local value
if mod[1] then
- value = context:EvalMod(mod, cfg) or 0
- if mod[1].globalLimit and mod[1].globalLimitKey then
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] or 0
- if globalLimits[mod[1].globalLimitKey] + value > mod[1].globalLimit then
- value = mod[1].globalLimit - globalLimits[mod[1].globalLimitKey]
- end
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] + value
- end
+ value = context:EvalMod(mod, cfg, globalLimits) or 0
else
value = mod.value or 0
end
@@ -249,15 +235,7 @@ function ModDBClass:TabulateInternal(context, result, modType, cfg, flags, keywo
if (mod.type == modType or not modType) and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not source or mod.source:match("[^:]+") == source) then
local value
if mod[1] then
- value = context:EvalMod(mod, cfg)
- if mod[1].globalLimit and mod[1].globalLimitKey then
- value = value or 0
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] or 0
- if globalLimits[mod[1].globalLimitKey] + value > mod[1].globalLimit then
- value = mod[1].globalLimit - globalLimits[mod[1].globalLimitKey]
- end
- globalLimits[mod[1].globalLimitKey] = globalLimits[mod[1].globalLimitKey] + value
- end
+ value = context:EvalMod(mod, cfg, globalLimits)
else
value = mod.value
end
diff --git a/src/Classes/ModList.lua b/src/Classes/ModList.lua
index facc0bd738..8720d59de5 100644
--- a/src/Classes/ModList.lua
+++ b/src/Classes/ModList.lua
@@ -46,7 +46,7 @@ function ModListClass:ReplaceModInternal(mod)
end
function ModListClass:MergeMod(mod)
- if mod.type == "BASE" or mod.type == "INC" then
+ if mod.type == "BASE" or mod.type == "INC" or mod.type == "MORE" then
for i = 1, #self do
if modLib.compareModParams(self[i], mod) then
self[i] = copyTable(self[i], true)
diff --git a/src/Classes/ModStore.lua b/src/Classes/ModStore.lua
index d1033107b4..3523140724 100644
--- a/src/Classes/ModStore.lua
+++ b/src/Classes/ModStore.lua
@@ -283,12 +283,13 @@ function ModStoreClass:GetStat(stat, cfg)
end
end
-function ModStoreClass:EvalMod(mod, cfg)
+function ModStoreClass:EvalMod(mod, cfg, globalLimits)
local value = mod.value
for _, tag in ipairs(mod) do
if tag.type == "Multiplier" then
local target = self
local limitTarget = self
+
-- Allow limiting a self multiplier on a parent multiplier (eg. Agony Crawler on player virulence)
-- This explicit target is necessary because even though the GetMultiplier method does call self.parent.GetMultiplier, it does so with noMod = true,
-- disabling the summation (3rd part): (not noMod and self:Sum("BASE", cfg, multiplierName[var]) or 0)
@@ -406,6 +407,9 @@ function ModStoreClass:EvalMod(mod, cfg)
else
base = target:GetStat(tag.stat, cfg)
end
+ if tag.divVar then
+ tag.div = self:GetMultiplier(tag.divVar, cfg)
+ end
local mult = m_floor(base / (tag.div or 1) + 0.0001)
local limitTotal
if tag.limit or tag.limitVar then
@@ -825,6 +829,18 @@ function ModStoreClass:EvalMod(mod, cfg)
return
end
end
- end
+ end
+
+ -- Apply global limits
+ for _, tag in ipairs(mod) do
+ if globalLimits and tag.globalLimit and tag.globalLimitKey then
+ value = value or 0
+ globalLimits[tag.globalLimitKey] = globalLimits[tag.globalLimitKey] or 0
+ if globalLimits[tag.globalLimitKey] + value > tag.globalLimit then
+ value = tag.globalLimit - globalLimits[tag.globalLimitKey]
+ end
+ globalLimits[tag.globalLimitKey] = globalLimits[tag.globalLimitKey] + value
+ end
+ end
return value
-end
+end
\ No newline at end of file
diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua
index 1ca28cadad..e6314c3503 100644
--- a/src/Classes/PassiveSpec.lua
+++ b/src/Classes/PassiveSpec.lua
@@ -703,12 +703,12 @@ function PassiveSpecClass:AllocNode(node, altPath)
-- Allocate all nodes along the path
if #node.intuitiveLeapLikesAffecting > 0 then
node.alloc = true
- node.allocMode = node.ascendancyName and 0 or self.allocMode
+ node.allocMode = (node.ascendancyName or node.type == "Keystone" or node.type == "Socket" or node.containJewelSocket) and 0 or self.allocMode
self.allocNodes[node.id] = node
else
for _, pathNode in ipairs(altPath or node.path) do
pathNode.alloc = true
- pathNode.allocMode = node.ascendancyName and 0 or self.allocMode
+ pathNode.allocMode = (node.ascendancyName or pathNode.type == "Keystone" or pathNode.type == "Socket" or pathNode.containJewelSocket) and 0 or self.allocMode
-- set path attribute nodes to latest chosen attribute or default to Strength if allocating before choosing an attribute
if pathNode.isAttribute then
self:SwitchAttributeNode(pathNode.id, self.attributeIndex or 1)
@@ -972,8 +972,12 @@ function PassiveSpecClass:BuildAllDependsAndPaths()
-- ignore cluster jewel nodes that don't have an id in the tree
if self.tree.nodes[id] then
local nodeToReplace = self.tree.nodes[id]
- if self.tree.nodes[id].isSwitchable and self.tree.nodes[id].options[self.curClassName] then
- nodeToReplace = self.tree.nodes[id].options[self.curClassName]
+ if self.tree.nodes[id].isSwitchable then
+ if self.tree.nodes[id].options[self.curClassName] then
+ nodeToReplace = self.tree.nodes[id].options[self.curClassName]
+ elseif self.tree.nodes[id].options[self.curAscendClassName] then
+ nodeToReplace = self.tree.nodes[id].options[self.curAscendClassName]
+ end
self.switchableNodes[nodeToReplace.id] = node
end
self:ReplaceNode(node, nodeToReplace)
@@ -1415,6 +1419,8 @@ function PassiveSpecClass:BuildAllDependsAndPaths()
end
function PassiveSpecClass:ReplaceNode(old, newNode)
+ old.overlay = newNode.overlay
+ old.icon = newNode.icon
-- Edited nodes can share a name
if old.sd == newNode.sd then
return 1
@@ -1426,8 +1432,6 @@ function PassiveSpecClass:ReplaceNode(old, newNode)
old.modList = new("ModList")
old.modList:AddList(newNode.modList)
old.keystoneMod = newNode.keystoneMod
- old.icon = newNode.icon
- old.spriteId = newNode.spriteId
old.activeEffectImage = newNode.activeEffectImage
old.reminderText = newNode.reminderText or { }
end
@@ -2065,11 +2069,13 @@ function PassiveSpecClass:NodeInKeystoneRadius(keystoneNames, nodeId, radiusInde
end
function PassiveSpecClass:SwitchAttributeNode(nodeId, attributeIndex)
- local newNode = copyTableSafe(self.tree.nodes[nodeId], false, true)
- if not newNode.isAttribute then return end -- safety check
-
- local option = newNode.options[attributeIndex]
- self:ReplaceNode(newNode, option)
-
- self.hashOverrides[nodeId] = newNode
+ if self.tree.nodes[nodeId] then --Make sure node exists on current tree
+ local newNode = copyTableSafe(self.tree.nodes[nodeId], false, true)
+ if not newNode.isAttribute then return end -- safety check
+
+ local option = newNode.options[attributeIndex]
+ self:ReplaceNode(newNode, option)
+
+ self.hashOverrides[nodeId] = newNode
+ end
end
diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua
index 88234cf61e..df11dbf57f 100644
--- a/src/Classes/PassiveTree.lua
+++ b/src/Classes/PassiveTree.lua
@@ -230,6 +230,12 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
node.type = "AscendClassStart"
local ascendClass = self.ascendNameMap[node.ascendancyName].ascendClass
ascendClass.startNodeId = node.id
+ if node.isSwitchable then
+ for ascName, _ in pairs(node.options) do
+ local option = self.ascendNameMap[ascName].ascendClass
+ option.startNodeId = node.id
+ end
+ end
elseif node.isOnlyImage then
node.type = "OnlyImage"
elseif node.isJewelSocket then
@@ -550,6 +556,16 @@ function PassiveTreeClass:ProcessNode(node)
switchNode.dn = switchNode.name
switchNode.sd = switchNode.stats
+ if switchNode.jewelOverlay then
+ ConPrintf("SwitchNode with jewelOverlay found: "..switchNode.name)
+ switchNode.overlay = switchNode.jewelOverlay
+ if switchNode.overlay then
+ local size = node.targetSize["overlay"] and node.targetSize["overlay"].width or node.targetSize.width
+ switchNode.rsq = size * size
+ switchNode.size = size
+ end
+ end
+
self:ProcessStats(switchNode)
end
end
diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua
index 8a31fc80c7..116f743ef8 100644
--- a/src/Classes/PassiveTreeView.lua
+++ b/src/Classes/PassiveTreeView.lua
@@ -99,6 +99,12 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
self.showHeatMap = not self.showHeatMap
elseif event.key == "d" and IsKeyDown("CTRL") then
self.showStatDifferences = not self.showStatDifferences
+ elseif event.key == "c" and IsKeyDown("CTRL") and self.hoverNode and self.hoverNode.type ~= "Socket" then
+ local result = "# ".. self.hoverNode.dn .. "\n"
+ for _, line in ipairs(self.hoverNode.sd) do
+ result = result .. line .. "\n"
+ end
+ Copy(result)
elseif event.key == "PAGEUP" then
self:Zoom(IsKeyDown("SHIFT") and 3 or 1, viewPort)
elseif event.key == "PAGEDOWN" then
@@ -264,10 +270,44 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
end
local hotkeyPressed = IsKeyDown("1") or IsKeyDown("I") or IsKeyDown("2") or IsKeyDown("S") or IsKeyDown("3") or IsKeyDown("D")
+
+ -- Helper function to determine if global node allocation should be blocked
+ local function shouldBlockGlobalNodeAllocation(node)
+ local isGlobalNode = node.type == "Keystone" or node.type == "Socket" or node.containJewelSocket
+
+ if not isGlobalNode or node.alloc or not node.path then
+ return false
+ end
+
+ local weaponSetMode = spec.allocMode > 0
+ local connectedToWeaponSetNodes = self:IsConnectedToWeaponSetNodes(node)
+
+ -- Only allow allocation from main tree AND node must not be connected to weapon set nodes
+ local shouldBlock = weaponSetMode or connectedToWeaponSetNodes
+
+ return shouldBlock
+ end
+
+ -- Helper function to determine if global node deallocation should be blocked
+ local function shouldBlockGlobalNodeDeallocation(node)
+ local isGlobalNode = node.type == "Keystone" or node.type == "Socket" or node.containJewelSocket
+
+ if not isGlobalNode or not node.alloc then
+ return false
+ end
+
+ -- Main-tree global nodes can only be deallocated from main tree
+ -- Legacy weapon-set global nodes can be deallocated from any mode
+ local shouldBlock = node.allocMode == 0 and spec.allocMode > 0
+
+ return shouldBlock
+ end
+
if treeClick == "LEFT" then
if hoverNode then
-- User left-clicked on a node
- if hoverNode.alloc then
+ if hoverNode.alloc and not shouldBlockGlobalNodeDeallocation(hoverNode) then
+ -- Handle deallocation of allocated nodes
if hoverNode.isAttribute then
-- change to other attribute without needing to deallocate
if hotkeyPressed then
@@ -283,9 +323,8 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
end
spec:AddUndoState()
build.buildFlag = true
- elseif hoverNode.path then
- -- Node is unallocated and can be allocated, so allocate it
- -- attribute switching, unallocated to allocated
+ elseif hoverNode.path and not shouldBlockGlobalNodeAllocation(hoverNode) then
+ -- Handle allocation of unallocated nodes
if hoverNode.isAttribute and not hotkeyPressed then
build.treeTab:ModifyAttributePopup(hoverNode)
else
@@ -301,6 +340,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
end
end
elseif treeClick == "RIGHT" then
+ -- User right-clicked on a node
if hoverNode then
if hoverNode.alloc and (hoverNode.type == "Socket" or hoverNode.containJewelSocket) then
local slot = build.itemsTab.sockets[hoverNode.id]
@@ -381,7 +421,14 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
-- draw ascendancies
for name, data in pairs(tree.ascendNameMap) do
local ascendancy = data.ascendClass
- if ascendancy.background then
+ local drawn = true
+ if ascendancy.replaceBy and ascendancy.replaceBy == spec.curAscendClassBaseName then
+ drawn = false
+ elseif ascendancy.replace and name ~= spec.curAscendClassBaseName then
+ drawn = false
+ end
+
+ if ascendancy.background and drawn then
local bg = tree:GetAssetByName(ascendancy.background.image)
local scrX, scrY = treeToScreen(ascendancy.background.x * tree.scaleImage, ascendancy.background.y * tree.scaleImage)
bg.width = ascendancy.background.width
@@ -834,7 +881,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents)
-- Draw tooltip
SetDrawLayer(nil, 100)
local size = m_floor(node.size * scale)
- if self.tooltip:CheckForUpdate(node, self.showStatDifferences, self.tracePath, launch.devModeAlt, build.outputRevision) then
+ if self.tooltip:CheckForUpdate(node, self.showStatDifferences, self.tracePath, launch.devModeAlt, build.outputRevision, build.spec.allocMode) then
self:AddNodeTooltip(self.tooltip, node, build, incSmallPassiveSkillEffect)
end
self.tooltip.center = true
@@ -1036,20 +1083,24 @@ function PassiveTreeViewClass:DoesNodeMatchSearchParams(node)
end
-- Check node description
- for index, line in ipairs(node.sd) do
- -- Check display text first
- err, needMatches = PCall(search, line:lower(), needMatches)
- if err then return false end
- if #needMatches == 0 then
- return true
- end
- if #needMatches > 0 and node.mods[index].list then
- -- Then check modifiers
- for _, mod in ipairs(node.mods[index].list) do
- err, needMatches = PCall(search, mod.name, needMatches)
- if err then return false end
- if #needMatches == 0 then
- return true
+ if not node.sd then
+ ConPrintf("Node %d has no sd", node.id)
+ else
+ for index, line in ipairs(node.sd) do
+ -- Check display text first
+ err, needMatches = PCall(search, line:lower(), needMatches)
+ if err then return false end
+ if #needMatches == 0 then
+ return true
+ end
+ if #needMatches > 0 and node.mods[index].list then
+ -- Then check modifiers
+ for _, mod in ipairs(node.mods[index].list) do
+ err, needMatches = PCall(search, mod.name, needMatches)
+ if err then return false end
+ if #needMatches == 0 then
+ return true
+ end
end
end
end
@@ -1138,6 +1189,9 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassi
if socket ~= nil and socket:IsEnabled() then
tooltip:AddLine(14, colorCodes.TIP.."Tip: Right click this socket to go to the items page and choose the jewel for this socket.")
end
+
+ self:AddGlobalNodeWarningsToTooltip(tooltip, node, build)
+
tooltip:AddLine(14, colorCodes.TIP.."Tip: Hold Shift or Ctrl to hide this tooltip.")
return
end
@@ -1299,7 +1353,10 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassi
local mNode = copyTableSafe(node, true, true)
-- This stanza actives for both Mastery and non Mastery tooltips. Proof: add '"Blah "..' to addModInfoToTooltip
- if mNode.sd[1] and not mNode.allMasteryOptions then
+ if not mNode.sd then
+ ConPrintf("Node %d has no sd", node.id)
+ end
+ if mNode.sd and mNode.sd[1] and not mNode.allMasteryOptions then
tooltip:AddLine(16, "")
local localSmallIncEffect = 0
if not mNode.isAttribute and (mNode.type == "Normal" or mNode.type == "Notable") and isNodeInARadius(node) then
@@ -1361,7 +1418,7 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassi
end
end
local count = build:AddStatComparesToTooltip(tooltip, calcBase, nodeOutput, realloc and "^7Reallocating this node will give you:" or node.alloc and "^7Unallocating this node will give you:" or isGranted and "^7This node is granted by an item. Removing it will give you:" or "^7Allocating this node will give you:")
- if pathLength > 1 and not isGranted then
+ if pathLength > 1 and not isGranted and (#node.intuitiveLeapLikesAffecting == 0 or node.alloc) then
count = count + build:AddStatComparesToTooltip(tooltip, calcBase, pathOutput, node.alloc and "^7Unallocating this node and all nodes depending on it will give you:" or "^7Allocating this node and all nodes leading to it will give you:", pathLength)
end
if count == 0 then
@@ -1397,10 +1454,74 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build, incSmallPassi
tooltip:AddLine(14, "^7"..#node.depends .. " points gained from unallocating these nodes")
tooltip:AddLine(14, colorCodes.TIP)
end
+
+ self:AddGlobalNodeWarningsToTooltip(tooltip, node, build)
+
if node.type == "Socket" then
tooltip:AddLine(14, colorCodes.TIP.."Tip: Hold Shift or Ctrl to hide this tooltip.")
else
tooltip:AddLine(14, colorCodes.TIP.."Tip: Hold Ctrl to hide this tooltip.")
+ tooltip:AddLine(14, colorCodes.TIP.."Tip: Press Ctrl+C to copy this node's text.")
+ end
+end
+
+-- Helper function to check if a node is connected to weapon set nodes
+function PassiveTreeViewClass:IsConnectedToWeaponSetNodes(node)
+ -- First check the path for weapon set nodes
+ if node.path and #node.path > 1 then
+ -- Check all nodes in the path (except the first element since it's the target node itself)
+ for i = 2, #node.path do
+ local pathNode = node.path[i]
+ if pathNode.alloc and pathNode.allocMode > 0 then
+ return true
+ end
+ end
+ end
+
+ -- And finally check for direct connections when path is short or empty
+ -- (This handles cases where global nodes are directly adjacent to weapon set nodes)
+ if node.linked then
+ for _, linkedNode in ipairs(node.linked) do
+ if linkedNode.alloc and linkedNode.allocMode and linkedNode.allocMode > 0 then
+ return true
+ end
+ end
+ end
+
+ return false
+end
+
+-- Helper function to add warnings in the tooltip for global nodes (keystones/jewel sockets)
+function PassiveTreeViewClass:AddGlobalNodeWarningsToTooltip(tooltip, node, build)
+ local isGlobalNode = node.type == "Keystone" or node.type == "Socket" or node.containJewelSocket
+
+ if not isGlobalNode then
+ return -- No warning needed for non-global nodes
+ end
+
+ local nodeTypeText = node.type == "Keystone" and "keystones" or "jewel sockets"
+ local warningText = ""
+ local tipText = ""
+
+ if not node.alloc and node.path then
+ -- Unallocated global node - check allocation conditions
+ if build.spec.allocMode > 0 then
+ warningText = "Cannot allocate " .. nodeTypeText .. " while weapon set " .. build.spec.allocMode .. " is selected"
+ tipText = "Tip: Switch to main tree (Alt+scroll) to allocate " .. nodeTypeText
+ elseif self:IsConnectedToWeaponSetNodes(node) then
+ warningText = "Cannot allocate " .. nodeTypeText .. " - connected to weapon set nodes"
+ tipText = "Tip: Deallocate weapon set nodes in the connection path to allow allocation"
+ end
+ elseif node.alloc and node.allocMode == 0 and build.spec.allocMode > 0 then
+ -- Allocated main-tree global node viewed from weapon set
+ warningText = "Cannot deallocate global " .. nodeTypeText .. " from weapon set " .. build.spec.allocMode
+ tipText = "Tip: Switch to main tree (Alt+scroll) to deallocate " .. nodeTypeText
+ end
+
+ if warningText ~= "" then
+ tooltip:AddSeparator(14)
+ tooltip:AddLine(14, colorCodes.WARNING .. warningText)
+ tooltip:AddLine(14, colorCodes.TIP .. tipText)
end
end
diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua
index 58cc244770..fe68f4b9af 100644
--- a/src/Classes/PoEAPI.lua
+++ b/src/Classes/PoEAPI.lua
@@ -70,7 +70,7 @@ function PoEAPIClass:FetchAuthToken(callback)
local authUrl = string.format(
"https://www.pathofexile.com/oauth/authorize?client_id=pob&response_type=code&scope=%s&state=%s&code_challenge=%s&code_challenge_method=S256"
- ,table.concat(scopesOAuth, " ")
+ ,table.concat(scopesOAuth, "%20")
,initialState
,code_challenge
)
@@ -188,4 +188,4 @@ end
---@param callback function callback(response, errorMsg, updateSettings)
function PoEAPIClass:DownloadCharacter(realm, name, callback)
self:DownloadWithRateLimit("character-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm) .. "/" .. name, callback)
-end
\ No newline at end of file
+end
diff --git a/src/Classes/SkillsTab.lua b/src/Classes/SkillsTab.lua
index 198a3fb17b..06183f0f84 100644
--- a/src/Classes/SkillsTab.lua
+++ b/src/Classes/SkillsTab.lua
@@ -287,16 +287,14 @@ function SkillsTabClass:LoadSkill(node, skillSetId)
local possibleVariants = self.build.data.gemsByGameId[child.attrib.gemId]
if possibleVariants then
-- If it is a known gem, try to determine which variant is used
- if child.attrib.variantId then
+ if child.attrib.variantId and possibleVariants[child.attrib.variantId] then
-- New save format from 3.23 that stores the specific variation (transfiguration)
gemData = possibleVariants[child.attrib.variantId]
- elseif child.attrib.skillId then
- -- Old format relying on the uniqueness of the granted effects id
+ else
+ -- If a gem has changed names between updates, assumed it's the first gem in the list
for _, variant in pairs(possibleVariants) do
- if variant.grantedEffectId == child.attrib.skillId then
- gemData = variant
- break
- end
+ gemData = variant
+ break
end
end
end
@@ -758,41 +756,53 @@ function SkillsTabClass:CreateGemSlot(index)
end
-- Function for both granted effect and secondary such as vaal
local addQualityLines = function(qualityList, grantedEffect)
- tooltip:AddLine(18, colorCodes.GEM..grantedEffect.name)
- -- Hardcoded to use 20% quality instead of grabbing from gem, this is for consistency and so we always show something
- tooltip:AddLine(16, colorCodes.NORMAL.."At +20% Quality:")
- for k, qual in pairs(qualityList) do
- -- Do the stats one at a time because we're not guaranteed to get the descriptions in the same order we look at them here
- local stats = { }
- stats[qual[1]] = qual[2] * 20
- local descriptions = self.build.data.describeStats(stats, grantedEffect.statSets[1].statDescriptionScope)
- -- line may be nil if the value results in no line due to not being enough quality
- for _, line in ipairs(descriptions) do
- if line then
- -- Check if we have a handler for the mod in the gem's statMap or in the shared stat map for skills
- if grantedEffect.statSets[1].statMap[qual[1]] or self.build.data.skillStatMap[qual[1]] then
- tooltip:AddLine(16, colorCodes.MAGIC..line)
- else
- local line = colorCodes.UNSUPPORTED..line
- line = main.notSupportedModTooltips and (line .. main.notSupportedTooltipText) or line
- tooltip:AddLine(16, line)
+ if #qualityList > 0 then
+ if grantedEffect.name == "" then
+ tooltip:AddLine(18, colorCodes.GEM..grantedEffect.statSets[1].label)
+ else
+ tooltip:AddLine(18, colorCodes.GEM..grantedEffect.name)
+ end
+ -- Hardcoded to use 20% quality instead of grabbing from gem, this is for consistency and so we always show something
+ tooltip:AddLine(16, colorCodes.NORMAL.."At +20% Quality:")
+ for k, qual in pairs(qualityList) do
+ -- Do the stats one at a time because we're not guaranteed to get the descriptions in the same order we look at them here
+ local stats = { }
+ stats[qual[1]] = qual[2] * 20
+ local descriptions = self.build.data.describeStats(stats, grantedEffect.statSets[1].statDescriptionScope, true)
+ -- line may be nil if the value results in no line due to not being enough quality
+ for _, line in ipairs(descriptions) do
+ if line then
+ -- Check if we have a handler for the mod in the gem's statMap or in the shared stat map for skills
+ if grantedEffect.statSets[1].statMap[qual[1]] or self.build.data.skillStatMap[qual[1]] then
+ tooltip:AddLine(16, colorCodes.MAGIC..line)
+ else
+ local line = colorCodes.UNSUPPORTED..line
+ line = main.notSupportedModTooltips and (line .. main.notSupportedTooltipText) or line
+ tooltip:AddLine(16, line)
+ end
end
end
end
end
end
-- Check if there is a quality of this type for the effect
- if gemData and gemData.grantedEffect.qualityStats then
+ -- Currently only checks the first 2 additionalGrantedEffects. Will need to fix if gems ever add more
+ if gemData and gemData.grantedEffect.qualityStats and #gemData.grantedEffect.qualityStats > 0 then
local qualityTable = gemData.grantedEffect.qualityStats
addQualityLines(qualityTable, gemData.grantedEffect)
end
- if gemData and gemData.secondaryGrantedEffect and gemData.secondaryGrantedEffect.qualityStats then
- local qualityTable = gemData.secondaryGrantedEffect.qualityStats
+ if gemData and gemData.additionalGrantedEffects[1] and gemData.additionalGrantedEffects[1].qualityStats and #gemData.additionalGrantedEffects[1].qualityStats > 0 then
+ local qualityTable = gemData.additionalGrantedEffects[1].qualityStats
+ tooltip:AddSeparator(10)
+ addQualityLines(qualityTable, gemData.additionalGrantedEffects[1])
+ end
+ if gemData and gemData.additionalGrantedEffects[2] and gemData.additionalGrantedEffects[2].qualityStats and #gemData.additionalGrantedEffects[2].qualityStats > 0 then
+ local qualityTable = gemData.additionalGrantedEffects[2].qualityStats
tooltip:AddSeparator(10)
- addQualityLines(qualityTable, gemData.secondaryGrantedEffect)
+ addQualityLines(qualityTable, gemData.additionalGrantedEffects[2])
end
-- Add stat comparisons for hovered quality (based on set quality)
- if gemData and (gemData.grantedEffect.qualityStats or (gemData.secondaryGrantedEffect and gemData.secondaryGrantedEffect.qualityStats)) and self.displayGroup.gemList[index] then
+ if gemData and (gemData.grantedEffect.qualityStats or (gemData.additionalGrantedEffects[1] and gemData.additionalGrantedEffects[1].qualityStats or gemData.additionalGrantedEffects[2] and gemData.additionalGrantedEffects[2].qualityStats)) and self.displayGroup.gemList[index] then
local calcFunc, calcBase = self.build.calcsTab:GetMiscCalculator(self.build)
if calcFunc then
local storedQuality = self.displayGroup.gemList[index].quality
@@ -1148,7 +1158,7 @@ function SkillsTabClass:AddSocketGroupTooltip(tooltip, socketGroup)
for _, skillEffect in ipairs(activeSkill.effectList) do
tooltip:AddLine(20, string.format("%s%s ^7%d%s/%d%s",
data.skillColorMap[skillEffect.grantedEffect.color or skillEffect.gemData and skillEffect.gemData.grantedEffect.color],
- skillEffect.grantedEffect.name,
+ skillEffect.srcInstance.nameSpec or skillEffect.grantedEffect.name,
skillEffect.srcInstance and skillEffect.srcInstance.level or skillEffect.level,
(skillEffect.srcInstance and skillEffect.level > skillEffect.srcInstance.level) and colorCodes.MAGIC.."+"..(skillEffect.level - skillEffect.srcInstance.level).."^7" or "",
skillEffect.srcInstance and skillEffect.srcInstance.quality or skillEffect.quality,
@@ -1324,6 +1334,7 @@ function SkillsTabClass:UpdateGlobalGemCountAssignments()
GlobalGemAssignments[gemInstance.gemData.name] = {
count = 1,
support = gemInstance.gemData.grantedEffect and gemInstance.gemData.grantedEffect.support or false,
+ lineage = gemInstance.gemData.grantedEffect and gemInstance.gemData.grantedEffect.isLineage or false,
groups = { }
}
if socketGroup.displayLabel then
diff --git a/src/Classes/Tooltip.lua b/src/Classes/Tooltip.lua
index 322dbdc697..bff02c6ebe 100644
--- a/src/Classes/Tooltip.lua
+++ b/src/Classes/Tooltip.lua
@@ -265,6 +265,10 @@ function TooltipClass:Draw(x, y, w, h, viewPort)
ttW = titleW + 50
end
end
+ local headerInfluence = {
+ Fractured = "Assets/FracturedItemSymbol.png",
+ Desecrated = "Assets/VeiledItemSymbol.png",
+ }
local headerConfigs = {
RELIC = {left="Assets/ItemsHeaderFoilLeft.png",middle="Assets/ItemsHeaderFoilMiddle.png",right="Assets/ItemsHeaderFoilRight.png",height=56,sideWidth=43,middleWidth=43,textYOffset=2},
UNIQUE = {left="Assets/ItemsHeaderUniqueLeft.png",middle="Assets/ItemsHeaderUniqueMiddle.png",right="Assets/ItemsHeaderUniqueRight.png",height=56,sideWidth=43,middleWidth=43,textYOffset=2},
@@ -337,9 +341,18 @@ function TooltipClass:Draw(x, y, w, h, viewPort)
local headerY = ttY + BORDER_WIDTH
local headerTotalWidth = ttW - 2 * BORDER_WIDTH
local headerMiddleAreaWidth = m_max(0, headerTotalWidth - 2 * headerSideWidth)
+ if self.influenceHeader1 then
+ self.influenceIcon1 = NewImageHandle()
+ self.influenceIcon1:Load(headerInfluence[self.influenceHeader1])
+ self.influenceIcon2 = NewImageHandle()
+ self.influenceIcon2:Load(headerInfluence[self.influenceHeader2])
+ end
- -- Draw left cap
+ -- Draw left cap first, then influence icon on top
DrawImage(self.headerLeft, headerX, headerY, headerSideWidth, headerHeight)
+ if self.influenceHeader1 then
+ DrawImage(self.influenceIcon1, headerX+5, headerY+(headerHeight/4), headerSideWidth/2+6, headerHeight/2)
+ end
-- Draw middle fill
if headerMiddleAreaWidth > 0 then
@@ -357,6 +370,9 @@ function TooltipClass:Draw(x, y, w, h, viewPort)
-- Draw right cap
DrawImage(self.headerRight, headerX + headerTotalWidth - headerSideWidth, headerY, headerSideWidth, headerHeight)
+ if self.influenceHeader2 then
+ DrawImage(self.influenceIcon2, headerX + headerTotalWidth - headerSideWidth+10, headerY+(headerHeight/4), headerSideWidth/2+6, headerHeight/2)
+ end
end
-- Draw lines and images
diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua
index 194e761963..b9ce061093 100644
--- a/src/Classes/TradeQueryGenerator.lua
+++ b/src/Classes/TradeQueryGenerator.lua
@@ -98,7 +98,9 @@ local TradeQueryGeneratorClass = newClass("TradeQueryGenerator", function(self,
self.queryTab = queryTab
self.itemsTab = queryTab.itemsTab
self.calcContext = { }
-
+ self.lastMaxPrice = nil
+ self.lastMaxPriceTypeIndex = nil
+ self.lastMaxLevel = nil
end)
local function fetchStats()
@@ -568,7 +570,31 @@ function TradeQueryGeneratorClass:OnFrame()
end
end
+local currencyTable = {
+ { name = "Relative", id = nil },
+ { name = "Exalted Orb", id = "exalted" },
+ { name = "Chaos Orb", id = "chaos" },
+ { name = "Divine Orb", id = "divine" },
+ { name = "Orb of Augmentation", id = "aug" },
+ { name = "Orb of Transmutation", id = "transmute" },
+ { name = "Regal Orb", id = "regal" },
+ { name = "Vaal Orb", id = "vaal" },
+ { name = "Annulment Orb", id = "annul" },
+ { name = "Orb of Alchemy", id = "alch" },
+ { name = "Mirror of Kalandra", id = "mirror" }
+}
+
function TradeQueryGeneratorClass:StartQuery(slot, options)
+ if self.lastMaxPrice then
+ options.maxPrice = self.lastMaxPrice
+ end
+ if self.lastMaxPriceTypeIndex then
+ options.maxPriceType = currencyTable[self.lastMaxPriceTypeIndex].id
+ end
+ if self.lastMaxLevel then
+ options.maxLevel = self.lastMaxLevel
+ end
+
-- Figure out what type of item we're searching for
local existingItem = slot and self.itemsTab.items[slot.selItemId]
local testItemType = existingItem and existingItem.baseName or "Diamond"
@@ -830,12 +856,12 @@ function TradeQueryGeneratorClass:FinishQuery()
end
end
if not options.includeMirrored then
- queryTable.query.filters.misc_filters = {
- disabled = false,
- filters = {
- mirrored = false,
- }
- }
+ queryTable.query.filters.misc_filters = {
+ disabled = false,
+ filters = {
+ mirrored = false,
+ }
+ }
end
if options.maxPrice and options.maxPrice > 0 then
@@ -927,29 +953,19 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb
end
-- Add max price limit selection dropbox
- local currencyTable = {
- { name = "Relative", id = nil },
- { name = "Exalted Orb", id = "exalted" },
- { name = "Chaos Orb", id = "chaos" },
- { name = "Divine Orb", id = "divine" },
- { name = "Orb of Augmentation", id = "aug" },
- { name = "Orb of Transmutation", id = "transmute" },
- { name = "Regal Orb", id = "regal" },
- { name = "Vaal Orb", id = "vaal" },
- { name = "Annulment Orb", id = "annul" },
- { name = "Orb of Alchemy", id = "alch" },
- { name = "Mirror of Kalandra", id = "mirror" }
- }
local currencyDropdownNames = { }
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.buf = self.lastMaxPrice and tostring(self.lastMaxPrice) or ""
controls.maxPriceType = new("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:")
updateLastAnchor(controls.maxPrice)
controls.maxLevel = new("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:")
updateLastAnchor(controls.maxLevel)
@@ -1001,10 +1017,13 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb
end
if controls.maxPrice.buf then
options.maxPrice = tonumber(controls.maxPrice.buf)
+ self.lastMaxPrice = options.maxPrice
options.maxPriceType = currencyTable[controls.maxPriceType.selIndex].id
+ self.lastMaxPriceTypeIndex = controls.maxPriceType.selIndex
end
if controls.maxLevel.buf then
options.maxLevel = tonumber(controls.maxLevel.buf)
+ self.lastMaxLevel = options.maxLevel
end
if controls.sockets and controls.sockets.buf then
options.sockets = tonumber(controls.sockets.buf)
diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua
index 53050423ab..92f4f23d8d 100644
--- a/src/Classes/TradeQueryRequests.lua
+++ b/src/Classes/TradeQueryRequests.lua
@@ -401,12 +401,6 @@ function TradeQueryRequestsClass:FetchResultBlock(url, callback)
for _, modLine in ipairs(item.desecratedMods) do
t_insert(rawLines, "{desecrated}" .. escapeGGGString(modLine))
end
- if item.fractured then
- t_insert(rawLines, "Fractured Item")
- end
- if item.desecrated then
- t_insert(rawLines, "Desecrated Item")
- end
if item.mirrored then
t_insert(rawLines, "Mirrored")
end
diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua
index 0191bfade3..dd4e81518c 100644
--- a/src/Data/Bases/amulet.lua
+++ b/src/Data/Bases/amulet.lua
@@ -72,6 +72,13 @@ itemBases["Gold Amulet"] = {
implicitModTypes = { { "drop" }, },
req = { level = 35, },
}
+itemBases["Pearlescent Amulet"] = {
+ type = "Amulet",
+ tags = { amulet = true, default = true, },
+ implicit = "+(7-10)% to all Elemental Resistances",
+ implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, },
+ req = { level = 30, },
+}
itemBases["Dusk Amulet"] = {
type = "Amulet",
tags = { amulet = true, default = true, },
@@ -100,3 +107,10 @@ itemBases["Tenebrous Amulet"] = {
implicitModTypes = { { }, { }, },
req = { },
}
+itemBases["Distorted Amulet"] = {
+ type = "Amulet",
+ tags = { amulet = true, default = true, },
+ implicit = "-1 Prefix Modifier allowed\n-1 Suffix Modifier allowed",
+ implicitModTypes = { { }, { }, },
+ req = { },
+}
diff --git a/src/Data/Bases/axe.lua b/src/Data/Bases/axe.lua
index d31eb1be73..f276cdcc08 100644
--- a/src/Data/Bases/axe.lua
+++ b/src/Data/Bases/axe.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Dull Hatchet"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 4, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
@@ -14,120 +14,120 @@ itemBases["Dull Hatchet"] = {
itemBases["Hook Axe"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "Gain 1 Rage on Hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 5, PhysicalMax = 14, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { str = 10, },
+ req = { str = 9, },
}
itemBases["Bearded Axe"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 21, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 10, str = 20, dex = 10, },
+ req = { level = 10, str = 17, dex = 9, },
}
itemBases["Extended Cleaver"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, maraketh_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "Has no Accuracy Penalty from Range",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 8, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 16, str = 30, dex = 14, },
+ req = { level = 16, str = 25, dex = 12, },
}
itemBases["Bandit Hatchet"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, maraketh_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 13, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 20, str = 37, dex = 16, },
+ req = { level = 20, str = 30, dex = 14, },
}
itemBases["Crescent Axe"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, maraketh_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 18, PhysicalMax = 37, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 26, str = 48, dex = 20, },
+ req = { level = 26, str = 38, dex = 17, },
}
itemBases["Carving Hatchet"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 44, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 33, str = 60, dex = 25, },
+ req = { level = 33, str = 47, dex = 20, },
}
itemBases["Sacrificial Axe"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "Gain (28-35) Mana per Enemy Killed",
implicitModTypes = { { "resource", "mana" }, },
weapon = { PhysicalMin = 20, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 37, str = 67, dex = 27, },
+ req = { level = 37, str = 52, dex = 22, },
}
itemBases["Boarding Hatchet"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 24, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 45, str = 81, dex = 33, },
+ req = { level = 45, str = 63, dex = 26, },
}
itemBases["Fury Cleaver"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "10% increased Damage taken",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 30, PhysicalMax = 62, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 48, str = 86, dex = 35, },
+ req = { level = 48, str = 67, dex = 27, },
}
itemBases["Battle Axe"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 28, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 52, str = 93, dex = 37, },
+ req = { level = 52, str = 72, dex = 29, },
}
itemBases["Profane Cleaver"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 26, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 54, str = 96, dex = 38, },
+ req = { level = 54, str = 75, dex = 30, },
}
itemBases["Dread Hatchet"] = {
type = "One Handed Axe",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { axe = true, onehand = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 34, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 65, str = 116, dex = 45, },
+ req = { level = 65, str = 89, dex = 36, },
}
itemBases["Splitting Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, ezomyte_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
@@ -136,112 +136,112 @@ itemBases["Splitting Greataxe"] = {
itemBases["Light Halberd"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, ezomyte_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 10, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, },
- req = { str = 10, },
+ req = { str = 9, },
}
itemBases["Executioner Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, ezomyte_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicit = "Culling Strike",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 10, str = 20, dex = 10, },
+ req = { level = 10, str = 17, dex = 9, },
}
itemBases["Arched Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, maraketh_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 17, PhysicalMax = 59, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, },
- req = { level = 16, str = 30, dex = 14, },
+ req = { level = 16, str = 25, dex = 12, },
}
itemBases["Elegant Glaive"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, maraketh_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 64, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 20, str = 37, dex = 16, },
+ req = { level = 20, str = 30, dex = 14, },
}
itemBases["Savage Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, maraketh_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicit = "Gain (34-43) Life per Enemy Killed",
implicitModTypes = { { "resource", "life" }, },
weapon = { PhysicalMin = 23, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 27, str = 50, dex = 21, },
+ req = { level = 27, str = 39, dex = 17, },
}
itemBases["Rending Halberd"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, vaal_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 91, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 33, str = 60, dex = 25, },
+ req = { level = 33, str = 47, dex = 20, },
}
itemBases["Jagged Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, vaal_basetype = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicit = "(15-25)% chance to cause Bleeding on Hit",
implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, },
weapon = { PhysicalMin = 43, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, },
- req = { level = 40, str = 72, dex = 29, },
+ req = { level = 40, str = 56, dex = 23, },
}
itemBases["Reaver Glaive"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 43, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 45, str = 81, dex = 33, },
+ req = { level = 45, str = 63, dex = 26, },
}
itemBases["Ember Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { FireMin = 58, FireMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 50, str = 89, dex = 36, },
+ req = { level = 50, str = 70, dex = 28, },
}
itemBases["Ceremonial Halberd"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicit = "Cannot use Projectile Attacks",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 53, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 52, str = 93, dex = 37, },
+ req = { level = 52, str = 72, dex = 29, },
}
itemBases["Monument Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 48, PhysicalMax = 143, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 57, str = 102, dex = 40, },
+ req = { level = 57, str = 79, dex = 32, },
}
itemBases["Vile Greataxe"] = {
type = "Two Handed Axe",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { axe = true, two_hand_weapon = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 59, PhysicalMax = 155, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 65, str = 116, dex = 45, },
+ req = { level = 65, str = 89, dex = 36, },
}
diff --git a/src/Data/Bases/body.lua b/src/Data/Bases/body.lua
index e0518c2a12..7b905f7ebc 100644
--- a/src/Data/Bases/body.lua
+++ b/src/Data/Bases/body.lua
@@ -7,7 +7,7 @@ itemBases["Rusted Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 45, MovementPenalty = 0.05, },
@@ -17,7 +17,7 @@ itemBases["Fur Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 60, MovementPenalty = 0.05, },
@@ -27,232 +27,243 @@ itemBases["Iron Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 96, MovementPenalty = 0.05, },
- req = { level = 11, str = 24, },
+ req = { level = 11, str = 21, },
}
itemBases["Raider Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 121, MovementPenalty = 0.05, },
- req = { level = 16, str = 34, },
+ req = { level = 16, str = 28, },
}
itemBases["Maraketh Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 141, MovementPenalty = 0.05, },
- req = { level = 20, str = 42, },
+ req = { level = 20, str = 34, },
}
itemBases["Steel Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 177, MovementPenalty = 0.05, },
- req = { level = 27, str = 57, },
+ req = { level = 27, str = 45, },
}
itemBases["Full Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 208, MovementPenalty = 0.05, },
- req = { level = 33, str = 68, },
+ req = { level = 33, str = 54, },
}
itemBases["Vaal Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 228, MovementPenalty = 0.05, },
- req = { level = 37, str = 77, },
+ req = { level = 37, str = 60, },
}
itemBases["Juggernaut Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 269, MovementPenalty = 0.05, },
- req = { level = 45, str = 94, },
+ armour = { Armour = 274, MovementPenalty = 0.05, },
+ req = { level = 46, str = 74, },
}
itemBases["Chieftain Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 294, MovementPenalty = 0.05, },
- req = { level = 50, str = 104, },
+ req = { level = 50, str = 80, },
}
itemBases["Colosseum Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 304, MovementPenalty = 0.05, },
- req = { level = 52, str = 107, },
+ req = { level = 52, str = 83, },
}
itemBases["Champion Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 335, MovementPenalty = 0.05, },
- req = { level = 58, str = 120, },
+ req = { level = 58, str = 92, },
}
itemBases["Glorious Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 534, MovementPenalty = 0.05, },
- req = { level = 65, str = 157, },
+ req = { level = 65, str = 121, },
}
itemBases["Conqueror Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicit = "(30-40)% increased Stun Threshold",
implicitModTypes = { { }, },
armour = { Armour = 445, MovementPenalty = 0.05, },
- req = { level = 68, str = 157, },
+ req = { level = 68, str = 121, },
}
itemBases["Abyssal Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicit = "Regenerate (1.5-2.5)% of maximum Life per second",
implicitModTypes = { { "resource", "life" }, },
armour = { Armour = 445, MovementPenalty = 0.05, },
- req = { level = 73, str = 157, },
+ req = { level = 73, str = 121, },
}
itemBases["Barbarian Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 269, MovementPenalty = 0.05, },
- req = { level = 45, str = 94, },
+ req = { level = 45, str = 72, },
}
itemBases["Rugged Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 284, MovementPenalty = 0.05, },
- req = { level = 48, str = 99, },
+ req = { level = 48, str = 77, },
}
itemBases["Sandsworn Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 299, MovementPenalty = 0.05, },
- req = { level = 51, str = 105, },
+ req = { level = 51, str = 82, },
}
itemBases["Elegant Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 320, MovementPenalty = 0.05, },
- req = { level = 55, str = 113, },
+ armour = { Armour = 315, MovementPenalty = 0.05, },
+ req = { level = 54, str = 86, },
}
itemBases["Heavy Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 340, MovementPenalty = 0.05, },
- req = { level = 59, str = 122, },
+ req = { level = 59, str = 94, },
}
itemBases["Stone Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 355, MovementPenalty = 0.05, },
- req = { level = 62, str = 128, },
+ req = { level = 62, str = 98, },
}
itemBases["Soldier Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 534, MovementPenalty = 0.05, },
- req = { level = 65, str = 157, },
+ req = { level = 65, str = 121, },
}
itemBases["Ornate Plate"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicit = "Regenerate (1.5-2.5)% of maximum Life per second",
implicitModTypes = { { "resource", "life" }, },
armour = { Armour = 445, MovementPenalty = 0.05, },
- req = { level = 70, str = 157, },
+ req = { level = 70, str = 121, },
}
itemBases["Utzaal Cuirass"] = {
type = "Body Armour",
subType = "Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_armour = true, default = true, },
implicit = "(30-40)% increased Stun Threshold",
implicitModTypes = { { }, },
armour = { Armour = 445, MovementPenalty = 0.05, },
- req = { level = 75, str = 157, },
+ req = { level = 75, str = 121, },
+}
+itemBases["Warlord Cuirass"] = {
+ type = "Body Armour",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, str_armour = true, armour = true, karui_basetype = true, default = true, },
+ implicit = "+(15-25)% of Armour also applies to Elemental Damage",
+ implicitModTypes = { { "armour", "defences", "elemental" }, },
+ armour = { Armour = 445, MovementPenalty = 0.05, },
+ req = { level = 80, str = 121, },
}
itemBases["Leather Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 30, MovementPenalty = 0.03, },
@@ -262,7 +273,7 @@ itemBases["Quilted Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 44, MovementPenalty = 0.03, },
@@ -272,232 +283,243 @@ itemBases["Pathfinder Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 78, MovementPenalty = 0.03, },
- req = { level = 11, dex = 24, },
+ req = { level = 11, dex = 21, },
}
itemBases["Shrouded Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, dex_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 102, MovementPenalty = 0.03, },
- req = { level = 16, dex = 34, },
+ req = { level = 16, dex = 28, },
}
itemBases["Rhoahide Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, dex_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 131, MovementPenalty = 0.03, },
- req = { level = 22, dex = 47, },
+ req = { level = 22, dex = 37, },
}
itemBases["Studded Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, dex_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 150, MovementPenalty = 0.03, },
- req = { level = 26, dex = 55, },
+ req = { level = 26, dex = 43, },
}
itemBases["Scout's Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 184, MovementPenalty = 0.03, },
- req = { level = 33, dex = 68, },
+ req = { level = 33, dex = 54, },
}
itemBases["Serpentscale Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 198, MovementPenalty = 0.03, },
- req = { level = 36, dex = 75, },
+ req = { level = 36, dex = 59, },
}
itemBases["Corsair Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, dex_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 242, MovementPenalty = 0.03, },
- req = { level = 45, dex = 94, },
+ armour = { Evasion = 247, MovementPenalty = 0.03, },
+ req = { level = 46, dex = 74, },
}
itemBases["Smuggler Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, dex_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 256, MovementPenalty = 0.03, },
- req = { level = 48, dex = 99, },
+ armour = { Evasion = 271, MovementPenalty = 0.03, },
+ req = { level = 51, dex = 82, },
}
itemBases["Strider Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 275, MovementPenalty = 0.03, },
- req = { level = 52, dex = 107, },
+ req = { level = 52, dex = 83, },
}
itemBases["Hardleather Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 295, MovementPenalty = 0.03, },
- req = { level = 56, dex = 115, },
+ req = { level = 56, dex = 89, },
}
itemBases["Exquisite Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 487, MovementPenalty = 0.03, },
- req = { level = 65, dex = 157, },
+ req = { level = 65, dex = 121, },
}
itemBases["Mail Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicit = "(20-30)% reduced Slowing Potency of Debuffs on You",
implicitModTypes = { { }, },
armour = { Evasion = 406, MovementPenalty = 0.03, },
- req = { level = 68, dex = 157, },
+ req = { level = 68, dex = 121, },
}
itemBases["Armoured Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicit = "(30-40)% increased Elemental Ailment Threshold",
implicitModTypes = { { }, },
armour = { Evasion = 406, MovementPenalty = 0.03, },
- req = { level = 73, dex = 157, },
+ req = { level = 73, dex = 121, },
}
itemBases["Patchwork Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 242, MovementPenalty = 0.03, },
- req = { level = 45, dex = 94, },
+ req = { level = 45, dex = 72, },
}
itemBases["Hunting Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 256, MovementPenalty = 0.03, },
- req = { level = 48, dex = 99, },
+ req = { level = 48, dex = 77, },
}
itemBases["Riding Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 271, MovementPenalty = 0.03, },
- req = { level = 51, dex = 105, },
+ req = { level = 51, dex = 82, },
}
itemBases["Layered Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 290, MovementPenalty = 0.03, },
- req = { level = 55, dex = 113, },
+ armour = { Evasion = 285, MovementPenalty = 0.03, },
+ req = { level = 54, dex = 86, },
}
itemBases["Runner Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 309, MovementPenalty = 0.03, },
- req = { level = 59, dex = 122, },
+ req = { level = 59, dex = 94, },
}
itemBases["Lizardscale Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 324, MovementPenalty = 0.03, },
- req = { level = 62, dex = 128, },
+ req = { level = 62, dex = 98, },
}
itemBases["Swiftstalker Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicit = "(20-30)% reduced Slowing Potency of Debuffs on You",
implicitModTypes = { { }, },
armour = { Evasion = 406, MovementPenalty = 0.03, },
- req = { level = 65, dex = 157, },
+ req = { level = 65, dex = 121, },
}
itemBases["Slipstrike Vest"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 487, MovementPenalty = 0.03, },
- req = { level = 70, dex = 157, },
+ req = { level = 70, dex = 121, },
}
itemBases["Wyrmscale Coat"] = {
type = "Body Armour",
subType = "Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_armour = true, default = true, },
implicit = "(30-40)% increased Elemental Ailment Threshold",
implicitModTypes = { { }, },
armour = { Evasion = 406, MovementPenalty = 0.03, },
- req = { level = 75, dex = 157, },
+ req = { level = 75, dex = 121, },
+}
+itemBases["Corsair Coat"] = {
+ type = "Body Armour",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, dex_armour = true, armour = true, karui_basetype = true, default = true, },
+ implicit = "(10-20)% reduced Movement Speed Penalty from using Skills while moving",
+ implicitModTypes = { { "speed" }, },
+ armour = { Evasion = 406, MovementPenalty = 0.03, },
+ req = { level = 80, dex = 121, },
}
itemBases["Tattered Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 28, MovementPenalty = 0.03, },
@@ -507,242 +529,253 @@ itemBases["Feathered Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 35, MovementPenalty = 0.03, },
- req = { level = 5, int = 13, },
+ req = { level = 5, int = 11, },
}
itemBases["Hexer's Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 44, MovementPenalty = 0.03, },
- req = { level = 11, int = 24, },
+ req = { level = 11, int = 21, },
}
itemBases["Bone Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, int_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 52, MovementPenalty = 0.03, },
- req = { level = 16, int = 34, },
+ req = { level = 16, int = 28, },
}
itemBases["Silk Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, int_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 61, MovementPenalty = 0.03, },
- req = { level = 22, int = 47, },
+ req = { level = 22, int = 37, },
}
itemBases["Keth Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, int_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 70, MovementPenalty = 0.03, },
- req = { level = 28, int = 59, },
+ req = { level = 28, int = 47, },
}
itemBases["Votive Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 78, MovementPenalty = 0.03, },
- req = { level = 33, int = 68, },
+ req = { level = 33, int = 54, },
}
itemBases["Altar Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 89, MovementPenalty = 0.03, },
- req = { level = 40, int = 83, },
+ req = { level = 40, int = 65, },
}
itemBases["Elementalist Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, int_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 97, MovementPenalty = 0.03, },
- req = { level = 45, int = 94, },
+ armour = { EnergyShield = 98, MovementPenalty = 0.03, },
+ req = { level = 46, int = 74, },
}
itemBases["Mystic Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, int_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 100, MovementPenalty = 0.03, },
- req = { level = 47, int = 97, },
+ armour = { EnergyShield = 103, MovementPenalty = 0.03, },
+ req = { level = 49, int = 78, },
}
itemBases["Imperial Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 108, MovementPenalty = 0.03, },
- req = { level = 52, int = 107, },
+ req = { level = 52, int = 83, },
}
itemBases["Plated Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 117, MovementPenalty = 0.03, },
- req = { level = 58, int = 120, },
+ req = { level = 58, int = 92, },
}
itemBases["Havoc Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 184, MovementPenalty = 0.03, },
- req = { level = 65, int = 157, },
+ req = { level = 65, int = 121, },
}
itemBases["Enlightened Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicit = "(40-50)% increased Mana Regeneration Rate",
implicitModTypes = { { "resource", "mana" }, },
armour = { EnergyShield = 153, MovementPenalty = 0.03, },
- req = { level = 68, int = 157, },
+ req = { level = 68, int = 121, },
}
-itemBases["Arcane Robe"] = {
+itemBases["Arcane Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicit = "(40-50)% faster start of Energy Shield Recharge",
implicitModTypes = { { "energy_shield", "defences" }, },
armour = { EnergyShield = 153, MovementPenalty = 0.03, },
- req = { level = 73, int = 157, },
+ req = { level = 73, int = 121, },
}
itemBases["Avian Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 97, MovementPenalty = 0.03, },
- req = { level = 45, int = 94, },
+ req = { level = 45, int = 72, },
}
itemBases["Cursespeaker's Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 101, MovementPenalty = 0.03, },
- req = { level = 48, int = 99, },
+ req = { level = 48, int = 77, },
}
itemBases["Luxurious Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 106, MovementPenalty = 0.03, },
- req = { level = 51, int = 105, },
+ req = { level = 51, int = 82, },
}
itemBases["River Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 112, MovementPenalty = 0.03, },
- req = { level = 55, int = 113, },
+ armour = { EnergyShield = 111, MovementPenalty = 0.03, },
+ req = { level = 54, int = 86, },
}
itemBases["Adherent's Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 119, MovementPenalty = 0.03, },
- req = { level = 59, int = 122, },
+ req = { level = 59, int = 94, },
}
itemBases["Ceremonial Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 123, MovementPenalty = 0.03, },
- req = { level = 62, int = 128, },
+ req = { level = 62, int = 98, },
}
itemBases["Vile Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 184, MovementPenalty = 0.03, },
- req = { level = 65, int = 157, },
+ req = { level = 65, int = 121, },
}
itemBases["Flowing Raiment"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicit = "(40-50)% increased Mana Regeneration Rate",
implicitModTypes = { { "resource", "mana" }, },
armour = { EnergyShield = 153, MovementPenalty = 0.03, },
- req = { level = 70, int = 157, },
+ req = { level = 70, int = 121, },
}
itemBases["Sacramental Robe"] = {
type = "Body Armour",
subType = "Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, int_armour = true, default = true, },
implicit = "(40-50)% faster start of Energy Shield Recharge",
implicitModTypes = { { "energy_shield", "defences" }, },
armour = { EnergyShield = 153, MovementPenalty = 0.03, },
- req = { level = 75, int = 157, },
+ req = { level = 75, int = 121, },
+}
+itemBases["Feathered Raiment"] = {
+ type = "Body Armour",
+ subType = "Energy Shield",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, int_armour = true, armour = true, karui_basetype = true, default = true, },
+ implicit = "(5-10)% of Damage is taken from Mana before Life",
+ implicitModTypes = { { "resource", "life", "mana" }, },
+ armour = { EnergyShield = 153, MovementPenalty = 0.03, },
+ req = { level = 80, int = 121, },
}
itemBases["Chain Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, ezomyte_basetype = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 25, Evasion = 16, MovementPenalty = 0.04, },
@@ -752,266 +785,277 @@ itemBases["Rogue Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, ezomyte_basetype = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 53, Evasion = 43, MovementPenalty = 0.04, },
- req = { level = 11, str = 14, dex = 14, },
+ req = { level = 11, str = 13, dex = 13, },
}
itemBases["Vagabond Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, Evasion = 56, MovementPenalty = 0.04, },
- req = { level = 16, str = 20, dex = 20, },
+ req = { level = 16, str = 17, dex = 17, },
}
itemBases["Cloaked Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 95, Evasion = 83, MovementPenalty = 0.04, },
- req = { level = 26, str = 31, dex = 31, },
+ req = { level = 26, str = 25, dex = 25, },
}
itemBases["Explorer Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 114, Evasion = 101, MovementPenalty = 0.04, },
- req = { level = 33, str = 39, dex = 39, },
+ req = { level = 33, str = 31, dex = 31, },
}
itemBases["Scale Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 125, Evasion = 112, MovementPenalty = 0.04, },
- req = { level = 37, str = 43, dex = 43, },
+ req = { level = 37, str = 34, dex = 34, },
}
itemBases["Knight Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_dex_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 148, Evasion = 133, MovementPenalty = 0.04, },
- req = { level = 45, str = 51, dex = 51, },
+ armour = { Armour = 151, Evasion = 136, MovementPenalty = 0.04, },
+ req = { level = 46, str = 41, dex = 41, },
}
itemBases["Ancestral Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_dex_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 162, Evasion = 146, MovementPenalty = 0.04, },
- req = { level = 50, str = 57, dex = 57, },
+ req = { level = 50, str = 44, dex = 44, },
}
itemBases["Lamellar Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 167, Evasion = 151, MovementPenalty = 0.04, },
- req = { level = 52, str = 59, dex = 59, },
+ req = { level = 52, str = 46, dex = 46, },
}
itemBases["Gladiator Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 184, Evasion = 167, MovementPenalty = 0.04, },
- req = { level = 58, str = 66, dex = 66, },
+ req = { level = 58, str = 51, dex = 51, },
}
itemBases["Heroic Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(60-80) to maximum Life",
implicitModTypes = { { "resource", "life" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 65, str = 86, dex = 86, },
+ req = { level = 65, str = 67, dex = 67, },
}
itemBases["Tournament Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Fire Resistance",
implicitModTypes = { { "elemental", "fire", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 68, str = 86, dex = 86, },
+ req = { level = 68, str = 67, dex = 67, },
}
itemBases["Tournament Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Cold Resistance",
implicitModTypes = { { "elemental", "cold", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 68, str = 86, dex = 86, },
+ req = { level = 68, str = 67, dex = 67, },
}
itemBases["Tournament Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Lightning Resistance",
implicitModTypes = { { "elemental", "lightning", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 68, str = 86, dex = 86, },
+ req = { level = 68, str = 67, dex = 67, },
}
itemBases["Slayer Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 294, Evasion = 268, MovementPenalty = 0.04, },
- req = { level = 73, str = 86, dex = 86, },
+ req = { level = 73, str = 67, dex = 67, },
}
itemBases["Ring Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 148, Evasion = 133, MovementPenalty = 0.04, },
- req = { level = 45, str = 51, dex = 51, },
+ req = { level = 45, str = 41, dex = 41, },
}
itemBases["Scoundrel Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 156, Evasion = 141, MovementPenalty = 0.04, },
- req = { level = 48, str = 55, dex = 55, },
+ req = { level = 48, str = 43, dex = 43, },
}
itemBases["Wanderer Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 165, Evasion = 149, MovementPenalty = 0.04, },
- req = { level = 51, str = 59, dex = 59, },
+ req = { level = 51, str = 45, dex = 45, },
}
itemBases["Mantled Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 176, Evasion = 159, MovementPenalty = 0.04, },
- req = { level = 55, str = 62, dex = 62, },
+ armour = { Armour = 173, Evasion = 157, MovementPenalty = 0.04, },
+ req = { level = 54, str = 48, dex = 48, },
}
itemBases["Trailblazer Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 187, Evasion = 170, MovementPenalty = 0.04, },
- req = { level = 59, str = 67, dex = 67, },
+ req = { level = 59, str = 52, dex = 52, },
}
itemBases["Golden Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 195, Evasion = 178, MovementPenalty = 0.04, },
- req = { level = 62, str = 70, dex = 70, },
+ req = { level = 62, str = 54, dex = 54, },
}
itemBases["Dastard Armour"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(60-80) to maximum Life",
implicitModTypes = { { "resource", "life" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 65, str = 86, dex = 86, },
+ req = { level = 65, str = 67, dex = 67, },
}
itemBases["Shrouded Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Fire Resistance",
implicitModTypes = { { "elemental", "fire", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 70, str = 86, dex = 86, },
+ req = { level = 70, str = 67, dex = 67, },
}
itemBases["Shrouded Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Cold Resistance",
implicitModTypes = { { "elemental", "cold", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 70, str = 86, dex = 86, },
+ req = { level = 70, str = 67, dex = 67, },
}
itemBases["Shrouded Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicit = "+(20-25)% to Lightning Resistance",
implicitModTypes = { { "elemental", "lightning", "resistance" }, },
armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
- req = { level = 70, str = 86, dex = 86, },
+ req = { level = 70, str = 67, dex = 67, },
}
itemBases["Death Mail"] = {
type = "Body Armour",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 294, Evasion = 268, MovementPenalty = 0.04, },
- req = { level = 75, str = 86, dex = 86, },
+ req = { level = 75, str = 67, dex = 67, },
+}
+itemBases["Thane Mail"] = {
+ type = "Body Armour",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, str_dex_armour = true, armour = true, karui_basetype = true, default = true, },
+ implicit = "Hits against you have (15-25)% reduced Critical Damage Bonus",
+ implicitModTypes = { { "damage", "critical" }, },
+ armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, },
+ req = { level = 80, str = 67, dex = 67, },
}
itemBases["Pilgrim Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, ezomyte_basetype = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 25, EnergyShield = 16, MovementPenalty = 0.04, },
@@ -1021,222 +1065,233 @@ itemBases["Pelt Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, ezomyte_basetype = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 50, EnergyShield = 23, MovementPenalty = 0.04, },
- req = { level = 10, str = 14, int = 14, },
+ req = { level = 10, str = 12, int = 12, },
}
itemBases["Mail Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, EnergyShield = 28, MovementPenalty = 0.04, },
- req = { level = 16, str = 20, int = 20, },
+ req = { level = 16, str = 17, int = 17, },
}
itemBases["Shaman Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, armour = true, maraketh_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, EnergyShield = 39, MovementPenalty = 0.04, },
- req = { level = 28, str = 33, int = 33, },
+ req = { level = 28, str = 26, int = 26, },
}
itemBases["Ironclad Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 114, EnergyShield = 43, MovementPenalty = 0.04, },
- req = { level = 33, str = 39, int = 39, },
+ req = { level = 33, str = 31, int = 31, },
}
itemBases["Sacrificial Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 123, EnergyShield = 46, MovementPenalty = 0.04, },
- req = { level = 36, str = 41, int = 41, },
+ req = { level = 36, str = 33, int = 33, },
}
itemBases["Cleric Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_int_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 148, EnergyShield = 53, MovementPenalty = 0.04, },
- req = { level = 45, str = 51, int = 51, },
+ armour = { Armour = 151, EnergyShield = 54, MovementPenalty = 0.04, },
+ req = { level = 46, str = 41, int = 41, },
}
itemBases["Tideseer Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, str_int_armour = true, armour = true, karui_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 165, EnergyShield = 58, MovementPenalty = 0.04, },
- req = { level = 51, str = 59, int = 59, },
+ req = { level = 51, str = 45, int = 45, },
}
itemBases["Gilded Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 167, EnergyShield = 59, MovementPenalty = 0.04, },
- req = { level = 52, str = 59, int = 59, },
+ req = { level = 52, str = 46, int = 46, },
}
itemBases["Venerated Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 173, EnergyShield = 61, MovementPenalty = 0.04, },
- req = { level = 54, str = 61, int = 61, },
+ req = { level = 54, str = 48, int = 48, },
}
itemBases["Revered Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicit = "+1% to all Maximum Elemental Resistances",
implicitModTypes = { { "elemental", "resistance" }, },
armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, },
- req = { level = 65, str = 86, int = 86, },
+ req = { level = 65, str = 67, int = 67, },
}
itemBases["Corvus Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicit = "+(20-30) to Spirit",
implicitModTypes = { { }, },
armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, },
- req = { level = 68, str = 86, int = 86, },
+ req = { level = 68, str = 67, int = 67, },
}
itemBases["Zenith Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 294, EnergyShield = 101, MovementPenalty = 0.04, },
- req = { level = 73, str = 86, int = 86, },
+ req = { level = 73, str = 67, int = 67, },
}
itemBases["Templar Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 148, EnergyShield = 53, MovementPenalty = 0.04, },
- req = { level = 45, str = 51, int = 51, },
+ req = { level = 45, str = 41, int = 41, },
}
itemBases["Bearskin Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 156, EnergyShield = 56, MovementPenalty = 0.04, },
- req = { level = 48, str = 55, int = 55, },
+ req = { level = 48, str = 43, int = 43, },
}
itemBases["Chain Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 165, EnergyShield = 58, MovementPenalty = 0.04, },
- req = { level = 51, str = 59, int = 59, },
+ req = { level = 51, str = 45, int = 45, },
}
itemBases["Occultist Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 176, EnergyShield = 62, MovementPenalty = 0.04, },
- req = { level = 55, str = 62, int = 62, },
+ armour = { Armour = 173, EnergyShield = 61, MovementPenalty = 0.04, },
+ req = { level = 54, str = 48, int = 48, },
}
itemBases["Plated Vestments"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 187, EnergyShield = 65, MovementPenalty = 0.04, },
- req = { level = 59, str = 67, int = 67, },
+ req = { level = 59, str = 52, int = 52, },
}
itemBases["Heartcarver Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 195, EnergyShield = 68, MovementPenalty = 0.04, },
- req = { level = 62, str = 70, int = 70, },
+ req = { level = 62, str = 54, int = 54, },
}
itemBases["Wolfskin Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 294, EnergyShield = 101, MovementPenalty = 0.04, },
- req = { level = 65, str = 86, int = 86, },
+ req = { level = 65, str = 67, int = 67, },
}
itemBases["Conjurer Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicit = "+(20-30) to Spirit",
implicitModTypes = { { }, },
armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, },
- req = { level = 70, str = 86, int = 86, },
+ req = { level = 70, str = 67, int = 67, },
}
itemBases["Death Mantle"] = {
type = "Body Armour",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_int_armour = true, default = true, },
implicit = "+1% to all Maximum Elemental Resistances",
implicitModTypes = { { "elemental", "resistance" }, },
armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, },
- req = { level = 75, str = 86, int = 86, },
+ req = { level = 75, str = 67, int = 67, },
+}
+itemBases["Seastorm Mantle"] = {
+ type = "Body Armour",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, str_int_armour = true, armour = true, karui_basetype = true, default = true, },
+ implicit = "(8-14)% of Damage taken Recouped as Life",
+ implicitModTypes = { { "resource", "life" }, },
+ armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, },
+ req = { level = 80, str = 67, int = 67, },
}
itemBases["Hermit Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 16, EnergyShield = 16, MovementPenalty = 0.03, },
@@ -1246,232 +1301,243 @@ itemBases["Waxed Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, ezomyte_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 43, EnergyShield = 24, MovementPenalty = 0.03, },
- req = { level = 11, dex = 14, int = 14, },
+ req = { level = 11, dex = 13, int = 13, },
}
itemBases["Marabout Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, maraketh_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 56, EnergyShield = 28, MovementPenalty = 0.03, },
- req = { level = 16, dex = 20, int = 20, },
+ req = { level = 16, dex = 17, int = 17, },
}
itemBases["Wayfarer Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, maraketh_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 88, EnergyShield = 39, MovementPenalty = 0.03, },
- req = { level = 28, dex = 33, int = 33, },
+ req = { level = 28, dex = 26, int = 26, },
}
itemBases["Anchorite Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, vaal_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 101, EnergyShield = 43, MovementPenalty = 0.03, },
- req = { level = 33, dex = 39, int = 39, },
+ req = { level = 33, dex = 31, int = 31, },
}
itemBases["Scalper's Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, vaal_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 117, EnergyShield = 48, MovementPenalty = 0.03, },
- req = { level = 39, dex = 45, int = 45, },
+ req = { level = 39, dex = 35, int = 35, },
}
itemBases["Scoundrel Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, karui_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
- armour = { Evasion = 133, EnergyShield = 53, MovementPenalty = 0.03, },
- req = { level = 45, dex = 51, int = 51, },
+ armour = { Evasion = 136, EnergyShield = 54, MovementPenalty = 0.03, },
+ req = { level = 46, dex = 41, int = 41, },
}
itemBases["Ascetic Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
- tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
+ socketLimit = 4,
+ tags = { body_armour = true, karui_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 149, EnergyShield = 58, MovementPenalty = 0.03, },
- req = { level = 51, dex = 59, int = 59, },
+ req = { level = 51, dex = 45, int = 45, },
}
itemBases["Clandestine Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 151, EnergyShield = 59, MovementPenalty = 0.03, },
- req = { level = 52, dex = 59, int = 59, },
+ req = { level = 52, dex = 46, int = 46, },
}
itemBases["Monastic Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 162, EnergyShield = 63, MovementPenalty = 0.03, },
- req = { level = 56, dex = 64, int = 64, },
+ req = { level = 56, dex = 50, int = 50, },
}
itemBases["Torment Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 268, EnergyShield = 101, MovementPenalty = 0.03, },
- req = { level = 65, dex = 86, int = 86, },
+ req = { level = 65, dex = 67, int = 67, },
}
itemBases["Devout Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicit = "+(7-13)% to Chaos Resistance",
implicitModTypes = { { "chaos", "resistance" }, },
armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, },
- req = { level = 68, dex = 86, int = 86, },
+ req = { level = 68, dex = 67, int = 67, },
}
itemBases["Assassin Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicit = "5% increased Movement Speed",
implicitModTypes = { { "speed" }, },
armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, },
- req = { level = 73, dex = 86, int = 86, },
+ req = { level = 73, dex = 67, int = 67, },
}
itemBases["Ascetic Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 133, EnergyShield = 53, MovementPenalty = 0.03, },
- req = { level = 45, dex = 51, int = 51, },
+ req = { level = 45, dex = 41, int = 41, },
}
itemBases["Oiled Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 141, EnergyShield = 56, MovementPenalty = 0.03, },
- req = { level = 48, dex = 55, int = 55, },
+ req = { level = 48, dex = 43, int = 43, },
}
itemBases["Evangelist Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 149, EnergyShield = 58, MovementPenalty = 0.03, },
- req = { level = 51, dex = 59, int = 59, },
+ req = { level = 51, dex = 45, int = 45, },
}
itemBases["Itinerant Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 159, EnergyShield = 62, MovementPenalty = 0.03, },
- req = { level = 55, dex = 62, int = 62, },
+ armour = { Evasion = 157, EnergyShield = 61, MovementPenalty = 0.03, },
+ req = { level = 54, dex = 48, int = 48, },
}
itemBases["Hatungo Garb"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 170, EnergyShield = 65, MovementPenalty = 0.03, },
- req = { level = 59, dex = 67, int = 67, },
+ req = { level = 59, dex = 52, int = 52, },
}
itemBases["Hawker's Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 178, EnergyShield = 68, MovementPenalty = 0.03, },
- req = { level = 62, dex = 70, int = 70, },
+ req = { level = 62, dex = 54, int = 54, },
}
itemBases["Sleek Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 268, EnergyShield = 101, MovementPenalty = 0.03, },
- req = { level = 65, dex = 86, int = 86, },
+ req = { level = 65, dex = 67, int = 67, },
}
itemBases["Rambler Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicit = "+(7-13)% to Chaos Resistance",
implicitModTypes = { { "chaos", "resistance" }, },
armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, },
- req = { level = 70, dex = 86, int = 86, },
+ req = { level = 70, dex = 67, int = 67, },
}
itemBases["Falconer's Jacket"] = {
type = "Body Armour",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, dex_int_armour = true, default = true, },
implicit = "5% increased Movement Speed",
implicitModTypes = { { "speed" }, },
armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, },
- req = { level = 75, dex = 86, int = 86, },
+ req = { level = 75, dex = 67, int = 67, },
+}
+itemBases["Austere Garb"] = {
+ type = "Body Armour",
+ subType = "Evasion/Energy Shield",
+ quality = 20,
+ socketLimit = 4,
+ tags = { body_armour = true, karui_basetype = true, armour = true, default = true, dex_int_armour = true, },
+ implicit = "(10-15)% reduced Elemental Ailment Duration on you",
+ implicitModTypes = { { "elemental", "ailment" }, },
+ armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, },
+ req = { level = 80, dex = 67, int = 67, },
}
itemBases["Grand Regalia"] = {
type = "Body Armour",
subType = "Armour/Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 135, Evasion = 123, EnergyShield = 46, MovementPenalty = 0.04, },
- req = { level = 65, str = 51, dex = 51, int = 51, },
+ req = { level = 65, str = 41, dex = 41, int = 41, },
}
itemBases["Garment"] = {
type = "Body Armour",
subType = "Armour/Evasion/Energy Shield",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, armour = true, str_dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { },
@@ -1481,10 +1547,10 @@ itemBases["Garment"] = {
itemBases["Golden Mantle"] = {
type = "Body Armour",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { body_armour = true, str_dex_int_armour = true, demigods = true, armour = true, not_for_sale = true, default = true, },
implicit = "+(15-25)% to all Elemental Resistances",
implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, },
armour = { Armour = 51, Evasion = 44, EnergyShield = 21, },
- req = { level = 20, str = 8, dex = 8, int = 8, },
+ req = { level = 20, str = 7, dex = 7, int = 7, },
}
diff --git a/src/Data/Bases/boots.lua b/src/Data/Bases/boots.lua
index 6538f0df92..96e3093a80 100644
--- a/src/Data/Bases/boots.lua
+++ b/src/Data/Bases/boots.lua
@@ -7,7 +7,7 @@ itemBases["Rough Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 22, },
@@ -17,148 +17,158 @@ itemBases["Iron Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 47, },
- req = { level = 11, str = 20, },
+ req = { level = 11, str = 17, },
}
itemBases["Bronze Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 60, },
- req = { level = 16, str = 29, },
+ req = { level = 16, str = 23, },
}
itemBases["Trimmed Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 87, },
- req = { level = 27, str = 47, },
+ req = { level = 27, str = 38, },
}
itemBases["Stone Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, str_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 102, },
- req = { level = 33, str = 57, },
+ req = { level = 33, str = 45, },
}
itemBases["Reefsteel Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { boots = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 132, },
- req = { level = 45, str = 78, },
+ armour = { Armour = 135, },
+ req = { level = 46, str = 62, },
}
itemBases["Monument Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 150, },
- req = { level = 52, str = 89, },
+ req = { level = 52, str = 69, },
}
itemBases["Totemic Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 182, },
- req = { level = 65, str = 111, },
+ req = { level = 65, str = 86, },
}
itemBases["Plated Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 132, },
- req = { level = 45, str = 78, },
+ req = { level = 45, str = 60, },
}
itemBases["Lionheart Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 147, },
- req = { level = 51, str = 88, },
+ req = { level = 51, str = 68, },
}
itemBases["Elegant Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 157, },
- req = { level = 55, str = 95, },
+ armour = { Armour = 155, },
+ req = { level = 54, str = 72, },
}
itemBases["Carved Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 167, },
- req = { level = 59, str = 101, },
+ req = { level = 59, str = 78, },
}
itemBases["Bulwark Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 182, },
- req = { level = 65, str = 111, },
+ req = { level = 65, str = 86, },
}
itemBases["Ornate Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 200, },
- req = { level = 70, str = 121, },
+ req = { level = 70, str = 93, },
}
itemBases["Vaal Greaves"] = {
type = "Boots",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 219, },
- req = { level = 75, str = 131, },
+ req = { level = 75, str = 101, },
+}
+itemBases["Tasalian Greaves"] = {
+ type = "Boots",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, str_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 237, },
+ req = { level = 80, str = 108, },
}
itemBases["Rawhide Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 15, },
@@ -168,148 +178,158 @@ itemBases["Laced Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 38, },
- req = { level = 11, dex = 20, },
+ req = { level = 11, dex = 17, },
}
itemBases["Embossed Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 50, },
- req = { level = 16, dex = 29, },
+ req = { level = 16, dex = 23, },
}
itemBases["Steeltoe Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 79, },
- req = { level = 28, dex = 49, },
+ req = { level = 28, dex = 39, },
}
itemBases["Lizardscale Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 90, },
- req = { level = 33, dex = 57, },
+ req = { level = 33, dex = 45, },
}
itemBases["Flared Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { dex_armour = true, armour = true, boots = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 119, },
- req = { level = 45, dex = 78, },
+ armour = { Evasion = 121, },
+ req = { level = 46, dex = 62, },
}
itemBases["Leatherplate Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 135, },
- req = { level = 52, dex = 89, },
+ req = { level = 52, dex = 69, },
}
itemBases["Embroidered Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 166, },
- req = { level = 65, dex = 111, },
+ req = { level = 65, dex = 86, },
}
itemBases["Bound Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 119, },
- req = { level = 45, dex = 78, },
+ req = { level = 45, dex = 60, },
}
itemBases["Sleek Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 133, },
- req = { level = 51, dex = 88, },
+ req = { level = 51, dex = 68, },
}
itemBases["Studded Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 143, },
- req = { level = 55, dex = 95, },
+ armour = { Evasion = 140, },
+ req = { level = 54, dex = 72, },
}
itemBases["Serpentscale Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 152, },
- req = { level = 59, dex = 101, },
+ req = { level = 59, dex = 78, },
}
itemBases["Cinched Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 166, },
- req = { level = 65, dex = 111, },
+ req = { level = 65, dex = 86, },
}
itemBases["Cavalry Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 183, },
- req = { level = 70, dex = 121, },
+ req = { level = 70, dex = 93, },
}
itemBases["Dragonscale Boots"] = {
type = "Boots",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 200, },
- req = { level = 75, dex = 131, },
+ req = { level = 75, dex = 101, },
+}
+itemBases["Drakeskin Boots"] = {
+ type = "Boots",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, dex_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 216, },
+ req = { level = 80, dex = 108, },
}
itemBases["Straw Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 14, },
@@ -319,269 +339,289 @@ itemBases["Wrapped Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 22, },
- req = { level = 11, int = 20, },
+ req = { level = 11, int = 17, },
}
itemBases["Lattice Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 25, },
- req = { level = 16, int = 29, },
+ req = { level = 16, int = 23, },
}
itemBases["Silk Slippers"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 34, },
- req = { level = 27, int = 47, },
+ req = { level = 27, int = 38, },
}
itemBases["Feathered Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 38, },
- req = { level = 33, int = 57, },
+ req = { level = 33, int = 45, },
}
itemBases["Flax Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { int_armour = true, armour = true, boots = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 48, },
- req = { level = 45, int = 78, },
+ req = { level = 46, int = 62, },
}
itemBases["Studded Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 53, },
- req = { level = 52, int = 89, },
+ req = { level = 52, int = 69, },
}
itemBases["Elaborate Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 63, },
- req = { level = 65, int = 111, },
+ req = { level = 65, int = 86, },
}
itemBases["Laced Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 48, },
- req = { level = 45, int = 78, },
+ req = { level = 45, int = 60, },
}
itemBases["Bangled Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 52, },
- req = { level = 51, int = 88, },
+ req = { level = 51, int = 68, },
}
itemBases["Elegant Slippers"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 55, },
- req = { level = 55, int = 95, },
+ armour = { EnergyShield = 54, },
+ req = { level = 54, int = 72, },
}
itemBases["Dunerunner Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 58, },
- req = { level = 59, int = 101, },
+ req = { level = 59, int = 78, },
}
itemBases["Bound Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 63, },
- req = { level = 65, int = 111, },
+ req = { level = 65, int = 86, },
}
itemBases["Luxurious Slippers"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 69, },
- req = { level = 70, int = 121, },
+ req = { level = 70, int = 93, },
}
itemBases["Sandsworn Sandals"] = {
type = "Boots",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 75, },
- req = { level = 75, int = 131, },
+ req = { level = 75, int = 101, },
+}
+itemBases["Sekhema Sandals"] = {
+ type = "Boots",
+ subType = "Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, int_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { EnergyShield = 82, },
+ req = { level = 80, int = 108, },
}
itemBases["Mail Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 19, Evasion = 15, },
- req = { level = 6, str = 8, dex = 8, },
+ req = { level = 6, str = 7, dex = 7, },
}
itemBases["Braced Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 33, Evasion = 28, },
- req = { level = 16, str = 17, dex = 17, },
+ req = { level = 16, str = 14, dex = 14, },
}
itemBases["Stacked Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, vaal_basetype = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 56, Evasion = 50, },
- req = { level = 33, str = 32, dex = 32, },
+ req = { level = 33, str = 26, dex = 26, },
}
itemBases["Covered Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
- tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 73, Evasion = 65, },
- req = { level = 45, str = 43, dex = 43, },
+ armour = { Armour = 74, Evasion = 67, },
+ req = { level = 46, str = 35, dex = 35, },
}
itemBases["Flexile Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 82, Evasion = 74, },
- req = { level = 52, str = 50, dex = 50, },
+ req = { level = 52, str = 38, dex = 38, },
}
itemBases["Bold Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, Evasion = 91, },
- req = { level = 65, str = 61, dex = 61, },
+ req = { level = 65, str = 47, dex = 47, },
}
itemBases["Soldiering Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 73, Evasion = 65, },
- req = { level = 45, str = 43, dex = 43, },
+ req = { level = 45, str = 34, dex = 34, },
}
itemBases["Goldwork Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 81, Evasion = 73, },
- req = { level = 51, str = 49, dex = 49, },
+ req = { level = 51, str = 38, dex = 38, },
}
itemBases["Bastion Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 92, Evasion = 84, },
- req = { level = 59, str = 56, dex = 56, },
+ req = { level = 59, str = 44, dex = 44, },
}
itemBases["Veteran Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, Evasion = 91, },
- req = { level = 65, str = 61, dex = 61, },
+ req = { level = 65, str = 47, dex = 47, },
}
itemBases["Noble Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 110, Evasion = 101, },
- req = { level = 70, str = 66, dex = 66, },
+ req = { level = 70, str = 51, dex = 51, },
}
itemBases["Fortress Sabatons"] = {
type = "Boots",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 120, Evasion = 110, },
- req = { level = 75, str = 71, dex = 71, },
+ req = { level = 75, str = 56, dex = 56, },
+}
+itemBases["Blacksteel Sabatons"] = {
+ type = "Boots",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, armour = true, boots = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 130, Evasion = 119, },
+ req = { level = 80, str = 59, dex = 59, },
}
itemBases["Padded Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 18, EnergyShield = 9, },
@@ -591,118 +631,128 @@ itemBases["Secured Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 33, EnergyShield = 14, },
- req = { level = 16, str = 17, int = 17, },
+ req = { level = 16, str = 14, int = 14, },
}
itemBases["Pelt Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, vaal_basetype = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 56, EnergyShield = 21, },
- req = { level = 33, str = 32, int = 32, },
+ req = { level = 33, str = 26, int = 26, },
}
itemBases["Weaver Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { str_int_armour = true, armour = true, boots = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 73, EnergyShield = 26, },
- req = { level = 45, str = 43, int = 43, },
+ armour = { Armour = 74, EnergyShield = 27, },
+ req = { level = 46, str = 35, int = 35, },
}
itemBases["Gilt Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 82, EnergyShield = 29, },
- req = { level = 52, str = 50, int = 50, },
+ req = { level = 52, str = 38, int = 38, },
}
itemBases["Pious Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, EnergyShield = 35, },
- req = { level = 65, str = 61, int = 61, },
+ req = { level = 65, str = 47, int = 47, },
}
itemBases["Adherent Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 73, EnergyShield = 26, },
- req = { level = 45, str = 43, int = 43, },
+ req = { level = 45, str = 34, int = 34, },
}
itemBases["Bound Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 81, EnergyShield = 29, },
- req = { level = 51, str = 49, int = 49, },
+ req = { level = 51, str = 38, int = 38, },
}
itemBases["Shamanistic Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 92, EnergyShield = 32, },
- req = { level = 59, str = 56, int = 56, },
+ req = { level = 59, str = 44, int = 44, },
}
itemBases["Faithful Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, EnergyShield = 35, },
- req = { level = 65, str = 61, int = 61, },
+ req = { level = 65, str = 47, int = 47, },
}
itemBases["Apostle Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 110, EnergyShield = 38, },
- req = { level = 70, str = 66, int = 66, },
+ req = { level = 70, str = 51, int = 51, },
}
itemBases["Warlock Leggings"] = {
type = "Boots",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 120, EnergyShield = 42, },
- req = { level = 75, str = 71, int = 71, },
+ req = { level = 75, str = 56, int = 56, },
+}
+itemBases["Cryptic Leggings"] = {
+ type = "Boots",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, armour = true, boots = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 130, EnergyShield = 45, },
+ req = { level = 80, str = 59, int = 59, },
}
itemBases["Frayed Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, ezomyte_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 13, EnergyShield = 9, },
@@ -712,128 +762,138 @@ itemBases["Threaded Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, boots = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 28, EnergyShield = 14, },
- req = { level = 16, dex = 17, int = 17, },
+ req = { level = 16, dex = 14, int = 14, },
}
itemBases["Hunting Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, vaal_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 50, EnergyShield = 21, },
- req = { level = 33, dex = 32, int = 32, },
+ req = { level = 33, dex = 26, int = 26, },
}
itemBases["Steelpoint Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
- armour = { Evasion = 65, EnergyShield = 26, },
- req = { level = 45, dex = 43, int = 43, },
+ armour = { Evasion = 67, EnergyShield = 27, },
+ req = { level = 46, dex = 35, int = 35, },
}
itemBases["Velour Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 74, EnergyShield = 29, },
- req = { level = 52, dex = 50, int = 50, },
+ req = { level = 52, dex = 38, int = 38, },
}
itemBases["Bladed Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 91, EnergyShield = 35, },
- req = { level = 65, dex = 61, int = 61, },
+ req = { level = 65, dex = 47, int = 47, },
}
itemBases["Wayfarer Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 65, EnergyShield = 26, },
- req = { level = 45, dex = 43, int = 43, },
+ req = { level = 45, dex = 34, int = 34, },
}
itemBases["Silverbuckled Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 73, EnergyShield = 29, },
- req = { level = 51, dex = 49, int = 49, },
+ req = { level = 51, dex = 38, int = 38, },
}
itemBases["Treerunner Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 84, EnergyShield = 32, },
- req = { level = 59, dex = 56, int = 56, },
+ req = { level = 59, dex = 44, int = 44, },
}
itemBases["Wanderer Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 91, EnergyShield = 35, },
- req = { level = 65, dex = 61, int = 61, },
+ req = { level = 65, dex = 47, int = 47, },
}
itemBases["Charmed Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 101, EnergyShield = 38, },
- req = { level = 70, dex = 66, int = 66, },
+ req = { level = 70, dex = 51, int = 51, },
}
itemBases["Quickslip Shoes"] = {
type = "Boots",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 110, EnergyShield = 42, },
- req = { level = 75, dex = 71, int = 71, },
+ req = { level = 75, dex = 56, int = 56, },
+}
+itemBases["Daggerfoot Shoes"] = {
+ type = "Boots",
+ subType = "Evasion/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, boots = true, armour = true, default = true, dex_int_armour = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 119, EnergyShield = 45, },
+ req = { level = 80, dex = 59, int = 59, },
}
itemBases["Grand Cuisses"] = {
type = "Boots",
subType = "Armour/Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_int_armour = true, armour = true, boots = true, default = true, },
implicitModTypes = { },
armour = { Armour = 66, Evasion = 60, EnergyShield = 23, },
- req = { level = 65, str = 43, dex = 43, int = 43, },
+ req = { level = 65, str = 34, dex = 34, int = 34, },
}
itemBases["Golden Caligae"] = {
type = "Boots",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { boots = true, not_for_sale = true, armour = true, demigods = true, default = true, },
implicit = "+(8-16)% to all Elemental Resistances",
implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, },
diff --git a/src/Data/Bases/bow.lua b/src/Data/Bases/bow.lua
index e45e183baa..32942a62f5 100644
--- a/src/Data/Bases/bow.lua
+++ b/src/Data/Bases/bow.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Crude Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
@@ -14,223 +14,233 @@ itemBases["Crude Bow"] = {
itemBases["Shortbow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 7, PhysicalMax = 14, CritChanceBase = 5, AttackRateBase = 1.25, Range = 120, },
- req = { level = 5, dex = 14, },
+ req = { level = 5, dex = 12, },
}
itemBases["Warden Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "(20-30)% chance to Chain an additional time",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 12, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
- req = { level = 11, dex = 27, },
+ req = { level = 11, dex = 23, },
}
itemBases["Recurve Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 15, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, },
- req = { level = 16, dex = 38, },
+ req = { level = 16, dex = 31, },
}
itemBases["Composite Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 22, dex = 52, },
+ req = { level = 22, dex = 41, },
}
itemBases["Dualstring Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "Bow Attacks fire an additional Arrow",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 16, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, },
- req = { level = 28, dex = 65, },
+ req = { level = 28, dex = 52, },
}
itemBases["Cultist Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
- weapon = { ChaosMin = 36, ChaosMax = 59, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 33, dex = 76, },
+ weapon = { PhysicalMin = 10, PhysicalMax = 17, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
+ req = { level = 33, dex = 60, },
}
itemBases["Zealot Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 31, PhysicalMax = 47, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 39, dex = 90, },
+ req = { level = 39, dex = 70, },
}
itemBases["Artillery Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "50% reduced Projectile Range",
implicitModTypes = { { }, },
- weapon = { PhysicalMin = 39, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
- req = { level = 45, dex = 104, },
+ weapon = { PhysicalMin = 40, PhysicalMax = 74, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
+ req = { level = 46, dex = 82, },
}
itemBases["Tribal Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 38, PhysicalMax = 57, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 50, dex = 115, },
+ req = { level = 50, dex = 89, },
}
itemBases["Greatbow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 40, PhysicalMax = 82, CritChanceBase = 6.5, AttackRateBase = 1.15, Range = 120, },
- req = { level = 52, str = 119, dex = 119, },
+ req = { level = 52, str = 92, dex = 92, },
}
itemBases["Double Limb Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 42, PhysicalMax = 63, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 56, dex = 128, },
+ req = { level = 56, dex = 99, },
}
itemBases["Heavy Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 75, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 65, dex = 148, },
+ req = { level = 65, dex = 114, },
}
itemBases["Snakewood Shortbow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 29, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.25, Range = 120, },
- req = { level = 45, dex = 104, },
+ req = { level = 45, dex = 80, },
}
itemBases["Protector Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "(20-30)% chance to Chain an additional time",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 35, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
- req = { level = 48, dex = 110, },
+ req = { level = 48, dex = 86, },
}
itemBases["Rider Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 36, PhysicalMax = 61, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 51, dex = 117, },
+ req = { level = 51, dex = 91, },
}
itemBases["Twin Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "Bow Attacks fire an additional Arrow",
implicitModTypes = { { "attack" }, },
- weapon = { PhysicalMin = 29, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 55, dex = 126, },
+ weapon = { PhysicalMin = 29, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
+ req = { level = 54, dex = 96, },
}
itemBases["Adherent Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
- weapon = { ChaosMin = 41, ChaosMax = 69, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 59, dex = 135, },
+ weapon = { PhysicalMin = 21, PhysicalMax = 34, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
+ req = { level = 59, dex = 104, },
}
itemBases["Militant Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 46, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 62, dex = 142, },
+ req = { level = 62, dex = 109, },
}
itemBases["Ironwood Shortbow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.25, Range = 120, },
- req = { level = 67, dex = 174, },
+ req = { level = 67, dex = 134, },
}
itemBases["Cavalry Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 49, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 72, dex = 193, },
+ req = { level = 72, dex = 149, },
}
itemBases["Guardian Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "(20-30)% chance to Chain an additional time",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 53, PhysicalMax = 80, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
- req = { level = 77, dex = 212, },
+ req = { level = 77, dex = 163, },
}
itemBases["Gemini Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicit = "Bow Attacks fire an additional Arrow",
implicitModTypes = { { "attack" }, },
- weapon = { PhysicalMin = 39, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 78, dex = 212, },
+ weapon = { PhysicalMin = 39, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, },
+ req = { level = 78, dex = 163, },
}
itemBases["Fanatic Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
- weapon = { ChaosMin = 52, ChaosMax = 87, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 79, dex = 212, },
+ weapon = { PhysicalMin = 42, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
+ req = { level = 79, dex = 163, },
}
itemBases["Warmonger Bow"] = {
type = "Bow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 56, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, },
- req = { level = 77, dex = 212, },
+ req = { level = 77, dex = 163, },
+}
+itemBases["Obliterator Bow"] = {
+ type = "Bow",
+ quality = 20,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, default = true, twohand = true, bow = true, },
+ implicit = "50% reduced Projectile Range",
+ implicitModTypes = { { }, },
+ weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, },
+ req = { level = 78, dex = 163, },
}
diff --git a/src/Data/Bases/claw.lua b/src/Data/Bases/claw.lua
index a355aee8de..d26b5106c5 100644
--- a/src/Data/Bases/claw.lua
+++ b/src/Data/Bases/claw.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Crude Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 4, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.65, Range = 11, },
@@ -14,110 +14,110 @@ itemBases["Crude Claw"] = {
itemBases["Pict Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 4, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.7, Range = 11, },
- req = { level = 6, dex = 16, },
+ req = { level = 6, dex = 14, },
}
itemBases["Wolfbone Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicit = "Grants 8 Life per Enemy Hit",
implicitModTypes = { { "resource", "life", "attack" }, },
weapon = { PhysicalMin = 7, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 12, dex = 29, },
+ req = { level = 12, dex = 24, },
}
itemBases["Forked Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 10, PhysicalMax = 26, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 16, dex = 38, },
+ req = { level = 16, dex = 31, },
}
itemBases["Plated Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 13, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 22, dex = 52, },
+ req = { level = 22, dex = 41, },
}
itemBases["Edged Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicit = "(15-25)% chance to Blind Enemies on hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 11, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.7, Range = 11, },
- req = { level = 28, dex = 65, },
+ req = { level = 28, dex = 52, },
}
itemBases["Arced Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 5, AttackRateBase = 1.65, Range = 11, },
- req = { level = 33, dex = 76, },
+ req = { level = 33, dex = 60, },
}
itemBases["Hooked Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 16, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 36, dex = 83, },
+ req = { level = 36, dex = 65, },
}
itemBases["Razorglass Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 23, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 45, dex = 104, },
+ req = { level = 45, dex = 80, },
}
itemBases["Sharktooth Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 25, PhysicalMax = 52, CritChanceBase = 5, AttackRateBase = 1.7, Range = 11, },
- req = { level = 49, dex = 112, },
+ req = { level = 49, dex = 87, },
}
itemBases["Armoured Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 63, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 52, dex = 119, },
+ req = { level = 52, dex = 92, },
}
itemBases["Piercing Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 23, PhysicalMax = 68, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 55, dex = 126, },
+ req = { level = 55, dex = 97, },
}
itemBases["Talon Claw"] = {
type = "Claw",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, default = true, weapon = true, one_hand_weapon = true, claw = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 23, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.65, Range = 11, },
- req = { level = 65, dex = 148, },
+ req = { level = 65, dex = 114, },
}
diff --git a/src/Data/Bases/crossbow.lua b/src/Data/Bases/crossbow.lua
index a3009e8342..b496d25652 100644
--- a/src/Data/Bases/crossbow.lua
+++ b/src/Data/Bases/crossbow.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Makeshift Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 7, PhysicalMax = 12, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
@@ -14,7 +14,7 @@ itemBases["Makeshift Crossbow"] = {
itemBases["Tense Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "(20-30)% increased Bolt Speed",
implicitModTypes = { { }, },
@@ -24,217 +24,227 @@ itemBases["Tense Crossbow"] = {
itemBases["Sturdy Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 11, PhysicalMax = 26, CritChanceBase = 5, AttackRateBase = 1.55, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 10, str = 15, dex = 15, },
+ req = { level = 10, str = 13, dex = 13, },
}
itemBases["Varnished Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 12, PhysicalMax = 36, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 16, str = 22, dex = 22, },
+ req = { level = 16, str = 19, dex = 19, },
}
itemBases["Dyad Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Loads an additional bolt",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 9, PhysicalMax = 37, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 1.1, },
- req = { level = 20, str = 27, dex = 27, },
+ req = { level = 20, str = 22, dex = 22, },
}
itemBases["Alloy Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 12, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.7, Range = 120, ReloadTimeBase = 0.7, },
- req = { level = 26, str = 34, dex = 34, },
+ req = { level = 26, str = 28, dex = 28, },
}
itemBases["Bombard Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Grenade Skills Fire an additional Projectile",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 14, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 33, str = 43, dex = 43, },
+ req = { level = 33, str = 34, dex = 34, },
}
itemBases["Construct Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 18, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 38, str = 49, dex = 49, },
+ req = { level = 38, str = 39, dex = 39, },
}
itemBases["Blackfire Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 20, PhysicalMax = 80, CritChanceBase = 7, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, },
- req = { level = 45, str = 57, dex = 57, },
+ weapon = { PhysicalMin = 20, PhysicalMax = 82, CritChanceBase = 7, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, },
+ req = { level = 46, str = 46, dex = 46, },
}
itemBases["Piercing Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "(20-30)% chance to Pierce an Enemy",
implicitModTypes = { { }, },
- weapon = { PhysicalMin = 20, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.85, },
- req = { level = 48, str = 61, dex = 61, },
+ weapon = { PhysicalMin = 21, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.85, },
+ req = { level = 50, str = 49, dex = 49, },
}
itemBases["Cumbrous Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "+1 to maximum number of Summoned Ballista Totems",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 19, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.9, },
- req = { level = 52, str = 66, dex = 66, },
+ req = { level = 52, str = 51, dex = 51, },
}
itemBases["Dedalian Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 25, PhysicalMax = 99, CritChanceBase = 7, AttackRateBase = 1.55, Range = 120, ReloadTimeBase = 0.85, },
- req = { level = 56, str = 71, dex = 71, },
+ req = { level = 56, str = 55, dex = 55, },
}
itemBases["Esoteric Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 28, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 65, str = 81, dex = 81, },
+ req = { level = 65, str = 63, dex = 63, },
}
itemBases["Taut Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "(20-30)% increased Bolt Speed",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, },
- req = { level = 45, str = 57, dex = 57, },
+ req = { level = 45, str = 45, dex = 45, },
}
itemBases["Robust Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 22, PhysicalMax = 89, CritChanceBase = 5, AttackRateBase = 1.55, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 48, str = 61, dex = 61, },
+ req = { level = 48, str = 48, dex = 48, },
}
itemBases["Painted Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 23, PhysicalMax = 92, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 51, str = 65, dex = 65, },
+ req = { level = 51, str = 50, dex = 50, },
}
itemBases["Twin Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Loads an additional bolt",
implicitModTypes = { { "attack" }, },
- weapon = { PhysicalMin = 21, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 1.1, },
- req = { level = 55, str = 69, dex = 69, },
+ weapon = { PhysicalMin = 20, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 1.1, },
+ req = { level = 54, str = 53, dex = 53, },
}
itemBases["Cannonade Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Grenade Skills Fire an additional Projectile",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 23, PhysicalMax = 90, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 59, str = 74, dex = 74, },
+ req = { level = 59, str = 58, dex = 58, },
}
itemBases["Bleak Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 109, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 62, str = 78, dex = 78, },
+ req = { level = 62, str = 60, dex = 60, },
}
itemBases["Stout Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 30, PhysicalMax = 119, CritChanceBase = 5, AttackRateBase = 1.55, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 67, str = 95, dex = 95, },
+ req = { level = 67, str = 74, dex = 74, },
}
itemBases["Engraved Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 31, PhysicalMax = 124, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 72, str = 106, dex = 106, },
+ req = { level = 72, str = 82, dex = 82, },
}
itemBases["Flexed Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "(20-30)% increased Bolt Speed",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 32, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, },
- req = { level = 77, str = 116, dex = 116, },
+ req = { level = 77, str = 89, dex = 89, },
}
itemBases["Gemini Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Loads an additional bolt",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 28, PhysicalMax = 112, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 1.1, },
- req = { level = 78, str = 116, dex = 116, },
+ req = { level = 78, str = 89, dex = 89, },
}
itemBases["Siege Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicit = "Grenade Skills Fire an additional Projectile",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 29, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.75, },
- req = { level = 79, str = 116, dex = 116, },
+ req = { level = 79, str = 89, dex = 89, },
}
itemBases["Desolate Crossbow"] = {
type = "Crossbow",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 33, PhysicalMax = 132, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, },
- req = { level = 77, str = 116, dex = 116, },
+ req = { level = 77, str = 89, dex = 89, },
+}
+itemBases["Elegant Crossbow"] = {
+ type = "Crossbow",
+ quality = 20,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, ranged = true, weapon = true, twohand = true, crossbow = true, default = true, },
+ implicit = "(20-30)% chance to Pierce an Enemy",
+ implicitModTypes = { { }, },
+ weapon = { PhysicalMin = 31, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.85, },
+ req = { level = 78, str = 89, dex = 89, },
}
diff --git a/src/Data/Bases/dagger.lua b/src/Data/Bases/dagger.lua
index de267a2e39..edeadb0d19 100644
--- a/src/Data/Bases/dagger.lua
+++ b/src/Data/Bases/dagger.lua
@@ -5,8 +5,7 @@ local itemBases = ...
itemBases["Ethereal Blade"] = {
type = "Dagger",
quality = 20,
- hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, not_for_sale = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 5, PhysicalMax = 10, CritChanceBase = 6, AttackRateBase = 1.5, Range = 10, },
@@ -15,7 +14,7 @@ itemBases["Ethereal Blade"] = {
itemBases["Glass Shank"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 3, PhysicalMax = 10, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
@@ -24,111 +23,111 @@ itemBases["Glass Shank"] = {
itemBases["Crone Knife"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicit = "Leeches 4% of Physical Damage as Mana",
implicitModTypes = { { "resource", "mana", "physical", "attack" }, },
weapon = { PhysicalMin = 4, PhysicalMax = 15, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 6, dex = 10, int = 10, },
+ req = { level = 6, dex = 9, int = 9, },
}
itemBases["Simple Dagger"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 19, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 12, dex = 18, int = 18, },
+ req = { level = 12, dex = 15, int = 15, },
}
itemBases["Skinning Knife"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 22, CritChanceBase = 13.5, AttackRateBase = 1.65, Range = 10, },
- req = { level = 16, dex = 22, int = 22, },
+ req = { level = 16, dex = 19, int = 19, },
}
itemBases["Moon Dagger"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { ColdMin = 11, ColdMax = 26, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 20, dex = 27, int = 27, },
+ req = { level = 20, dex = 22, int = 22, },
}
itemBases["Engraved Knife"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 11, PhysicalMax = 34, CritChanceBase = 13.5, AttackRateBase = 1.55, Range = 10, },
- req = { level = 27, dex = 36, int = 36, },
+ req = { level = 27, dex = 29, int = 29, },
}
itemBases["Obsidian Dagger"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 13, PhysicalMax = 39, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 33, dex = 43, int = 43, },
+ req = { level = 33, dex = 34, int = 34, },
}
itemBases["Bloodletting Dagger"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicit = "25% of Spell Mana Cost Converted to Life Cost",
- implicitModTypes = { { }, },
+ implicitModTypes = { { "resource", "life", "caster" }, },
weapon = { PhysicalMin = 18, PhysicalMax = 42, CritChanceBase = 15, AttackRateBase = 1.5, Range = 10, },
- req = { level = 39, dex = 50, int = 50, },
+ req = { level = 39, dex = 39, int = 39, },
}
itemBases["Mail Breaker"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicit = "Breaks (400-500) Armour on Critical Hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 19, PhysicalMax = 44, CritChanceBase = 15, AttackRateBase = 1.5, Range = 10, },
- req = { level = 45, dex = 57, int = 57, },
+ req = { level = 45, dex = 45, int = 45, },
}
itemBases["Kris Knife"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 16, PhysicalMax = 48, CritChanceBase = 15, AttackRateBase = 1.65, Range = 10, },
- req = { level = 49, dex = 62, int = 62, },
+ req = { level = 49, dex = 49, int = 49, },
}
itemBases["Parrying Dagger"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 16, PhysicalMax = 55, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 52, dex = 66, int = 66, },
+ req = { level = 52, dex = 51, int = 51, },
}
itemBases["Arcane Dirk"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 22, PhysicalMax = 52, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 56, dex = 71, int = 71, },
+ req = { level = 56, dex = 55, int = 55, },
}
itemBases["Cinquedea"] = {
type = "Dagger",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, one_hand_weapon = true, weapon = true, dagger = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 21, PhysicalMax = 62, CritChanceBase = 15, AttackRateBase = 1.55, Range = 10, },
- req = { level = 65, dex = 81, int = 81, },
+ req = { level = 65, dex = 63, int = 63, },
}
diff --git a/src/Data/Bases/fishing.lua b/src/Data/Bases/fishing.lua
index ef0f3a8608..9b4edc6ab0 100644
--- a/src/Data/Bases/fishing.lua
+++ b/src/Data/Bases/fishing.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Fishing Rod"] = {
type = "Fishing Rod",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { not_for_sale = true, fishing_rod = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 10, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
diff --git a/src/Data/Bases/flail.lua b/src/Data/Bases/flail.lua
index 1b663fd881..d629d1371a 100644
--- a/src/Data/Bases/flail.lua
+++ b/src/Data/Bases/flail.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Splintered Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
@@ -14,111 +14,111 @@ itemBases["Splintered Flail"] = {
itemBases["Chain Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 14, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 6, str = 13, },
+ req = { level = 6, str = 12, },
}
itemBases["Holy Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 10, PhysicalMax = 17, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 11, str = 22, int = 11, },
+ req = { level = 11, str = 18, int = 9, },
}
itemBases["Iron Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 16, str = 30, int = 14, },
+ req = { level = 16, str = 25, int = 12, },
}
itemBases["Twin Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "Forks Critical Hits",
+ implicit = "Bifurcates Critical Hits",
implicitModTypes = { { "critical" }, },
weapon = { PhysicalMin = 8, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 11, },
- req = { level = 20, str = 37, int = 16, },
+ req = { level = 20, str = 30, int = 14, },
}
itemBases["Slender Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 8, AttackRateBase = 1.5, Range = 11, },
- req = { level = 26, str = 48, int = 20, },
+ req = { level = 26, str = 38, int = 17, },
}
itemBases["Stone Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "Unblockable",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 23, PhysicalMax = 38, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 33, str = 60, int = 25, },
+ req = { level = 33, str = 47, int = 20, },
}
itemBases["Ring Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 23, PhysicalMax = 44, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 38, str = 69, int = 28, },
+ req = { level = 38, str = 54, int = 23, },
}
itemBases["Guarded Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 10, AttackRateBase = 1.4, Range = 11, },
- req = { level = 45, str = 81, int = 33, },
+ req = { level = 45, str = 63, int = 26, },
}
itemBases["Icicle Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { ColdMin = 24, ColdMax = 55, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 47, str = 84, int = 34, },
+ req = { level = 47, str = 66, int = 27, },
}
itemBases["Tearing Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 56, CritChanceBase = 12.5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 52, str = 93, int = 37, },
+ req = { level = 52, str = 72, int = 29, },
}
itemBases["Great Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 35, PhysicalMax = 58, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 58, str = 103, int = 41, },
+ req = { level = 58, str = 80, int = 32, },
}
itemBases["Abyssal Flail"] = {
type = "Flail",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, flail = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 36, PhysicalMax = 66, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, },
- req = { level = 65, str = 116, int = 45, },
+ req = { level = 65, str = 89, int = 36, },
}
-- not working this way? baseMatch BaseType Metadata/Items/Weapons/OneHandWeapons/Flails/AbstractFlail
diff --git a/src/Data/Bases/flask.lua b/src/Data/Bases/flask.lua
index aaf8c91e02..ba62c2c842 100644
--- a/src/Data/Bases/flask.lua
+++ b/src/Data/Bases/flask.lua
@@ -110,6 +110,15 @@ itemBases["Golden Charm"] = {
charm = { duration = 1, chargesUsed = 80, chargesMax = 80, buff = { "15% increased Rarity of Items found" }, },
req = { level = 50, },
}
+itemBases["Cleansing Charm"] = {
+ type = "Charm",
+ quality = 20,
+ tags = { flask = true, utility_flask = true, default = true, },
+ implicit = "Used when you become Cursed",
+ implicitModTypes = { { }, },
+ charm = { duration = 3, chargesUsed = 20, chargesMax = 40, buff = { "" }, },
+ req = { level = 40, },
+}
itemBases["Lesser Life Flask"] = {
type = "Flask",
diff --git a/src/Data/Bases/focus.lua b/src/Data/Bases/focus.lua
index 6dc21c9cc1..22ab0d2808 100644
--- a/src/Data/Bases/focus.lua
+++ b/src/Data/Bases/focus.lua
@@ -6,7 +6,7 @@ local itemBases = ...
itemBases["Twig Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { focus = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 12, },
@@ -15,189 +15,198 @@ itemBases["Twig Focus"] = {
itemBases["Woven Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { focus = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 15, },
- req = { level = 6, int = 13, },
+ req = { level = 6, int = 11, },
}
itemBases["Antler Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { focus = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 17, },
- req = { level = 10, int = 20, },
+ req = { level = 10, int = 17, },
}
itemBases["Engraved Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 21, },
- req = { level = 16, int = 30, },
+ req = { level = 16, int = 25, },
}
itemBases["Tonal Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 25, },
- req = { level = 22, int = 42, },
+ req = { level = 22, int = 33, },
}
itemBases["Crystal Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 28, },
- req = { level = 26, int = 49, },
+ req = { level = 26, int = 38, },
}
itemBases["Voodoo Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { focus = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 32, },
- req = { level = 33, int = 61, },
+ req = { level = 33, int = 48, },
}
itemBases["Plumed Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { focus = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 34, },
- req = { level = 36, int = 66, },
+ req = { level = 36, int = 52, },
}
-itemBases["Jade Focus"] = {
+itemBases["Runed Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
- tags = { int_armour = true, armour = true, focus = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 40, },
- req = { level = 45, int = 83, },
+ req = { level = 46, int = 66, },
}
-itemBases["Paua Focus"] = {
+itemBases["Whorl Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
- tags = { int_armour = true, armour = true, focus = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 43, },
- req = { level = 51, int = 94, },
+ req = { level = 51, int = 73, },
}
itemBases["Elegant Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 44, },
- req = { level = 52, int = 95, },
+ req = { level = 52, int = 74, },
}
itemBases["Attuned Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 47, },
- req = { level = 57, int = 104, },
+ req = { level = 57, int = 81, },
}
itemBases["Magus Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 52, },
- req = { level = 65, int = 118, },
+ req = { level = 65, int = 91, },
}
itemBases["Wreath Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 40, },
- req = { level = 45, int = 83, },
+ req = { level = 45, int = 64, },
}
itemBases["Staghorn Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 42, },
- req = { level = 48, int = 88, },
+ req = { level = 48, int = 69, },
}
itemBases["Jingling Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 43, },
- req = { level = 51, int = 94, },
+ req = { level = 51, int = 73, },
}
itemBases["Arrayed Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 46, },
- req = { level = 55, int = 101, },
+ armour = { EnergyShield = 45, },
+ req = { level = 54, int = 77, },
}
itemBases["Cultist Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 49, },
- req = { level = 59, int = 108, },
+ req = { level = 59, int = 83, },
}
itemBases["Hallowed Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 50, },
- req = { level = 61, int = 112, },
+ req = { level = 61, int = 86, },
}
itemBases["Druidic Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 52, },
- req = { level = 65, int = 118, },
+ req = { level = 65, int = 91, },
}
itemBases["Leyline Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 58, },
- req = { level = 70, int = 129, },
+ req = { level = 70, int = 99, },
}
itemBases["Sacred Focus"] = {
type = "Focus",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, focus = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 63, },
- req = { level = 75, int = 139, },
+ req = { level = 75, int = 107, },
+}
+itemBases["Tasalian Focus"] = {
+ type = "Focus",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, focus = true, int_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { EnergyShield = 68, },
+ req = { level = 80, int = 115, },
}
diff --git a/src/Data/Bases/gloves.lua b/src/Data/Bases/gloves.lua
index c42717f030..f718ffb8cd 100644
--- a/src/Data/Bases/gloves.lua
+++ b/src/Data/Bases/gloves.lua
@@ -7,7 +7,7 @@ itemBases["Stocky Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 15, },
@@ -17,148 +17,158 @@ itemBases["Riveted Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, str_armour = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 31, },
- req = { level = 11, str = 19, },
+ req = { level = 11, str = 16, },
}
itemBases["Tempered Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 40, },
- req = { level = 16, str = 27, },
+ req = { level = 16, str = 22, },
}
itemBases["Bolstered Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 58, },
- req = { level = 27, str = 44, },
+ req = { level = 27, str = 35, },
}
itemBases["Moulded Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, str_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 68, },
- req = { level = 33, str = 53, },
+ req = { level = 33, str = 42, },
}
itemBases["Detailed Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { gloves = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, str_armour = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 88, },
- req = { level = 45, str = 73, },
+ armour = { Armour = 90, },
+ req = { level = 46, str = 57, },
}
itemBases["Titan Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 100, },
- req = { level = 52, str = 83, },
+ req = { level = 52, str = 64, },
}
itemBases["Grand Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 122, },
- req = { level = 65, str = 104, },
+ req = { level = 65, str = 80, },
}
itemBases["Plated Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 88, },
- req = { level = 45, str = 73, },
+ req = { level = 45, str = 56, },
}
itemBases["Elegant Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 98, },
- req = { level = 51, str = 82, },
+ req = { level = 51, str = 64, },
}
itemBases["Ancient Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 105, },
- req = { level = 55, str = 88, },
+ armour = { Armour = 103, },
+ req = { level = 54, str = 67, },
}
itemBases["Feathered Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 111, },
- req = { level = 59, str = 95, },
+ req = { level = 59, str = 73, },
}
itemBases["Knightly Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 122, },
- req = { level = 65, str = 104, },
+ req = { level = 65, str = 80, },
}
itemBases["Ornate Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 134, },
- req = { level = 70, str = 113, },
+ req = { level = 70, str = 87, },
}
itemBases["Vaal Mitts"] = {
type = "Gloves",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 146, },
- req = { level = 75, str = 122, },
+ req = { level = 75, str = 94, },
+}
+itemBases["Massive Mitts"] = {
+ type = "Gloves",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, str_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 158, },
+ req = { level = 80, str = 101, },
}
itemBases["Suede Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 10, },
@@ -168,148 +178,158 @@ itemBases["Firm Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, ezomyte_basetype = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 26, },
- req = { level = 11, dex = 19, },
+ req = { level = 11, dex = 16, },
}
itemBases["Bound Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 33, },
- req = { level = 16, dex = 27, },
+ req = { level = 16, dex = 22, },
}
itemBases["Sectioned Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 52, },
- req = { level = 28, dex = 46, },
+ req = { level = 28, dex = 36, },
}
itemBases["Spined Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, dex_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 60, },
- req = { level = 33, dex = 53, },
+ req = { level = 33, dex = 42, },
}
itemBases["Fine Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { dex_armour = true, armour = true, gloves = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, dex_armour = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 79, },
- req = { level = 45, dex = 73, },
+ armour = { Evasion = 81, },
+ req = { level = 46, dex = 57, },
}
itemBases["Hardened Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 90, },
- req = { level = 52, dex = 83, },
+ req = { level = 52, dex = 64, },
}
itemBases["Engraved Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 111, },
- req = { level = 65, dex = 104, },
+ req = { level = 65, dex = 80, },
}
itemBases["Hunting Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 79, },
- req = { level = 45, dex = 73, },
+ req = { level = 45, dex = 56, },
}
itemBases["Swift Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 89, },
- req = { level = 51, dex = 82, },
+ req = { level = 51, dex = 64, },
}
itemBases["Refined Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 95, },
- req = { level = 55, dex = 88, },
+ armour = { Evasion = 93, },
+ req = { level = 54, dex = 67, },
}
itemBases["Spiked Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 101, },
- req = { level = 59, dex = 95, },
+ req = { level = 59, dex = 73, },
}
itemBases["Stalking Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 111, },
- req = { level = 65, dex = 104, },
+ req = { level = 65, dex = 80, },
}
itemBases["Grand Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 122, },
- req = { level = 70, dex = 113, },
+ req = { level = 70, dex = 87, },
}
itemBases["Barbed Bracers"] = {
type = "Gloves",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 133, },
- req = { level = 75, dex = 122, },
+ req = { level = 75, dex = 94, },
+}
+itemBases["Polished Bracers"] = {
+ type = "Gloves",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, dex_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 144, },
+ req = { level = 80, dex = 101, },
}
itemBases["Torn Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 9, },
@@ -319,269 +339,289 @@ itemBases["Sombre Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, ezomyte_basetype = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 15, },
- req = { level = 12, int = 20, },
+ req = { level = 12, int = 17, },
}
itemBases["Stitched Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 17, },
- req = { level = 16, int = 27, },
+ req = { level = 16, int = 22, },
}
itemBases["Jewelled Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 22, },
- req = { level = 26, int = 43, },
+ req = { level = 26, int = 34, },
}
itemBases["Intricate Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, int_armour = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 26, },
- req = { level = 33, int = 53, },
+ req = { level = 33, int = 42, },
}
itemBases["Pauascale Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { int_armour = true, armour = true, gloves = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, int_armour = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 32, },
- req = { level = 45, int = 73, },
+ req = { level = 46, int = 57, },
}
itemBases["Embroidered Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 35, },
- req = { level = 52, int = 83, },
+ req = { level = 52, int = 64, },
}
itemBases["Adorned Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 42, },
- req = { level = 65, int = 104, },
+ req = { level = 65, int = 80, },
}
itemBases["Ominous Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 32, },
- req = { level = 45, int = 73, },
+ req = { level = 45, int = 56, },
}
-itemBases["Embroidered Gloves"] = {
+itemBases["Embellished Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 35, },
- req = { level = 51, int = 82, },
+ req = { level = 51, int = 64, },
}
itemBases["Baroque Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 37, },
- req = { level = 55, int = 88, },
+ armour = { EnergyShield = 36, },
+ req = { level = 54, int = 67, },
}
itemBases["Gold Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 39, },
- req = { level = 59, int = 95, },
+ req = { level = 59, int = 73, },
}
itemBases["Grim Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 42, },
- req = { level = 65, int = 104, },
+ req = { level = 65, int = 80, },
}
itemBases["Opulent Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 46, },
- req = { level = 70, int = 113, },
+ req = { level = 70, int = 87, },
}
itemBases["Vaal Gloves"] = {
type = "Gloves",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 50, },
- req = { level = 75, int = 122, },
+ req = { level = 75, int = 94, },
+}
+itemBases["Sirenscale Gloves"] = {
+ type = "Gloves",
+ subType = "Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, int_armour = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { EnergyShield = 54, },
+ req = { level = 80, int = 101, },
}
itemBases["Ringmail Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 13, Evasion = 10, },
- req = { level = 6, str = 7, dex = 7, },
+ req = { level = 6, str = 6, dex = 6, },
}
itemBases["Layered Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 22, Evasion = 18, },
- req = { level = 16, str = 15, dex = 15, },
+ req = { level = 16, str = 13, dex = 13, },
}
itemBases["Doubled Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, vaal_basetype = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 37, Evasion = 33, },
- req = { level = 33, str = 30, dex = 30, },
+ req = { level = 33, str = 24, dex = 24, },
}
itemBases["Plate Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
- tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 48, Evasion = 44, },
- req = { level = 45, str = 40, dex = 40, },
+ armour = { Armour = 49, Evasion = 44, },
+ req = { level = 46, str = 32, dex = 32, },
}
itemBases["Burnished Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 55, Evasion = 50, },
- req = { level = 52, str = 46, dex = 46, },
+ req = { level = 52, str = 36, dex = 36, },
}
itemBases["Ornate Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, Evasion = 61, },
- req = { level = 65, str = 57, dex = 57, },
+ req = { level = 65, str = 44, dex = 44, },
}
itemBases["Ironmail Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 48, Evasion = 44, },
- req = { level = 45, str = 40, dex = 40, },
+ req = { level = 45, str = 32, dex = 32, },
}
itemBases["Captain Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 54, Evasion = 49, },
- req = { level = 51, str = 46, dex = 46, },
+ req = { level = 51, str = 35, dex = 35, },
}
itemBases["Zealot Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 61, Evasion = 56, },
- req = { level = 59, str = 52, dex = 52, },
+ req = { level = 59, str = 41, dex = 41, },
}
itemBases["Steelmail Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, Evasion = 61, },
- req = { level = 65, str = 57, dex = 57, },
+ req = { level = 65, str = 44, dex = 44, },
}
itemBases["Commander Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 74, Evasion = 67, },
- req = { level = 70, str = 62, dex = 62, },
+ req = { level = 70, str = 48, dex = 48, },
}
itemBases["Cultist Gauntlets"] = {
type = "Gloves",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 80, Evasion = 73, },
- req = { level = 75, str = 67, dex = 67, },
+ req = { level = 75, str = 52, dex = 52, },
+}
+itemBases["Blacksteel Gauntlets"] = {
+ type = "Gloves",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, armour = true, gloves = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 87, Evasion = 79, },
+ req = { level = 80, str = 55, dex = 55, },
}
itemBases["Rope Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 12, EnergyShield = 6, },
@@ -591,118 +631,128 @@ itemBases["Aged Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 22, EnergyShield = 9, },
- req = { level = 16, str = 15, int = 15, },
+ req = { level = 16, str = 13, int = 13, },
}
itemBases["Goldcast Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, vaal_basetype = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 37, EnergyShield = 14, },
- req = { level = 33, str = 30, int = 30, },
+ req = { level = 33, str = 24, int = 24, },
}
-itemBases["Diviner Cuffs"] = {
+itemBases["Verisium Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 48, EnergyShield = 17, },
- req = { level = 45, str = 40, int = 40, },
+ armour = { Armour = 49, EnergyShield = 18, },
+ req = { level = 46, str = 32, int = 32, },
}
itemBases["Righteous Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 55, EnergyShield = 19, },
- req = { level = 52, str = 46, int = 46, },
+ req = { level = 52, str = 36, int = 36, },
}
itemBases["Signet Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, EnergyShield = 23, },
- req = { level = 65, str = 57, int = 57, },
+ req = { level = 65, str = 44, int = 44, },
}
itemBases["Braided Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 48, EnergyShield = 17, },
- req = { level = 45, str = 40, int = 40, },
+ req = { level = 45, str = 32, int = 32, },
}
itemBases["Heirloom Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 54, EnergyShield = 19, },
- req = { level = 51, str = 46, int = 46, },
+ req = { level = 51, str = 35, int = 35, },
}
itemBases["Ornate Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 61, EnergyShield = 21, },
- req = { level = 59, str = 52, int = 52, },
+ req = { level = 59, str = 41, int = 41, },
}
itemBases["Bound Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 67, EnergyShield = 23, },
- req = { level = 65, str = 57, int = 57, },
+ req = { level = 65, str = 44, int = 44, },
}
itemBases["Ancient Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 74, EnergyShield = 25, },
- req = { level = 70, str = 62, int = 62, },
+ req = { level = 70, str = 48, int = 48, },
}
itemBases["Gleaming Cuffs"] = {
type = "Gloves",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 80, EnergyShield = 28, },
- req = { level = 75, str = 67, int = 67, },
+ req = { level = 75, str = 52, int = 52, },
+}
+itemBases["Adherent Cuffs"] = {
+ type = "Gloves",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, armour = true, gloves = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 87, EnergyShield = 30, },
+ req = { level = 80, str = 55, int = 55, },
}
itemBases["Gauze Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, ezomyte_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 8, EnergyShield = 6, },
@@ -712,122 +762,132 @@ itemBases["Linen Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, gloves = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 18, EnergyShield = 9, },
- req = { level = 16, dex = 15, int = 15, },
+ req = { level = 16, dex = 13, int = 13, },
}
itemBases["Spiral Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { gloves = true, vaal_basetype = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 33, EnergyShield = 14, },
- req = { level = 33, dex = 30, int = 30, },
+ req = { level = 33, dex = 24, int = 24, },
}
itemBases["Buckled Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
- armour = { Evasion = 44, EnergyShield = 17, },
- req = { level = 45, dex = 40, int = 40, },
+ armour = { Evasion = 44, EnergyShield = 18, },
+ req = { level = 46, dex = 32, int = 32, },
}
itemBases["Furtive Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 50, EnergyShield = 19, },
- req = { level = 52, dex = 46, int = 46, },
+ req = { level = 52, dex = 36, int = 36, },
}
itemBases["Utility Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 61, EnergyShield = 23, },
- req = { level = 65, dex = 57, int = 57, },
+ req = { level = 65, dex = 44, int = 44, },
}
itemBases["Bandage Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 44, EnergyShield = 17, },
- req = { level = 45, dex = 40, int = 40, },
+ req = { level = 45, dex = 32, int = 32, },
}
itemBases["Cambric Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 49, EnergyShield = 19, },
- req = { level = 51, dex = 46, int = 46, },
+ req = { level = 51, dex = 35, int = 35, },
}
itemBases["Adorned Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 56, EnergyShield = 21, },
- req = { level = 59, dex = 52, int = 52, },
+ req = { level = 59, dex = 41, int = 41, },
}
itemBases["War Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 61, EnergyShield = 23, },
- req = { level = 65, dex = 57, int = 57, },
+ req = { level = 65, dex = 44, int = 44, },
}
itemBases["Elegant Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 67, EnergyShield = 25, },
- req = { level = 70, dex = 62, int = 62, },
+ req = { level = 70, dex = 48, int = 48, },
}
itemBases["Vaal Wraps"] = {
type = "Gloves",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 73, EnergyShield = 28, },
- req = { level = 75, dex = 67, int = 67, },
+ req = { level = 75, dex = 52, int = 52, },
+}
+itemBases["Secured Wraps"] = {
+ type = "Gloves",
+ subType = "Evasion/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, gloves = true, armour = true, default = true, dex_int_armour = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 79, EnergyShield = 30, },
+ req = { level = 80, dex = 55, int = 55, },
}
itemBases["Grand Manchettes"] = {
type = "Gloves",
subType = "Armour/Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_int_armour = true, armour = true, gloves = true, default = true, },
implicitModTypes = { },
armour = { Armour = 44, Evasion = 40, EnergyShield = 15, },
- req = { level = 65, str = 40, dex = 40, int = 40, },
+ req = { level = 65, str = 32, dex = 32, int = 32, },
}
diff --git a/src/Data/Bases/helmet.lua b/src/Data/Bases/helmet.lua
index b5c8d2d221..c6a62f6038 100644
--- a/src/Data/Bases/helmet.lua
+++ b/src/Data/Bases/helmet.lua
@@ -7,7 +7,7 @@ itemBases["Rusted Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, helmet = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 29, },
@@ -17,188 +17,198 @@ itemBases["Soldier Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, helmet = true, armour = true, ezomyte_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 66, },
- req = { level = 12, str = 23, },
+ req = { level = 12, str = 19, },
}
itemBases["Wrapped Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 79, },
- req = { level = 16, str = 30, },
+ req = { level = 16, str = 25, },
}
itemBases["Spired Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 116, },
- req = { level = 27, str = 50, },
+ req = { level = 27, str = 40, },
}
itemBases["Elite Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 136, },
- req = { level = 33, str = 61, },
+ req = { level = 33, str = 48, },
}
itemBases["Warrior Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 146, },
- req = { level = 36, str = 66, },
+ req = { level = 36, str = 52, },
}
itemBases["Commander Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 176, },
- req = { level = 45, str = 83, },
+ armour = { Armour = 180, },
+ req = { level = 46, str = 66, },
}
itemBases["Fierce Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, str_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 196, },
- req = { level = 51, str = 94, },
+ req = { level = 51, str = 73, },
}
itemBases["Sentinel Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 200, },
- req = { level = 52, str = 95, },
+ req = { level = 52, str = 74, },
}
itemBases["Goliath Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 216, },
- req = { level = 57, str = 104, },
+ req = { level = 57, str = 81, },
}
itemBases["Guardian Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 243, },
- req = { level = 65, str = 118, },
+ req = { level = 65, str = 91, },
}
itemBases["Corroded Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 176, },
- req = { level = 45, str = 83, },
+ req = { level = 45, str = 64, },
}
itemBases["Mercenary Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 186, },
- req = { level = 48, str = 88, },
+ req = { level = 48, str = 69, },
}
itemBases["Homeguard Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 196, },
- req = { level = 51, str = 94, },
+ req = { level = 51, str = 73, },
}
itemBases["Elegant Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 210, },
- req = { level = 55, str = 101, },
+ armour = { Armour = 206, },
+ req = { level = 54, str = 77, },
}
itemBases["Noble Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 223, },
- req = { level = 59, str = 108, },
+ req = { level = 59, str = 83, },
}
itemBases["Warmonger Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 243, },
- req = { level = 65, str = 118, },
+ req = { level = 65, str = 91, },
}
itemBases["Masked Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 267, },
- req = { level = 70, str = 129, },
+ req = { level = 70, str = 99, },
}
itemBases["Paragon Greathelm"] = {
type = "Helmet",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 292, },
- req = { level = 75, str = 139, },
+ req = { level = 75, str = 107, },
+}
+itemBases["Imperial Greathelm"] = {
+ type = "Helmet",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, helmet = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 316, },
+ req = { level = 80, str = 115, },
}
itemBases["Shabby Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 19, },
@@ -208,188 +218,198 @@ itemBases["Felt Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 48, },
- req = { level = 10, dex = 20, },
+ req = { level = 10, dex = 17, },
}
itemBases["Lace Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 67, },
- req = { level = 16, dex = 30, },
+ req = { level = 16, dex = 25, },
}
itemBases["Swathed Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 98, },
- req = { level = 26, dex = 49, },
+ req = { level = 26, dex = 38, },
}
itemBases["Hunter Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 121, },
- req = { level = 33, dex = 61, },
+ req = { level = 33, dex = 48, },
}
itemBases["Viper Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { dex_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 136, },
- req = { level = 38, dex = 70, },
+ req = { level = 38, dex = 54, },
}
itemBases["Corsair Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, dex_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 158, },
- req = { level = 45, dex = 83, },
+ armour = { Evasion = 162, },
+ req = { level = 46, dex = 66, },
}
itemBases["Leatherbound Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, dex_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 177, },
- req = { level = 51, dex = 94, },
+ armour = { Evasion = 174, },
+ req = { level = 50, dex = 71, },
}
itemBases["Velvet Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 181, },
- req = { level = 52, dex = 95, },
+ req = { level = 52, dex = 74, },
}
itemBases["Covert Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 193, },
- req = { level = 56, dex = 102, },
+ req = { level = 56, dex = 79, },
}
itemBases["Armoured Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 222, },
- req = { level = 65, dex = 118, },
+ req = { level = 65, dex = 91, },
}
itemBases["Rotted Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 158, },
- req = { level = 45, dex = 83, },
+ req = { level = 45, dex = 64, },
}
itemBases["Wool Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 168, },
- req = { level = 48, dex = 88, },
+ req = { level = 48, dex = 69, },
}
itemBases["Narrow Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 177, },
- req = { level = 51, dex = 94, },
+ req = { level = 51, dex = 73, },
}
itemBases["Wrapped Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 190, },
- req = { level = 55, dex = 101, },
+ armour = { Evasion = 187, },
+ req = { level = 54, dex = 77, },
}
itemBases["Deerstalker Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 203, },
- req = { level = 59, dex = 108, },
+ req = { level = 59, dex = 83, },
}
itemBases["Woven Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 222, },
- req = { level = 65, dex = 118, },
+ req = { level = 65, dex = 91, },
}
itemBases["Desert Cap"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 244, },
- req = { level = 70, dex = 129, },
+ req = { level = 70, dex = 99, },
}
itemBases["Trapper Hood"] = {
type = "Helmet",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 266, },
- req = { level = 75, dex = 139, },
+ req = { level = 75, dex = 107, },
+}
+itemBases["Freebooter Cap"] = {
+ type = "Helmet",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, dex_armour = true, helmet = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 288, },
+ req = { level = 80, dex = 115, },
}
itemBases["Twig Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 19, },
@@ -399,188 +419,198 @@ itemBases["Wicker Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 28, },
- req = { level = 10, int = 20, },
+ req = { level = 10, int = 17, },
}
itemBases["Beaded Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 34, },
- req = { level = 16, int = 30, },
+ req = { level = 16, int = 25, },
}
itemBases["Chain Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 44, },
- req = { level = 26, int = 49, },
+ req = { level = 26, int = 38, },
}
itemBases["Feathered Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 51, },
- req = { level = 33, int = 61, },
+ req = { level = 33, int = 48, },
}
itemBases["Gold Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { int_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 58, },
- req = { level = 40, int = 74, },
+ req = { level = 40, int = 58, },
}
-itemBases["Coral Circlet"] = {
+itemBases["Vermeil Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, int_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 63, },
- req = { level = 45, int = 83, },
+ armour = { EnergyShield = 64, },
+ req = { level = 46, int = 66, },
}
itemBases["Jade Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, int_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 69, },
- req = { level = 50, int = 92, },
+ req = { level = 50, int = 71, },
}
itemBases["Noble Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 71, },
- req = { level = 52, int = 95, },
+ req = { level = 52, int = 74, },
}
itemBases["Twilight Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 77, },
- req = { level = 58, int = 106, },
+ req = { level = 58, int = 82, },
}
itemBases["Magus Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 84, },
- req = { level = 65, int = 118, },
+ req = { level = 65, int = 91, },
}
itemBases["Druidic Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 63, },
- req = { level = 45, int = 83, },
+ req = { level = 45, int = 64, },
}
itemBases["Avian Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 67, },
- req = { level = 48, int = 88, },
+ req = { level = 48, int = 69, },
}
itemBases["Desert Circlet"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 70, },
- req = { level = 51, int = 94, },
+ req = { level = 51, int = 73, },
}
itemBases["Sandsworn Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
- armour = { EnergyShield = 74, },
- req = { level = 55, int = 101, },
+ armour = { EnergyShield = 73, },
+ req = { level = 54, int = 77, },
}
itemBases["Jungle Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 78, },
- req = { level = 59, int = 108, },
+ req = { level = 59, int = 83, },
}
itemBases["Skycrown Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 84, },
- req = { level = 65, int = 118, },
+ req = { level = 65, int = 91, },
}
itemBases["Sorcerous Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 92, },
- req = { level = 70, int = 129, },
+ req = { level = 70, int = 99, },
}
itemBases["Kamasan Tiara"] = {
type = "Helmet",
subType = "Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, int_armour = true, default = true, },
implicitModTypes = { },
armour = { EnergyShield = 101, },
- req = { level = 75, int = 139, },
+ req = { level = 75, int = 107, },
+}
+itemBases["Ancestral Tiara"] = {
+ type = "Helmet",
+ subType = "Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, int_armour = true, helmet = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { EnergyShield = 109, },
+ req = { level = 80, int = 115, },
}
itemBases["Brimmed Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 23, Evasion = 18, },
@@ -590,158 +620,168 @@ itemBases["Guarded Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 34, Evasion = 28, },
- req = { level = 11, str = 13, dex = 13, },
+ req = { level = 11, str = 11, dex = 11, },
}
itemBases["Visored Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 44, Evasion = 37, },
- req = { level = 16, str = 18, dex = 18, },
+ req = { level = 16, str = 15, dex = 15, },
}
itemBases["Cowled Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 62, Evasion = 54, },
- req = { level = 26, str = 27, dex = 27, },
+ req = { level = 26, str = 22, dex = 22, },
}
itemBases["Shielded Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 75, Evasion = 66, },
- req = { level = 33, str = 34, dex = 34, },
+ req = { level = 33, str = 27, dex = 27, },
}
itemBases["Closed Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 97, Evasion = 87, },
- req = { level = 45, str = 46, dex = 46, },
+ armour = { Armour = 99, Evasion = 89, },
+ req = { level = 46, str = 37, dex = 37, },
}
itemBases["Decorated Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 110, Evasion = 99, },
- req = { level = 52, str = 53, dex = 53, },
+ req = { level = 52, str = 41, dex = 41, },
}
itemBases["Gallant Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 134, Evasion = 122, },
- req = { level = 65, str = 65, dex = 65, },
+ req = { level = 65, str = 50, dex = 50, },
}
itemBases["Domed Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 97, Evasion = 87, },
- req = { level = 45, str = 46, dex = 46, },
+ req = { level = 45, str = 36, dex = 36, },
}
itemBases["Engraved Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 102, Evasion = 92, },
- req = { level = 48, str = 49, dex = 49, },
+ req = { level = 48, str = 38, dex = 38, },
}
itemBases["Soldier Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 108, Evasion = 98, },
- req = { level = 51, str = 52, dex = 52, },
+ req = { level = 51, str = 40, dex = 40, },
}
itemBases["Cabalist Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 115, Evasion = 105, },
- req = { level = 55, str = 55, dex = 55, },
+ armour = { Armour = 113, Evasion = 103, },
+ req = { level = 54, str = 42, dex = 42, },
}
itemBases["Gladiatoral Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 123, Evasion = 111, },
- req = { level = 59, str = 59, dex = 59, },
+ req = { level = 59, str = 46, dex = 46, },
}
itemBases["Warded Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 134, Evasion = 122, },
- req = { level = 65, str = 65, dex = 65, },
+ req = { level = 65, str = 50, dex = 50, },
}
itemBases["Cryptic Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 147, Evasion = 134, },
- req = { level = 70, str = 70, dex = 70, },
+ req = { level = 70, str = 54, dex = 54, },
}
itemBases["Champion Helm"] = {
type = "Helmet",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 160, Evasion = 146, },
- req = { level = 75, str = 76, dex = 76, },
+ req = { level = 75, str = 59, dex = 59, },
+}
+itemBases["Gladiatorial Helm"] = {
+ type = "Helmet",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, helmet = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 174, Evasion = 159, },
+ req = { level = 80, str = 63, dex = 63, },
}
itemBases["Iron Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 23, EnergyShield = 12, },
@@ -751,158 +791,168 @@ itemBases["Horned Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 33, EnergyShield = 15, },
- req = { level = 10, str = 12, int = 12, },
+ req = { level = 10, str = 10, int = 10, },
}
itemBases["Cultist Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 44, EnergyShield = 19, },
- req = { level = 16, str = 18, int = 18, },
+ req = { level = 16, str = 15, int = 15, },
}
itemBases["Martyr Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 66, EnergyShield = 25, },
- req = { level = 28, str = 30, int = 30, },
+ req = { level = 28, str = 23, int = 23, },
}
itemBases["Heavy Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, helmet = true, armour = true, vaal_basetype = true, default = true, },
implicitModTypes = { },
armour = { Armour = 75, EnergyShield = 28, },
- req = { level = 33, str = 34, int = 34, },
+ req = { level = 33, str = 27, int = 27, },
}
itemBases["Spiritbone Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, helmet = true, armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 97, EnergyShield = 35, },
- req = { level = 45, str = 46, int = 46, },
+ armour = { Armour = 99, EnergyShield = 35, },
+ req = { level = 46, str = 37, int = 37, },
}
itemBases["Lavish Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 110, EnergyShield = 39, },
- req = { level = 52, str = 53, int = 53, },
+ req = { level = 52, str = 41, int = 41, },
}
itemBases["Archon Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 134, EnergyShield = 46, },
- req = { level = 65, str = 65, int = 65, },
+ req = { level = 65, str = 50, int = 50, },
}
itemBases["Mailed Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 97, EnergyShield = 35, },
- req = { level = 45, str = 46, int = 46, },
+ req = { level = 45, str = 36, int = 36, },
}
itemBases["Forest Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 102, EnergyShield = 37, },
- req = { level = 48, str = 49, int = 49, },
+ req = { level = 48, str = 38, int = 38, },
}
itemBases["Zealot Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 108, EnergyShield = 38, },
- req = { level = 51, str = 52, int = 52, },
+ req = { level = 51, str = 40, int = 40, },
}
itemBases["Hallowed Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
- armour = { Armour = 115, EnergyShield = 41, },
- req = { level = 55, str = 55, int = 55, },
+ armour = { Armour = 113, EnergyShield = 40, },
+ req = { level = 54, str = 42, int = 42, },
}
itemBases["Inquisitor Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 123, EnergyShield = 43, },
- req = { level = 59, str = 59, int = 59, },
+ req = { level = 59, str = 46, int = 46, },
}
itemBases["Druidic Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 134, EnergyShield = 46, },
- req = { level = 65, str = 65, int = 65, },
+ req = { level = 65, str = 50, int = 50, },
}
itemBases["Saintly Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 147, EnergyShield = 51, },
- req = { level = 70, str = 70, int = 70, },
+ req = { level = 70, str = 54, int = 54, },
}
itemBases["Divine Crown"] = {
type = "Helmet",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 160, EnergyShield = 55, },
- req = { level = 75, str = 76, int = 76, },
+ req = { level = 75, str = 59, int = 59, },
+}
+itemBases["Cryptic Crown"] = {
+ type = "Helmet",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, helmet = true, armour = true, default = true, },
+ implicitModTypes = { },
+ armour = { Armour = 174, EnergyShield = 60, },
+ req = { level = 80, str = 63, int = 63, },
}
itemBases["Hewn Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 18, EnergyShield = 12, },
@@ -912,168 +962,178 @@ itemBases["Face Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { ezomyte_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 26, EnergyShield = 15, },
- req = { level = 10, dex = 12, int = 12, },
+ req = { level = 10, dex = 10, int = 10, },
}
itemBases["Hooded Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 37, EnergyShield = 19, },
- req = { level = 16, dex = 18, int = 18, },
+ req = { level = 16, dex = 15, int = 15, },
}
itemBases["Veiled Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 58, EnergyShield = 25, },
- req = { level = 28, dex = 30, int = 30, },
+ req = { level = 28, dex = 23, int = 23, },
}
itemBases["Tribal Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { vaal_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
armour = { Evasion = 66, EnergyShield = 28, },
- req = { level = 33, dex = 34, int = 34, },
+ req = { level = 33, dex = 27, int = 27, },
}
itemBases["Solid Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
implicitModTypes = { },
- armour = { Evasion = 87, EnergyShield = 35, },
- req = { level = 45, dex = 46, int = 46, },
+ armour = { Evasion = 89, EnergyShield = 35, },
+ req = { level = 46, dex = 37, int = 37, },
}
itemBases["Shaded Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 99, EnergyShield = 39, },
- req = { level = 52, dex = 53, int = 53, },
+ req = { level = 52, dex = 41, int = 41, },
}
itemBases["Death Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 122, EnergyShield = 46, },
- req = { level = 65, dex = 65, int = 65, },
+ req = { level = 65, dex = 50, int = 50, },
}
itemBases["Oak Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 87, EnergyShield = 35, },
- req = { level = 45, dex = 46, int = 46, },
+ req = { level = 45, dex = 36, int = 36, },
}
itemBases["Bandit Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 92, EnergyShield = 37, },
- req = { level = 48, dex = 49, int = 49, },
+ req = { level = 48, dex = 38, int = 38, },
}
itemBases["Skulking Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 98, EnergyShield = 38, },
- req = { level = 51, dex = 52, int = 52, },
+ req = { level = 51, dex = 40, int = 40, },
}
itemBases["Pariah Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
- armour = { Evasion = 105, EnergyShield = 41, },
- req = { level = 55, dex = 55, int = 55, },
+ armour = { Evasion = 103, EnergyShield = 40, },
+ req = { level = 54, dex = 42, int = 42, },
}
itemBases["Avian Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 111, EnergyShield = 43, },
- req = { level = 59, dex = 59, int = 59, },
+ req = { level = 59, dex = 46, int = 46, },
}
itemBases["Brigand Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 122, EnergyShield = 46, },
- req = { level = 65, dex = 65, int = 65, },
+ req = { level = 65, dex = 50, int = 50, },
}
itemBases["Faridun Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 134, EnergyShield = 51, },
- req = { level = 70, dex = 70, int = 70, },
+ req = { level = 70, dex = 54, int = 54, },
}
itemBases["Soaring Mask"] = {
type = "Helmet",
subType = "Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Evasion = 146, EnergyShield = 55, },
- req = { level = 75, dex = 76, int = 76, },
+ req = { level = 75, dex = 59, int = 59, },
+}
+itemBases["Grinning Mask"] = {
+ type = "Helmet",
+ subType = "Evasion/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, helmet = true, armour = true, default = true, dex_int_armour = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 159, EnergyShield = 60, },
+ req = { level = 80, dex = 63, int = 63, },
}
itemBases["Grand Visage"] = {
type = "Helmet",
subType = "Armour/Evasion/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { helmet = true, armour = true, str_dex_int_armour = true, default = true, },
implicitModTypes = { },
armour = { Armour = 88, Evasion = 80, EnergyShield = 30, },
- req = { level = 65, str = 46, dex = 46, int = 46, },
+ req = { level = 65, str = 36, dex = 36, int = 36, },
}
itemBases["Golden Wreath"] = {
type = "Helmet",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { not_for_sale = true, helmet = true, armour = true, demigods = true, default = true, },
implicit = "+(16-24) to all Attributes",
implicitModTypes = { { "attribute" }, },
@@ -1083,7 +1143,7 @@ itemBases["Golden Wreath"] = {
itemBases["Golden Visage"] = {
type = "Helmet",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { not_for_sale = true, helmet = true, armour = true, demigods = true, default = true, },
implicit = "+(8-16)% to all Elemental Resistances",
implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, },
diff --git a/src/Data/Bases/mace.lua b/src/Data/Bases/mace.lua
index e06c2cc8cd..132ee5370d 100644
--- a/src/Data/Bases/mace.lua
+++ b/src/Data/Bases/mace.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Wooden Club"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
@@ -14,231 +14,251 @@ itemBases["Wooden Club"] = {
itemBases["Smithing Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 4, PhysicalMax = 7, FireMin = 4, FireMax = 7, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ weapon = { PhysicalMin = 5, PhysicalMax = 9, FireMin = 5, FireMax = 9, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
req = { str = 11, },
}
itemBases["Slim Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 11, PhysicalMax = 17, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 10, str = 25, },
+ req = { level = 10, str = 21, },
}
itemBases["Spiked Club"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 15, PhysicalMax = 24, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 16, str = 38, },
+ req = { level = 16, str = 31, },
}
itemBases["Warpick"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "+(10-15)% to Critical Damage Bonus",
+ implicit = "+(5-10)% to Critical Damage Bonus",
implicitModTypes = { { "damage", "attack", "critical" }, },
weapon = { PhysicalMin = 18, PhysicalMax = 24, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, },
- req = { level = 22, str = 52, },
+ req = { level = 22, str = 41, },
}
itemBases["Plated Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 26, str = 61, },
+ req = { level = 26, str = 48, },
}
itemBases["Brigand Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 28, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 33, str = 76, },
+ req = { level = 33, str = 60, },
}
itemBases["Construct Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "Causes Daze buildup equal to 100% of Damage dealt",
+ implicit = "40% chance to Daze on Hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 31, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 36, str = 83, },
+ req = { level = 36, str = 65, },
}
itemBases["Morning Star"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
- tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 6.5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 45, str = 104, },
+ weapon = { PhysicalMin = 33, PhysicalMax = 50, CritChanceBase = 6.5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 46, str = 82, },
}
itemBases["Jade Club"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
- tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "Always Hits",
implicitModTypes = { { "attack" }, },
- weapon = { PhysicalMin = 30, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 48, str = 110, },
+ weapon = { PhysicalMin = 31, PhysicalMax = 51, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 49, str = 87, },
}
itemBases["Lumen Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 52, str = 119, },
+ req = { level = 52, str = 92, },
}
itemBases["Execratus Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 40, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 55, str = 126, },
+ req = { level = 55, str = 97, },
}
itemBases["Torment Club"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 65, str = 148, },
+ req = { level = 65, str = 114, },
+}
+itemBases["Kalguuran Forgehammer"] = {
+ type = "One Handed Mace",
+ quality = 20,
+ socketLimit = 3,
+ tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
+ implicit = "Has 3 Sockets",
+ implicitModTypes = { { }, },
+ weapon = { PhysicalMin = 30, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 47, },
}
itemBases["Calescent Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 19, PhysicalMax = 32, FireMin = 19, FireMax = 32, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 45, str = 104, },
+ weapon = { PhysicalMin = 22, PhysicalMax = 37, FireMin = 22, FireMax = 37, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 45, str = 80, },
}
itemBases["Flared Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 33, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 48, str = 110, },
+ req = { level = 48, str = 86, },
}
itemBases["Battle Pick"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "+(10-15)% to Critical Damage Bonus",
+ implicit = "+(5-10)% to Critical Damage Bonus",
implicitModTypes = { { "damage", "attack", "critical" }, },
weapon = { PhysicalMin = 35, PhysicalMax = 47, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, },
- req = { level = 51, str = 117, },
+ req = { level = 51, str = 91, },
}
itemBases["Marching Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 34, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 55, str = 126, },
+ weapon = { PhysicalMin = 33, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
+ req = { level = 54, str = 96, },
}
itemBases["Bandit Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 61, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 59, str = 135, },
+ req = { level = 59, str = 104, },
}
itemBases["Structured Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "Causes Daze buildup equal to 100% of Damage dealt",
+ implicit = "40% chance to Daze on Hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 49, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 62, str = 142, },
+ req = { level = 62, str = 109, },
}
itemBases["Flanged Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 67, str = 174, },
+ req = { level = 67, str = 134, },
}
itemBases["Crown Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 43, PhysicalMax = 89, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 72, str = 193, },
+ req = { level = 72, str = 149, },
}
itemBases["Molten Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 30, PhysicalMax = 50, FireMin = 30, FireMax = 50, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 77, str = 212, },
+ weapon = { PhysicalMin = 35, PhysicalMax = 59, FireMin = 35, FireMax = 59, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 77, str = 163, },
}
itemBases["Strife Pick"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "+(10-15)% to Critical Damage Bonus",
+ implicit = "+(5-10)% to Critical Damage Bonus",
implicitModTypes = { { "damage", "attack", "critical" }, },
weapon = { PhysicalMin = 49, PhysicalMax = 66, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, },
- req = { level = 78, str = 212, },
+ req = { level = 78, str = 163, },
}
itemBases["Fortified Hammer"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
- implicit = "Causes Daze buildup equal to 100% of Damage dealt",
+ implicit = "40% chance to Daze on Hit",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 60, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, },
- req = { level = 79, str = 212, },
+ req = { level = 79, str = 163, },
}
itemBases["Marauding Mace"] = {
type = "One Handed Mace",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 51, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
- req = { level = 77, str = 212, },
+ req = { level = 77, str = 163, },
+}
+itemBases["Akoyan Club"] = {
+ type = "One Handed Mace",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, mace = true, weapon = true, one_hand_weapon = true, default = true, },
+ implicit = "Always Hits",
+ implicitModTypes = { { "attack" }, },
+ weapon = { PhysicalMin = 46, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, },
+ req = { level = 78, str = 163, },
}
itemBases["Felled Greatclub"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 13, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
@@ -247,7 +267,7 @@ itemBases["Felled Greatclub"] = {
itemBases["Oak Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes (30-50)% increased Stun Buildup",
implicitModTypes = { { }, },
@@ -257,216 +277,226 @@ itemBases["Oak Greathammer"] = {
itemBases["Forge Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 29, PhysicalMax = 39, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 11, str = 27, },
+ req = { level = 11, str = 23, },
}
itemBases["Studded Greatclub"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 32, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 16, str = 38, },
+ req = { level = 16, str = 31, },
}
itemBases["Cultist Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Strikes deal Splash damage to targets within 1.5 metres",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 32, PhysicalMax = 43, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 22, str = 52, },
+ req = { level = 22, str = 41, },
}
itemBases["Temple Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 28, str = 65, },
+ req = { level = 28, str = 52, },
}
itemBases["Leaden Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 58, PhysicalMax = 78, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 33, str = 76, },
+ req = { level = 33, str = 60, },
}
itemBases["Crumbling Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 62, PhysicalMax = 75, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 38, str = 88, },
+ req = { level = 38, str = 68, },
}
itemBases["Pointed Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 68, PhysicalMax = 102, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 45, str = 104, },
+ weapon = { PhysicalMin = 69, PhysicalMax = 104, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 13, },
+ req = { level = 46, str = 82, },
}
itemBases["Totemic Greatclub"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Crushes Enemies on Hit",
implicitModTypes = { { "physical" }, },
weapon = { PhysicalMin = 73, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 50, str = 115, },
+ req = { level = 50, str = 89, },
}
itemBases["Greatmace"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 74, PhysicalMax = 124, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 52, str = 119, },
+ req = { level = 52, str = 92, },
}
itemBases["Precise Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 87, PhysicalMax = 118, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 54, str = 124, },
+ req = { level = 54, str = 96, },
}
itemBases["Giant Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 96, PhysicalMax = 144, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 65, str = 148, },
+ req = { level = 65, str = 114, },
}
itemBases["Snakewood Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes (30-50)% increased Stun Buildup",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 59, PhysicalMax = 109, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 45, str = 104, },
+ req = { level = 45, str = 80, },
}
itemBases["Blacksmith Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 84, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 48, str = 110, },
+ req = { level = 48, str = 86, },
}
itemBases["Zealot Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Strikes deal Splash damage to targets within 1.5 metres",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 62, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 51, str = 117, },
+ req = { level = 51, str = 91, },
}
itemBases["Solemn Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 60, PhysicalMax = 125, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 55, str = 126, },
+ weapon = { PhysicalMin = 59, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
+ req = { level = 54, str = 96, },
}
itemBases["Heavy Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 94, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 59, str = 135, },
+ req = { level = 59, str = 104, },
}
itemBases["Disintegrating Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 93, PhysicalMax = 114, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 62, str = 142, },
+ req = { level = 62, str = 109, },
}
itemBases["Anvil Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 112, PhysicalMax = 151, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 67, str = 174, },
+ req = { level = 67, str = 134, },
}
itemBases["Sacred Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 76, PhysicalMax = 158, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
- req = { level = 72, str = 193, },
+ req = { level = 72, str = 149, },
}
itemBases["Ironwood Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes (30-50)% increased Stun Buildup",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 94, PhysicalMax = 174, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 77, str = 212, },
+ req = { level = 77, str = 163, },
}
itemBases["Fanatic Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Strikes deal Splash damage to targets within 1.5 metres",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 89, PhysicalMax = 120, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, },
- req = { level = 78, str = 212, },
+ req = { level = 78, str = 163, },
}
itemBases["Ruination Maul"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 113, PhysicalMax = 138, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 79, str = 212, },
+ req = { level = 79, str = 163, },
}
itemBases["Massive Greathammer"] = {
type = "Two Handed Mace",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, mace = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 119, PhysicalMax = 161, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
- req = { level = 77, str = 212, },
+ req = { level = 77, str = 163, },
+}
+itemBases["Tawhoan Greatclub"] = {
+ type = "Two Handed Mace",
+ quality = 20,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, karui_basetype = true, mace = true, weapon = true, twohand = true, default = true, },
+ implicit = "Crushes Enemies on Hit",
+ implicitModTypes = { { "physical" }, },
+ weapon = { PhysicalMin = 107, PhysicalMax = 145, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, },
+ req = { level = 78, str = 163, },
}
diff --git a/src/Data/Bases/quiver.lua b/src/Data/Bases/quiver.lua
index 9ca56e31f5..d8047c155a 100644
--- a/src/Data/Bases/quiver.lua
+++ b/src/Data/Bases/quiver.lua
@@ -33,21 +33,21 @@ itemBases["Two-Point Quiver"] = {
itemBases["Blunt Quiver"] = {
type = "Quiver",
tags = { quiver = true, default = true, },
- implicit = "(20-30)% reduced Enemy Stun Threshold",
+ implicit = "(25-40)% increased Stun Buildup",
implicitModTypes = { { }, },
req = { level = 32, },
}
itemBases["Toxic Quiver"] = {
type = "Quiver",
tags = { quiver = true, default = true, },
- implicit = "(10-15)% chance to Poison on Hit with Attacks",
+ implicit = "(20-30)% chance to Poison on Hit with Attacks",
implicitModTypes = { { "poison", "chaos", "attack", "ailment" }, },
req = { level = 39, },
}
itemBases["Serrated Quiver"] = {
type = "Quiver",
tags = { quiver = true, default = true, },
- implicit = "Attacks have (10-15)% chance to cause Bleeding",
+ implicit = "Attacks have (20-30)% chance to cause Bleeding",
implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, },
req = { level = 44, },
}
diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua
index 9640da3e2b..aaa3e7267f 100644
--- a/src/Data/Bases/ring.lua
+++ b/src/Data/Bases/ring.lua
@@ -86,6 +86,13 @@ itemBases["Unset Ring"] = {
implicitModTypes = { { }, },
req = { level = 44, },
}
+itemBases["Abyssal Signet"] = {
+ type = "Ring",
+ tags = { ring = true, default = true, },
+ implicit = "Inflict Abyssal Wasting on Hit",
+ implicitModTypes = { { }, },
+ req = { },
+}
itemBases["Ring"] = {
type = "Ring",
tags = { ring = true, default = true, },
diff --git a/src/Data/Bases/sceptre.lua b/src/Data/Bases/sceptre.lua
index 2e1c7118ef..d10258c1c0 100644
--- a/src/Data/Bases/sceptre.lua
+++ b/src/Data/Bases/sceptre.lua
@@ -6,7 +6,7 @@ itemBases["Rattling Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -16,7 +16,7 @@ itemBases["Stoic Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Discipline",
implicitModTypes = { },
@@ -26,7 +26,7 @@ itemBases["Lupine Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -36,7 +36,7 @@ itemBases["Omen Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Malice",
implicitModTypes = { },
@@ -46,7 +46,7 @@ itemBases["Ochre Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -56,7 +56,7 @@ itemBases["Shrine Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Fire",
implicitModTypes = { },
@@ -66,7 +66,7 @@ itemBases["Shrine Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Ice",
implicitModTypes = { },
@@ -76,7 +76,7 @@ itemBases["Shrine Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Lightning",
implicitModTypes = { },
@@ -86,7 +86,7 @@ itemBases["Devouring Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -96,9 +96,9 @@ itemBases["Clasped Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
- implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
+ implicit = "Grants Skill: Level (1-20) Heart of Ice",
implicitModTypes = { },
req = { },
}
@@ -106,7 +106,7 @@ itemBases["Devotional Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -116,9 +116,9 @@ itemBases["Wrath Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
- implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
+ implicit = "Grants Skill: Level (1-20) Fulmination",
implicitModTypes = { },
req = { },
}
@@ -126,7 +126,7 @@ itemBases["Aromatic Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -136,7 +136,7 @@ itemBases["Pious Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -146,7 +146,7 @@ itemBases["Hallowed Sceptre"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion",
implicitModTypes = { },
@@ -158,7 +158,7 @@ itemBases["Shrine Sceptre"] = {
quality = 20,
spirit = 100,
hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Fire",
implicitModTypes = { },
@@ -169,7 +169,7 @@ itemBases["Shrine Sceptre"] = {
quality = 20,
spirit = 100,
hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Ice",
implicitModTypes = { },
@@ -180,7 +180,7 @@ itemBases["Shrine Sceptre"] = {
quality = 20,
spirit = 100,
hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Lightning",
implicitModTypes = { },
@@ -191,7 +191,7 @@ itemBases["Shrine Sceptre (Purity of Fire)"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Fire",
implicitModTypes = { },
@@ -201,7 +201,7 @@ itemBases["Shrine Sceptre (Purity of Cold)"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Ice",
implicitModTypes = { },
@@ -211,7 +211,7 @@ itemBases["Shrine Sceptre (Purity of Lighting)"] = {
type = "Sceptre",
quality = 20,
spirit = 100,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, sceptre = true, },
implicit = "Grants Skill: Level (1-20) Purity of Lightning",
implicitModTypes = { },
diff --git a/src/Data/Bases/shield.lua b/src/Data/Bases/shield.lua
index b96a46a64f..81c047366a 100644
--- a/src/Data/Bases/shield.lua
+++ b/src/Data/Bases/shield.lua
@@ -7,7 +7,7 @@ itemBases["Splintered Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, ezomyte_basetype = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
@@ -18,338 +18,358 @@ itemBases["Painted Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, ezomyte_basetype = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 29, MovementPenalty = 0.03, },
- req = { level = 6, str = 13, },
+ req = { level = 6, str = 11, },
}
itemBases["Braced Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, ezomyte_basetype = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 41, MovementPenalty = 0.03, },
- req = { level = 12, str = 23, },
+ req = { level = 12, str = 19, },
}
itemBases["Barricade Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 50, MovementPenalty = 0.03, },
- req = { level = 16, str = 30, },
+ req = { level = 16, str = 25, },
}
itemBases["Effigial Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 60, MovementPenalty = 0.03, },
- req = { level = 21, str = 40, },
+ req = { level = 21, str = 32, },
}
itemBases["Rampart Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 75, MovementPenalty = 0.03, },
- req = { level = 28, str = 52, },
+ req = { level = 28, str = 42, },
}
itemBases["Heraldric Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, vaal_basetype = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 85, MovementPenalty = 0.03, },
- req = { level = 33, str = 61, },
+ req = { level = 33, str = 48, },
}
itemBases["Stone Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, vaal_basetype = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 91, MovementPenalty = 0.03, },
- req = { level = 36, str = 66, },
+ req = { level = 36, str = 52, },
}
itemBases["Crucible Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 26, Armour = 110, MovementPenalty = 0.03, },
- req = { level = 45, str = 83, },
+ armour = { BlockChance = 26, Armour = 112, MovementPenalty = 0.03, },
+ req = { level = 46, str = 66, },
}
itemBases["Ancestor Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
- tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 121, MovementPenalty = 0.03, },
- req = { level = 50, str = 92, },
+ req = { level = 50, str = 71, },
}
itemBases["Phalanx Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 125, MovementPenalty = 0.03, },
- req = { level = 52, str = 95, },
+ req = { level = 52, str = 74, },
}
itemBases["Defiant Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 137, MovementPenalty = 0.03, },
- req = { level = 58, str = 106, },
+ req = { level = 58, str = 82, },
}
itemBases["Blacksteel Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 152, MovementPenalty = 0.03, },
- req = { level = 65, str = 118, },
+ req = { level = 65, str = 91, },
}
itemBases["Aged Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 110, MovementPenalty = 0.03, },
- req = { level = 45, str = 83, },
+ req = { level = 45, str = 64, },
}
itemBases["Metalworked Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 116, MovementPenalty = 0.03, },
- req = { level = 48, str = 88, },
+ req = { level = 48, str = 69, },
}
itemBases["Cultist Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 123, MovementPenalty = 0.03, },
- req = { level = 51, str = 94, },
+ req = { level = 51, str = 73, },
}
itemBases["Bulwark Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 26, Armour = 131, MovementPenalty = 0.03, },
- req = { level = 55, str = 101, },
+ armour = { BlockChance = 26, Armour = 129, MovementPenalty = 0.03, },
+ req = { level = 54, str = 77, },
}
itemBases["Noble Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 139, MovementPenalty = 0.03, },
- req = { level = 59, str = 108, },
+ req = { level = 59, str = 83, },
}
itemBases["Goldworked Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 144, MovementPenalty = 0.03, },
- req = { level = 61, str = 112, },
+ req = { level = 61, str = 86, },
}
itemBases["Royal Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 152, MovementPenalty = 0.03, },
- req = { level = 65, str = 118, },
+ req = { level = 65, str = 91, },
}
itemBases["Fortress Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 167, MovementPenalty = 0.03, },
- req = { level = 70, str = 129, },
+ req = { level = 70, str = 99, },
}
itemBases["Vaal Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 182, MovementPenalty = 0.03, },
- req = { level = 75, str = 139, },
+ req = { level = 75, str = 107, },
+}
+itemBases["Tawhoan Tower Shield"] = {
+ type = "Shield",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 197, MovementPenalty = 0.03, },
+ req = { level = 80, str = 115, },
}
itemBases["Aged Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 110, MovementPenalty = 0.03, },
- req = { level = 45, str = 83, },
+ req = { level = 45, str = 64, },
}
itemBases["Metalworked Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 116, MovementPenalty = 0.03, },
- req = { level = 48, str = 88, },
+ req = { level = 48, str = 69, },
}
itemBases["Cultist Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 123, MovementPenalty = 0.03, },
- req = { level = 51, str = 94, },
+ req = { level = 51, str = 73, },
}
itemBases["Bulwark Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 26, Armour = 131, MovementPenalty = 0.03, },
- req = { level = 55, str = 101, },
+ armour = { BlockChance = 26, Armour = 129, MovementPenalty = 0.03, },
+ req = { level = 54, str = 77, },
}
itemBases["Noble Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 139, MovementPenalty = 0.03, },
- req = { level = 59, str = 108, },
+ req = { level = 59, str = 83, },
}
itemBases["Goldworked Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 144, MovementPenalty = 0.03, },
- req = { level = 61, str = 112, },
+ req = { level = 61, str = 86, },
}
itemBases["Royal Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 152, MovementPenalty = 0.03, },
- req = { level = 65, str = 118, },
+ req = { level = 65, str = 91, },
}
itemBases["Fortress Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 167, MovementPenalty = 0.03, },
- req = { level = 70, str = 129, },
+ req = { level = 70, str = 99, },
}
itemBases["Vaal Tower Shield"] = {
type = "Shield",
subType = "Armour",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 26, Armour = 182, MovementPenalty = 0.03, },
- req = { level = 75, str = 139, },
+ req = { level = 75, str = 107, },
+}
+itemBases["Tawhoan Tower Shield"] = {
+ type = "Shield",
+ subType = "Armour",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_armour = true, str_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 197, MovementPenalty = 0.03, },
+ req = { level = 80, str = 115, },
}
itemBases["Leather Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, ezomyte_basetype = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
@@ -360,338 +380,358 @@ itemBases["Wooden Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, ezomyte_basetype = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 16, },
- req = { level = 5, dex = 11, },
+ req = { level = 5, dex = 10, },
}
itemBases["Plated Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, ezomyte_basetype = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 26, },
- req = { level = 11, dex = 22, },
+ req = { level = 11, dex = 18, },
}
itemBases["Iron Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 33, },
- req = { level = 16, dex = 30, },
+ req = { level = 16, dex = 25, },
}
itemBases["Ridged Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 43, },
- req = { level = 22, dex = 42, },
+ req = { level = 22, dex = 33, },
}
itemBases["Spiked Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 49, },
- req = { level = 26, dex = 49, },
+ req = { level = 26, dex = 38, },
}
itemBases["Ringed Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, vaal_basetype = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 60, },
- req = { level = 33, dex = 61, },
+ req = { level = 33, dex = 48, },
}
itemBases["Edged Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, vaal_basetype = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 70, },
- req = { level = 39, dex = 72, },
+ req = { level = 39, dex = 56, },
}
itemBases["Laminate Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
- armour = { BlockChance = 20, Evasion = 79, },
- req = { level = 45, dex = 83, },
+ armour = { BlockChance = 20, Evasion = 81, },
+ req = { level = 46, dex = 66, },
}
itemBases["Pearl Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
- tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
- armour = { BlockChance = 20, Evasion = 84, },
- req = { level = 48, dex = 88, },
+ armour = { BlockChance = 20, Evasion = 87, },
+ req = { level = 50, dex = 71, },
}
itemBases["Ornate Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 90, },
- req = { level = 52, dex = 95, },
+ req = { level = 52, dex = 74, },
}
itemBases["Array Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 95, },
- req = { level = 55, dex = 101, },
+ req = { level = 55, dex = 78, },
}
itemBases["Aegis Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 111, },
- req = { level = 65, dex = 118, },
+ req = { level = 65, dex = 91, },
}
itemBases["Oak Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 79, },
- req = { level = 45, dex = 83, },
+ req = { level = 45, dex = 64, },
}
itemBases["Painted Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 84, },
- req = { level = 48, dex = 88, },
+ req = { level = 48, dex = 69, },
}
itemBases["Coiled Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 89, },
- req = { level = 51, dex = 94, },
+ req = { level = 51, dex = 73, },
}
itemBases["Spikeward Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
- armour = { BlockChance = 20, Evasion = 95, },
- req = { level = 55, dex = 101, },
+ armour = { BlockChance = 20, Evasion = 93, },
+ req = { level = 54, dex = 77, },
}
itemBases["Jingling Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 101, },
- req = { level = 59, dex = 108, },
+ req = { level = 59, dex = 83, },
}
itemBases["Bladeguard Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 105, },
- req = { level = 61, dex = 112, },
+ req = { level = 61, dex = 86, },
}
itemBases["Ornate Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 111, },
- req = { level = 65, dex = 118, },
+ req = { level = 65, dex = 91, },
}
itemBases["Gutspike Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 122, },
- req = { level = 70, dex = 129, },
+ req = { level = 70, dex = 99, },
}
itemBases["Ancient Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 133, },
- req = { level = 75, dex = 139, },
+ req = { level = 75, dex = 107, },
+}
+itemBases["Desert Buckler"] = {
+ type = "Shield",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 144, },
+ req = { level = 80, dex = 115, },
}
itemBases["Oak Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 79, },
- req = { level = 45, dex = 83, },
+ req = { level = 45, dex = 64, },
}
itemBases["Painted Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 84, },
- req = { level = 48, dex = 88, },
+ req = { level = 48, dex = 69, },
}
itemBases["Coiled Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 89, },
- req = { level = 51, dex = 94, },
+ req = { level = 51, dex = 73, },
}
itemBases["Spikeward Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
- armour = { BlockChance = 20, Evasion = 95, },
- req = { level = 55, dex = 101, },
+ armour = { BlockChance = 20, Evasion = 93, },
+ req = { level = 54, dex = 77, },
}
itemBases["Jingling Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 101, },
- req = { level = 59, dex = 108, },
+ req = { level = 59, dex = 83, },
}
itemBases["Bladeguard Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 105, },
- req = { level = 61, dex = 112, },
+ req = { level = 61, dex = 86, },
}
itemBases["Ornate Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 111, },
- req = { level = 65, dex = 118, },
+ req = { level = 65, dex = 91, },
}
itemBases["Gutspike Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 122, },
- req = { level = 70, dex = 129, },
+ req = { level = 70, dex = 99, },
}
itemBases["Ancient Buckler"] = {
type = "Shield",
subType = "Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Parry",
implicitModTypes = { },
armour = { BlockChance = 20, Evasion = 133, },
- req = { level = 75, dex = 139, },
+ req = { level = 75, dex = 107, },
+}
+itemBases["Desert Buckler"] = {
+ type = "Shield",
+ subType = "Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, buckler = true, dex_shield = true, dex_armour = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Evasion = 144, },
+ req = { level = 80, dex = 115, },
}
itemBases["Hardwood Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
@@ -702,316 +742,336 @@ itemBases["Pelage Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, ezomyte_basetype = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 18, Evasion = 14, MovementPenalty = 0.015, },
- req = { level = 8, str = 10, dex = 10, },
+ req = { level = 8, str = 9, dex = 9, },
}
itemBases["Studded Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 27, Evasion = 23, MovementPenalty = 0.015, },
- req = { level = 16, str = 18, dex = 18, },
+ req = { level = 16, str = 15, dex = 15, },
}
itemBases["Crescent Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 39, Evasion = 34, MovementPenalty = 0.015, },
- req = { level = 26, str = 27, dex = 27, },
+ req = { level = 26, str = 22, dex = 22, },
}
itemBases["Chiseled Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, vaal_basetype = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 47, Evasion = 41, MovementPenalty = 0.015, },
- req = { level = 33, str = 34, dex = 34, },
+ req = { level = 33, str = 27, dex = 27, },
}
itemBases["Feathered Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, vaal_basetype = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 51, Evasion = 46, MovementPenalty = 0.015, },
- req = { level = 37, str = 38, dex = 38, },
+ req = { level = 37, str = 30, dex = 30, },
}
itemBases["Stratified Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 61, Evasion = 54, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, dex = 46, },
+ armour = { BlockChance = 25, Armour = 62, Evasion = 56, MovementPenalty = 0.015, },
+ req = { level = 46, str = 37, dex = 37, },
}
itemBases["Carved Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 63, Evasion = 57, MovementPenalty = 0.015, },
- req = { level = 47, str = 48, dex = 48, },
+ armour = { BlockChance = 25, Armour = 67, Evasion = 61, MovementPenalty = 0.015, },
+ req = { level = 51, str = 40, dex = 40, },
}
itemBases["Mosaic Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
- tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 69, Evasion = 62, MovementPenalty = 0.015, },
- req = { level = 52, str = 53, dex = 53, },
+ req = { level = 52, str = 41, dex = 41, },
}
itemBases["Aureate Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
- tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 74, Evasion = 68, MovementPenalty = 0.015, },
- req = { level = 57, str = 58, dex = 58, },
+ req = { level = 57, str = 45, dex = 45, },
}
itemBases["Grand Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, Evasion = 76, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, dex = 65, },
+ req = { level = 65, str = 50, dex = 50, },
}
itemBases["Ironwood Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 61, Evasion = 54, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, dex = 46, },
+ req = { level = 45, str = 36, dex = 36, },
}
itemBases["Fur-lined Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 64, Evasion = 58, MovementPenalty = 0.015, },
- req = { level = 48, str = 49, dex = 49, },
+ req = { level = 48, str = 38, dex = 38, },
}
itemBases["Mercenary Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 67, Evasion = 61, MovementPenalty = 0.015, },
- req = { level = 51, str = 52, dex = 52, },
+ req = { level = 51, str = 40, dex = 40, },
}
itemBases["Polished Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 72, Evasion = 65, MovementPenalty = 0.015, },
- req = { level = 55, str = 55, dex = 55, },
+ armour = { BlockChance = 25, Armour = 71, Evasion = 64, MovementPenalty = 0.015, },
+ req = { level = 54, str = 42, dex = 42, },
}
itemBases["Stone Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 77, Evasion = 70, MovementPenalty = 0.015, },
- req = { level = 59, str = 59, dex = 59, },
+ req = { level = 59, str = 46, dex = 46, },
}
itemBases["Avian Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 80, Evasion = 73, MovementPenalty = 0.015, },
- req = { level = 62, str = 62, dex = 62, },
+ req = { level = 62, str = 48, dex = 48, },
}
itemBases["Mammoth Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, Evasion = 76, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, dex = 65, },
+ req = { level = 65, str = 50, dex = 50, },
}
itemBases["Baroque Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 92, Evasion = 84, MovementPenalty = 0.015, },
- req = { level = 70, str = 70, dex = 70, },
+ req = { level = 70, str = 54, dex = 54, },
}
itemBases["Soaring Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 100, Evasion = 91, MovementPenalty = 0.015, },
- req = { level = 75, str = 76, dex = 76, },
+ req = { level = 75, str = 59, dex = 59, },
+}
+itemBases["Golden Targe"] = {
+ type = "Shield",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 109, Evasion = 99, MovementPenalty = 0.015, },
+ req = { level = 80, str = 63, dex = 63, },
}
itemBases["Ironwood Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 61, Evasion = 54, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, dex = 46, },
+ req = { level = 45, str = 36, dex = 36, },
}
itemBases["Fur-lined Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 64, Evasion = 58, MovementPenalty = 0.015, },
- req = { level = 48, str = 49, dex = 49, },
+ req = { level = 48, str = 38, dex = 38, },
}
itemBases["Mercenary Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 67, Evasion = 61, MovementPenalty = 0.015, },
- req = { level = 51, str = 52, dex = 52, },
+ req = { level = 51, str = 40, dex = 40, },
}
itemBases["Polished Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 72, Evasion = 65, MovementPenalty = 0.015, },
- req = { level = 55, str = 55, dex = 55, },
+ armour = { BlockChance = 25, Armour = 71, Evasion = 64, MovementPenalty = 0.015, },
+ req = { level = 54, str = 42, dex = 42, },
}
itemBases["Stone Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 77, Evasion = 70, MovementPenalty = 0.015, },
- req = { level = 59, str = 59, dex = 59, },
+ req = { level = 59, str = 46, dex = 46, },
}
itemBases["Avian Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 80, Evasion = 73, MovementPenalty = 0.015, },
- req = { level = 62, str = 62, dex = 62, },
+ req = { level = 62, str = 48, dex = 48, },
}
itemBases["Mammoth Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, Evasion = 76, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, dex = 65, },
+ req = { level = 65, str = 50, dex = 50, },
}
itemBases["Baroque Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 92, Evasion = 84, MovementPenalty = 0.015, },
- req = { level = 70, str = 70, dex = 70, },
+ req = { level = 70, str = 54, dex = 54, },
}
itemBases["Soaring Targe"] = {
type = "Shield",
subType = "Armour/Evasion",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 100, Evasion = 91, MovementPenalty = 0.015, },
- req = { level = 75, str = 76, dex = 76, },
+ req = { level = 75, str = 59, dex = 59, },
+}
+itemBases["Golden Targe"] = {
+ type = "Shield",
+ subType = "Armour/Evasion",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_dex_armour = true, str_dex_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 109, Evasion = 99, MovementPenalty = 0.015, },
+ req = { level = 80, str = 63, dex = 63, },
}
itemBases["Blazon Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
@@ -1022,315 +1082,335 @@ itemBases["Sigil Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, ezomyte_basetype = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 17, EnergyShield = 8, MovementPenalty = 0.015, },
- req = { level = 7, str = 10, int = 10, },
+ req = { level = 7, str = 8, int = 8, },
}
itemBases["Emblem Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 27, EnergyShield = 12, MovementPenalty = 0.015, },
- req = { level = 16, str = 18, int = 18, },
+ req = { level = 16, str = 15, int = 15, },
}
itemBases["Jingling Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 41, EnergyShield = 16, MovementPenalty = 0.015, },
- req = { level = 28, str = 30, int = 30, },
+ req = { level = 28, str = 23, int = 23, },
}
itemBases["Sectarian Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, vaal_basetype = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 47, EnergyShield = 18, MovementPenalty = 0.015, },
- req = { level = 33, str = 34, int = 34, },
+ req = { level = 33, str = 27, int = 27, },
}
itemBases["Omen Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, vaal_basetype = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 50, EnergyShield = 19, MovementPenalty = 0.015, },
- req = { level = 36, str = 37, int = 37, },
+ req = { level = 36, str = 30, int = 30, },
}
itemBases["Wayward Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 61, EnergyShield = 22, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, int = 46, },
+ armour = { BlockChance = 25, Armour = 62, EnergyShield = 22, MovementPenalty = 0.015, },
+ req = { level = 46, str = 37, int = 37, },
}
itemBases["Seer Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
- tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 65, EnergyShield = 23, MovementPenalty = 0.015, },
- req = { level = 49, str = 50, int = 50, },
+ armour = { BlockChance = 25, Armour = 66, EnergyShield = 24, MovementPenalty = 0.015, },
+ req = { level = 50, str = 39, int = 39, },
}
itemBases["Stoic Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 69, EnergyShield = 24, MovementPenalty = 0.015, },
- req = { level = 52, str = 53, int = 53, },
+ req = { level = 52, str = 41, int = 41, },
}
itemBases["Empyreal Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 74, EnergyShield = 26, MovementPenalty = 0.015, },
- req = { level = 57, str = 58, int = 58, },
+ req = { level = 57, str = 45, int = 45, },
}
itemBases["Deified Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, EnergyShield = 29, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, int = 65, },
+ req = { level = 65, str = 50, int = 50, },
}
itemBases["Painted Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 61, EnergyShield = 22, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, int = 46, },
+ req = { level = 45, str = 36, int = 36, },
}
itemBases["Engraved Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 64, EnergyShield = 23, MovementPenalty = 0.015, },
- req = { level = 48, str = 49, int = 49, },
+ req = { level = 48, str = 38, int = 38, },
}
itemBases["Descry Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 67, EnergyShield = 24, MovementPenalty = 0.015, },
- req = { level = 51, str = 52, int = 52, },
+ req = { level = 51, str = 40, int = 40, },
}
itemBases["Dekharan Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 72, EnergyShield = 25, MovementPenalty = 0.015, },
- req = { level = 55, str = 55, int = 55, },
+ armour = { BlockChance = 25, Armour = 71, EnergyShield = 25, MovementPenalty = 0.015, },
+ req = { level = 54, str = 42, int = 42, },
}
itemBases["Quartered Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 77, EnergyShield = 27, MovementPenalty = 0.015, },
- req = { level = 59, str = 59, int = 59, },
+ req = { level = 59, str = 46, int = 46, },
}
itemBases["Glowering Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 80, EnergyShield = 28, MovementPenalty = 0.015, },
- req = { level = 62, str = 62, int = 62, },
+ req = { level = 62, str = 48, int = 48, },
}
itemBases["Intricate Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, EnergyShield = 29, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, int = 65, },
+ req = { level = 65, str = 50, int = 50, },
}
itemBases["Sekheman Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 92, EnergyShield = 32, MovementPenalty = 0.015, },
- req = { level = 70, str = 70, int = 70, },
+ req = { level = 70, str = 54, int = 54, },
}
itemBases["Vaal Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 100, EnergyShield = 35, MovementPenalty = 0.015, },
- req = { level = 75, str = 76, int = 76, },
+ req = { level = 75, str = 59, int = 59, },
+}
+itemBases["Blacksteel Crest Shield"] = {
+ type = "Shield",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 109, EnergyShield = 37, MovementPenalty = 0.015, },
+ req = { level = 80, str = 63, int = 63, },
}
itemBases["Painted Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 61, EnergyShield = 22, MovementPenalty = 0.015, },
- req = { level = 45, str = 46, int = 46, },
+ req = { level = 45, str = 36, int = 36, },
}
itemBases["Engraved Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 64, EnergyShield = 23, MovementPenalty = 0.015, },
- req = { level = 48, str = 49, int = 49, },
+ req = { level = 48, str = 38, int = 38, },
}
itemBases["Descry Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 67, EnergyShield = 24, MovementPenalty = 0.015, },
- req = { level = 51, str = 52, int = 52, },
+ req = { level = 51, str = 40, int = 40, },
}
itemBases["Dekharan Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
- armour = { BlockChance = 25, Armour = 72, EnergyShield = 25, MovementPenalty = 0.015, },
- req = { level = 55, str = 55, int = 55, },
+ armour = { BlockChance = 25, Armour = 71, EnergyShield = 25, MovementPenalty = 0.015, },
+ req = { level = 54, str = 42, int = 42, },
}
itemBases["Quartered Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 77, EnergyShield = 27, MovementPenalty = 0.015, },
- req = { level = 59, str = 59, int = 59, },
+ req = { level = 59, str = 46, int = 46, },
}
itemBases["Glowering Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 80, EnergyShield = 28, MovementPenalty = 0.015, },
- req = { level = 62, str = 62, int = 62, },
+ req = { level = 62, str = 48, int = 48, },
}
itemBases["Intricate Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 84, EnergyShield = 29, MovementPenalty = 0.015, },
- req = { level = 65, str = 65, int = 65, },
+ req = { level = 65, str = 50, int = 50, },
}
itemBases["Sekheman Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 92, EnergyShield = 32, MovementPenalty = 0.015, },
- req = { level = 70, str = 70, int = 70, },
+ req = { level = 70, str = 54, int = 54, },
}
itemBases["Vaal Crest Shield"] = {
type = "Shield",
subType = "Armour/Energy Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
implicit = "Grants Skill: Level (1-20) Raise Shield",
implicitModTypes = { },
armour = { BlockChance = 25, Armour = 100, EnergyShield = 35, MovementPenalty = 0.015, },
- req = { level = 75, str = 76, int = 76, },
+ req = { level = 75, str = 59, int = 59, },
+}
+itemBases["Blacksteel Crest Shield"] = {
+ type = "Shield",
+ subType = "Armour/Energy Shield",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, str_int_armour = true, str_int_shield = true, armour = true, default = true, shield = true, },
+ implicitModTypes = { },
+ armour = { Armour = 109, EnergyShield = 37, MovementPenalty = 0.015, },
+ req = { level = 80, str = 63, int = 63, },
}
itemBases["Golden Flame"] = {
type = "Shield",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { not_for_sale = true, demigods = true, armour = true, default = true, shield = true, },
implicit = "+(11-19)% to Chaos Resistance",
implicitModTypes = { { "chaos", "resistance" }, },
diff --git a/src/Data/Bases/soulcore.lua b/src/Data/Bases/soulcore.lua
index 4668d84b47..7f2929b1ee 100644
--- a/src/Data/Bases/soulcore.lua
+++ b/src/Data/Bases/soulcore.lua
@@ -4,31 +4,27 @@ local itemBases = ...
itemBases["Hayoxi's Soul Core of Heatproofing"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
- implicit = "Body Armour: 20% of Armour also applies to Cold Damage taken from Hits",
+ implicit = "Helmet: +30% of Armour also applies to Cold Damage",
req = { level = 65, },
}
itemBases["Zalatl's Soul Core of Insulation"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
- implicit = "Body Armour: 20% of Armour also applies to Lightning Damage taken from Hits",
+ implicit = "Boots: +30% of Armour also applies to Lightning Damage",
req = { level = 65, },
}
itemBases["Topotante's Soul Core of Dampening"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
- implicit = "Body Armour: 20% of Armour also applies to Fire Damage taken from Hits",
+ implicit = "Gloves: +30% of Armour also applies to Fire Damage",
req = { level = 65, },
}
itemBases["Atmohua's Soul Core of Retreat"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: 30% faster start of Energy Shield Recharge",
@@ -36,7 +32,6 @@ itemBases["Atmohua's Soul Core of Retreat"] = {
}
itemBases["Quipolatl's Soul Core of Flow"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: 8% increased Skill Effect Duration\n8% increased Cooldown Recovery Rate",
@@ -44,7 +39,6 @@ itemBases["Quipolatl's Soul Core of Flow"] = {
}
itemBases["Tzamoto's Soul Core of Ferocity"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: +4 to Maximum Rage",
@@ -52,7 +46,6 @@ itemBases["Tzamoto's Soul Core of Ferocity"] = {
}
itemBases["Uromoti's Soul Core of Attenuation"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Boots: 15% increased Curse Duration\n15% increased Poison Duration",
@@ -60,7 +53,6 @@ itemBases["Uromoti's Soul Core of Attenuation"] = {
}
itemBases["Opiloti's Soul Core of Assault"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge\nCaster: 50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge",
@@ -68,7 +60,6 @@ itemBases["Opiloti's Soul Core of Assault"] = {
}
itemBases["Guatelitzi's Soul Core of Endurance"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 50% chance when you gain an Endurance Charge to gain an additional Endurance Charge\nCaster: 50% chance when you gain an Endurance Charge to gain an additional Endurance Charge",
@@ -76,7 +67,6 @@ itemBases["Guatelitzi's Soul Core of Endurance"] = {
}
itemBases["Xopec's Soul Core of Power"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 50% chance when you gain a Power Charge to gain an additional Power Charge\nCaster: 50% chance when you gain a Power Charge to gain an additional Power Charge",
@@ -84,7 +74,6 @@ itemBases["Xopec's Soul Core of Power"] = {
}
itemBases["Estazunti's Soul Core of Convalescence"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Boots: 10% increased speed of Recoup Effects",
@@ -92,7 +81,6 @@ itemBases["Estazunti's Soul Core of Convalescence"] = {
}
itemBases["Tacati's Soul Core of Affliction"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: Enemies you Curse have -4% to Chaos Resistance",
@@ -100,7 +88,6 @@ itemBases["Tacati's Soul Core of Affliction"] = {
}
itemBases["Cholotl's Soul Core of War"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Bow: 20% increased Projectile Speed",
@@ -108,15 +95,13 @@ itemBases["Cholotl's Soul Core of War"] = {
}
itemBases["Citaqualotl's Soul Core of Foulness"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 13 to 19 Chaos damage",
+ implicit = "Martial Weapons: Adds 19 to 29 Chaos damage",
req = { level = 65, },
}
itemBases["Xipocado's Soul Core of Dominion"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier3 = true, default = true, },
implicitModTypes = { },
implicit = "Caster: Minions deal 40% increased Damage with Command Skills\nSceptre: Minions deal 40% increased Damage with Command Skills",
@@ -124,7 +109,6 @@ itemBases["Xipocado's Soul Core of Dominion"] = {
}
itemBases["Soul Core of Tacati"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier1 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 15% chance to Poison on Hit with this weapon\nArmour: +11% to Chaos Resistance",
@@ -132,31 +116,27 @@ itemBases["Soul Core of Tacati"] = {
}
itemBases["Soul Core of Opiloti"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier1 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 15% chance to cause Bleeding on Hit\nArmour: 10% increased Charm Charges gained",
+ implicit = "Martial Weapons: 15% chance to cause Bleeding on Hit\nHelmet: 20% increased Charm Charges gained",
req = { level = 35, },
}
itemBases["Soul Core of Jiquani"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Recover 2% of maximum Life on Kill\nArmour: 2% increased maximum Life",
+ implicit = "Martial Weapons: Recover 2% of maximum Life on Kill\nBody Armour: 3% increased maximum Life",
req = { level = 35, },
}
itemBases["Soul Core of Zalatl"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Recover 2% of maximum Mana on Kill\nArmour: 2% increased maximum Mana",
+ implicit = "Martial Weapons: Recover 2% of maximum Mana on Kill\nHelmet: 3% increased maximum Mana",
req = { level = 35, },
}
itemBases["Soul Core of Citaqualotl"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier1 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 30% increased Elemental Damage with Attacks\nArmour: +5% to all Elemental Resistances",
@@ -164,63 +144,55 @@ itemBases["Soul Core of Citaqualotl"] = {
}
itemBases["Soul Core of Puhuarte"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 30% increased chance to Ignite\nArmour: +1% to Maximum Fire Resistance",
+ implicit = "Martial Weapons: 30% increased Flammability Magnitude\nGloves: +1% to Maximum Fire Resistance",
req = { level = 35, },
}
itemBases["Soul Core of Tzamoto"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 20% increased Freeze Buildup\nArmour: +1% to Maximum Cold Resistance",
+ implicit = "Martial Weapons: 30% increased Freeze Buildup\nHelmet: +1% to Maximum Cold Resistance",
req = { level = 35, },
}
itemBases["Soul Core of Xopec"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 30% increased chance to Shock\nArmour: +1% to Maximum Lightning Resistance",
+ implicit = "Martial Weapons: 30% increased chance to Shock\nBoots: +1% to Maximum Lightning Resistance",
req = { level = 35, },
}
itemBases["Soul Core of Azcapa"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +15 to Spirit\nArmour: 5% increased Quantity of Gold Dropped by Slain Enemies",
+ implicit = "Martial Weapons: +15 to Spirit\nGloves: 10% increased Quantity of Gold Dropped by Slain Enemies",
req = { level = 35, },
}
itemBases["Soul Core of Topotante"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier1 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Attacks with this Weapon Penetrate 15% Elemental Resistances\nArmour: 15% increased Elemental Ailment Threshold",
+ implicit = "Martial Weapons: Attacks with this Weapon Penetrate 15% Elemental Resistances\nBoots: 25% increased Elemental Ailment Threshold",
req = { level = 35, },
}
itemBases["Soul Core of Quipolatl"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 5% increased Attack Speed\nArmour: 10% reduced Slowing Potency of Debuffs on You",
+ implicit = "Martial Weapons: 5% increased Attack Speed\nBoots: 15% reduced Slowing Potency of Debuffs on You",
req = { level = 35, },
}
itemBases["Soul Core of Ticaba"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +12% to Critical Damage Bonus\nArmour: Hits against you have 10% reduced Critical Damage Bonus",
+ implicit = "Martial Weapons: +5% to Critical Damage Bonus\nBody Armour: Hits against you have 20% reduced Critical Damage Bonus",
req = { level = 35, },
}
itemBases["Soul Core of Atmohua"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Convert 20% of Requirements to Strength\nArmour: Convert 20% of Requirements to Strength",
@@ -228,7 +200,6 @@ itemBases["Soul Core of Atmohua"] = {
}
itemBases["Soul Core of Cholotl"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Convert 20% of Requirements to Dexterity\nArmour: Convert 20% of Requirements to Dexterity",
@@ -236,7 +207,6 @@ itemBases["Soul Core of Cholotl"] = {
}
itemBases["Soul Core of Zantipi"] = {
type = "SoulCore",
- hidden = true,
tags = { soul_core = true, soul_core_tier2 = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Convert 20% of Requirements to Intelligence\nArmour: Convert 20% of Requirements to Intelligence",
@@ -245,511 +215,469 @@ itemBases["Soul Core of Zantipi"] = {
itemBases["Desert Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 7 to 11 Fire Damage\nArmour: +12% to Fire Resistance\nCaster: Gain 10% of Damage as Extra Fire Damage",
+ implicit = "Martial Weapons: Adds 7 to 11 Fire Damage\nArmour: +12% to Fire Resistance\nCaster: Gain 8% of Damage as Extra Fire Damage",
req = { level = 31, },
}
itemBases["Glacial Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 6 to 10 Cold Damage\nArmour: +12% to Cold Resistance\nCaster: Gain 10% of Damage as Extra Cold Damage",
+ implicit = "Martial Weapons: Adds 6 to 10 Cold Damage\nArmour: +12% to Cold Resistance\nCaster: Gain 8% of Damage as Extra Cold Damage",
req = { level = 31, },
}
itemBases["Storm Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 1 to 20 Lightning Damage\nArmour: +12% to Lightning Resistance\nCaster: Gain 10% of Damage as Extra Lightning Damage",
+ implicit = "Martial Weapons: Adds 1 to 20 Lightning Damage\nArmour: +12% to Lightning Resistance\nCaster: Gain 8% of Damage as Extra Lightning Damage",
req = { level = 31, },
}
itemBases["Iron Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 20% increased Physical Damage\nArmour: 20% increased Armour, Evasion and Energy Shield\nCaster: 25% increased Spell Damage",
+ implicit = "Martial Weapons: 16% increased Physical Damage\nArmour: 16% increased Armour, Evasion and Energy Shield\nCaster: 25% increased Spell Damage",
req = { level = 31, },
}
itemBases["Body Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Leeches 2.5% of Physical Damage as Life\nArmour: +30 to maximum Life\nCaster: +30 to maximum Energy Shield",
req = { level = 37, },
}
itemBases["Mind Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Leeches 2% of Physical Damage as Mana\nArmour: +25 to maximum Mana\nCaster: +30 to maximum Mana",
+ implicit = "Martial Weapons: Leeches 2% of Physical Damage as Mana\nArmour: +25 to maximum Mana\nCaster: +40 to maximum Mana",
req = { level = 37, },
}
itemBases["Rebirth Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 20 Life per Enemy Killed\nArmour: Regenerate 0.3% of maximum Life per second\nCaster: 15% increased Energy Shield Recharge Rate",
req = { level = 45, },
}
itemBases["Inspiration Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 16 Mana per Enemy Killed\nArmour: 15% increased Mana Regeneration Rate\nCaster: 20% increased Mana Regeneration Rate",
req = { level = 45, },
}
itemBases["Stone Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Causes 25% increased Stun Buildup\nArmour: +40 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 12% of maximum Energy Shield",
+ implicit = "Martial Weapons: Causes 25% increased Stun Buildup\nArmour: +60 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 12% of maximum Energy Shield",
req = { level = 41, },
}
itemBases["Vision Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: +80 to Accuracy Rating\nArmour: 10% increased Life and Mana Recovery from Flasks\nCaster: 20% increased Critical Hit Chance for Spells",
req = { level = 41, },
}
itemBases["Lesser Desert Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 4 to 6 Fire Damage\nArmour: +10% to Fire Resistance\nCaster: Gain 8% of Damage as Extra Fire Damage",
+ implicit = "Martial Weapons: Adds 4 to 6 Fire Damage\nArmour: +10% to Fire Resistance\nCaster: Gain 6% of Damage as Extra Fire Damage",
req = { level = 5, },
}
itemBases["Lesser Glacial Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 3 to 5 Cold Damage\nArmour: +10% to Cold Resistance\nCaster: Gain 8% of Damage as Extra Cold Damage",
+ implicit = "Martial Weapons: Adds 3 to 5 Cold Damage\nArmour: +10% to Cold Resistance\nCaster: Gain 6% of Damage as Extra Cold Damage",
req = { level = 5, },
}
itemBases["Lesser Storm Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 1 to 10 Lightning Damage\nArmour: +10% to Lightning Resistance\nCaster: Gain 8% of Damage as Extra Lightning Damage",
+ implicit = "Martial Weapons: Adds 1 to 10 Lightning Damage\nArmour: +10% to Lightning Resistance\nCaster: Gain 6% of Damage as Extra Lightning Damage",
req = { level = 5, },
}
itemBases["Lesser Iron Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 15% increased Physical Damage\nArmour: 15% increased Armour, Evasion and Energy Shield\nCaster: 20% increased Spell Damage",
+ implicit = "Martial Weapons: 14% increased Physical Damage\nArmour: 14% increased Armour, Evasion and Energy Shield\nCaster: 20% increased Spell Damage",
req = { level = 5, },
}
itemBases["Lesser Body Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Leeches 2% of Physical Damage as Life\nArmour: +20 to maximum Life\nCaster: +25 to maximum Energy Shield",
req = { level = 11, },
}
itemBases["Lesser Mind Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Leeches 1.5% of Physical Damage as Mana\nArmour: +15 to maximum Mana\nCaster: +25 to maximum Mana",
+ implicit = "Martial Weapons: Leeches 1.5% of Physical Damage as Mana\nArmour: +15 to maximum Mana\nCaster: +30 to maximum Mana",
req = { level = 11, },
}
itemBases["Lesser Rebirth Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 10 Life per Enemy Killed\nArmour: Regenerate 0.25% of maximum Life per second\nCaster: 12% increased Energy Shield Recharge Rate",
req = { level = 21, },
}
itemBases["Lesser Inspiration Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 8 Mana per Enemy Killed\nArmour: 12% increased Mana Regeneration Rate\nCaster: 16% increased Mana Regeneration Rate",
req = { level = 21, },
}
itemBases["Lesser Stone Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Causes 20% increased Stun Buildup\nArmour: +30 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 10% of maximum Energy Shield",
+ implicit = "Martial Weapons: Causes 20% increased Stun Buildup\nArmour: +40 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 10% of maximum Energy Shield",
req = { level = 16, },
}
itemBases["Lesser Vision Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: +50 to Accuracy Rating\nArmour: 8% increased Life and Mana Recovery from Flasks\nCaster: 16% increased Critical Hit Chance for Spells",
req = { level = 16, },
}
itemBases["Greater Desert Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 13 to 16 Fire Damage\nArmour: +14% to Fire Resistance\nCaster: Gain 12% of Damage as Extra Fire Damage",
+ implicit = "Martial Weapons: Adds 13 to 16 Fire Damage\nArmour: +14% to Fire Resistance\nCaster: Gain 10% of Damage as Extra Fire Damage",
req = { level = 52, },
}
itemBases["Greater Glacial Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 9 to 15 Cold Damage\nArmour: +14% to Cold Resistance\nCaster: Gain 12% of Damage as Extra Cold Damage",
+ implicit = "Martial Weapons: Adds 9 to 15 Cold Damage\nArmour: +14% to Cold Resistance\nCaster: Gain 10% of Damage as Extra Cold Damage",
req = { level = 52, },
}
itemBases["Greater Storm Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Adds 1 to 30 Lightning Damage\nArmour: +14% to Lightning Resistance\nCaster: Gain 12% of Damage as Extra Lightning Damage",
+ implicit = "Martial Weapons: Adds 1 to 30 Lightning Damage\nArmour: +14% to Lightning Resistance\nCaster: Gain 10% of Damage as Extra Lightning Damage",
req = { level = 52, },
}
itemBases["Greater Iron Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: 25% increased Physical Damage\nArmour: 25% increased Armour, Evasion and Energy Shield\nCaster: 30% increased Spell Damage",
+ implicit = "Martial Weapons: 18% increased Physical Damage\nArmour: 18% increased Armour, Evasion and Energy Shield\nCaster: 30% increased Spell Damage",
req = { level = 52, },
}
itemBases["Greater Body Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Leeches 3% of Physical Damage as Life\nArmour: +40 to maximum Life\nCaster: +35 to maximum Energy Shield",
req = { level = 57, },
}
itemBases["Greater Mind Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Leeches 2.5% of Physical Damage as Mana\nArmour: +35 to maximum Mana\nCaster: +35 to maximum Mana",
+ implicit = "Martial Weapons: Leeches 2.5% of Physical Damage as Mana\nArmour: +35 to maximum Mana\nCaster: +50 to maximum Mana",
req = { level = 57, },
}
itemBases["Greater Rebirth Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 30 Life per Enemy Killed\nArmour: Regenerate 0.35% of maximum Life per second\nCaster: 18% increased Energy Shield Recharge Rate",
req = { level = 62, },
}
itemBases["Greater Inspiration Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 24 Mana per Enemy Killed\nArmour: 18% increased Mana Regeneration Rate\nCaster: 24% increased Mana Regeneration Rate",
req = { level = 62, },
}
itemBases["Greater Stone Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Causes 30% increased Stun Buildup\nArmour: +50 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 14% of maximum Energy Shield",
+ implicit = "Martial Weapons: Causes 30% increased Stun Buildup\nArmour: +80 to Stun Threshold\nCaster: Gain additional Stun Threshold equal to 14% of maximum Energy Shield",
req = { level = 59, },
}
itemBases["Greater Vision Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: +110 to Accuracy Rating\nArmour: 12% increased Life and Mana Recovery from Flasks\nCaster: 24% increased Critical Hit Chance for Spells",
req = { level = 59, },
}
itemBases["Lesser Robust Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +6 to Strength\nArmour: +6 to Strength\nCaster: +6 to Strength\nSceptre: +6 to Strength",
+ implicit = "Martial Weapons: +6 to Strength\nArmour: +6 to Strength\nCaster: +6 to Strength",
req = { level = 5, },
}
itemBases["Robust Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +8 to Strength\nArmour: +8 to Strength\nCaster: +8 to Strength\nSceptre: +8 to Strength",
+ implicit = "Martial Weapons: +8 to Strength\nArmour: +8 to Strength\nCaster: +8 to Strength",
req = { level = 31, },
}
itemBases["Greater Robust Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +10 to Strength\nArmour: +10 to Strength\nCaster: +10 to Strength\nSceptre: +10 to Strength",
+ implicit = "Martial Weapons: +10 to Strength\nArmour: +10 to Strength\nCaster: +10 to Strength",
req = { level = 52, },
}
itemBases["Lesser Adept Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +6 to Dexterity\nArmour: +6 to Dexterity\nCaster: +6 to Dexterity\nSceptre: +6 to Dexterity",
+ implicit = "Martial Weapons: +6 to Dexterity\nArmour: +6 to Dexterity\nCaster: +6 to Dexterity",
req = { level = 5, },
}
itemBases["Adept Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +8 to Dexterity\nArmour: +8 to Dexterity\nCaster: +8 to Dexterity\nSceptre: +8 to Dexterity",
+ implicit = "Martial Weapons: +8 to Dexterity\nArmour: +8 to Dexterity\nCaster: +8 to Dexterity",
req = { level = 31, },
}
itemBases["Greater Adept Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +10 to Dexterity\nArmour: +10 to Dexterity\nCaster: +10 to Dexterity\nSceptre: +10 to Dexterity",
+ implicit = "Martial Weapons: +10 to Dexterity\nArmour: +10 to Dexterity\nCaster: +10 to Dexterity",
req = { level = 52, },
}
itemBases["Lesser Resolve Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +6 to Intelligence\nArmour: +6 to Intelligence\nCaster: +6 to Intelligence\nSceptre: +6 to Intelligence",
+ implicit = "Martial Weapons: +6 to Intelligence\nArmour: +6 to Intelligence\nCaster: +6 to Intelligence",
req = { level = 5, },
}
itemBases["Resolve Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +8 to Intelligence\nArmour: +8 to Intelligence\nCaster: +8 to Intelligence\nSceptre: +8 to Intelligence",
+ implicit = "Martial Weapons: +8 to Intelligence\nArmour: +8 to Intelligence\nCaster: +8 to Intelligence",
req = { level = 31, },
}
itemBases["Greater Resolve Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: +10 to Intelligence\nArmour: +10 to Intelligence\nCaster: +10 to Intelligence\nSceptre: +10 to Intelligence",
+ implicit = "Martial Weapons: +10 to Intelligence\nArmour: +10 to Intelligence\nCaster: +10 to Intelligence",
req = { level = 52, },
}
itemBases["Lesser Tempered Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_lesser = true, default = true, },
+ tags = { default = true, rune_lesser = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 3 to 4 Physical Damage\nArmour: 6 to 9 Physical Thorns damage",
req = { level = 5, },
}
itemBases["Tempered Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_normal = true, default = true, },
+ tags = { rune_normal = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 6 to 9 Physical Damage\nArmour: 14 to 21 Physical Thorns damage",
req = { level = 31, },
}
itemBases["Greater Tempered Rune"] = {
type = "Rune",
- hidden = true,
- tags = { rune_greater = true, default = true, },
+ tags = { rune_greater = true, default = true, rune = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 9 to 12 Physical Damage\nArmour: 31 to 52 Physical Thorns damage",
req = { level = 52, },
}
itemBases["Greater Rune of Leadership"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Minions gain 10% of their Physical Damage as Extra Lightning Damage\nArmour: Minions take 10% of Physical Damage as Lightning Damage",
req = { level = 65, },
}
itemBases["Greater Rune of Tithing"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Meta Skills gain 10% increased Energy\nArmour: 1 to 100 Lightning Thorns damage",
req = { level = 65, },
}
itemBases["Greater Rune of Alacrity"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 8% increased Skill Speed\nArmour: Debuffs on you expire 8% faster",
req = { level = 65, },
}
itemBases["Greater Rune of Nobility"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Attacks with this Weapon have 10% chance to inflict Lightning Exposure\nArmour: 10% reduced effect of Shock on you",
req = { level = 65, },
}
itemBases["Hedgewitch Assandra's Rune of Wisdom"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Caster: +1 to Level of all Spell Skills",
req = { level = 65, },
}
itemBases["Saqawal's Rune of the Sky"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
- implicit = "Martial Weapons: Gain 6% of Damage as Extra Damage of all Elements\nCaster: Gain 6% of Damage as Extra Damage of all Elements",
+ implicit = "Martial Weapons: Gain 5% of Damage as Extra Damage of all Elements\nCaster: Gain 5% of Damage as Extra Damage of all Elements",
req = { level = 65, },
}
itemBases["Fenumus' Rune of Agony"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Gain 13% of Damage as Extra Chaos Damage\nCaster: Gain 13% of Damage as Extra Chaos Damage",
req = { level = 65, },
}
itemBases["Farrul's Rune of Grace"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Boots: 6% reduced Movement Speed Penalty from using Skills while moving",
req = { level = 65, },
}
itemBases["Farrul's Rune of the Chase"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Boots: 5% increased Movement Speed",
req = { level = 65, },
}
itemBases["Craiceann's Rune of Warding"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: 40% reduced effect of Curses on you",
req = { level = 65, },
}
itemBases["Saqawal's Rune of Memory"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: 2% increased Experience gain",
req = { level = 65, },
}
itemBases["Saqawal's Rune of Erosion"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: 20% increased Exposure Effect",
req = { level = 65, },
}
itemBases["Farrul's Rune of the Hunt"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 50% increased Attack Damage against Rare or Unique Enemies",
req = { level = 65, },
}
itemBases["Craiceann's Rune of Recovery"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: 50% increased Energy Shield Recharge Rate",
req = { level = 65, },
}
itemBases["Courtesan Mannan's Rune of Cruelty"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 15% increased Magnitude of Damaging Ailments you inflict",
req = { level = 65, },
}
itemBases["Thane Grannell's Rune of Mastery"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 20% increased Magnitude of Non-Damaging Ailments you inflict",
req = { level = 65, },
}
itemBases["Fenumus' Rune of Spinning"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 8% increased Cast Speed",
req = { level = 65, },
}
itemBases["Countess Seske's Rune of Archery"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Bow: Bow Attacks fire an additional Arrow",
req = { level = 65, },
}
itemBases["Thane Girt's Rune of Wildness"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Caster: 25% chance for Spell Skills to fire 2 additional Projectiles",
req = { level = 65, },
}
itemBases["Fenumus' Rune of Draining"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
- implicit = "Gloves: 20% increased Effect of Withered",
+ implicit = "Gloves: 20% increased Withered Magnitude",
req = { level = 65, },
}
itemBases["Thane Myrk's Rune of Summer"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 23 to 34 Fire Damage",
req = { level = 65, },
}
itemBases["Lady Hestra's Rune of Winter"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 19 to 28 Cold Damage",
req = { level = 65, },
}
itemBases["Thane Leld's Rune of Spring"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: Adds 1 to 60 Lightning Damage",
req = { level = 65, },
}
itemBases["The Greatwolf's Rune of Claws"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: Adds 5 to 12 Physical Damage to Attacks",
req = { level = 65, },
}
itemBases["The Greatwolf's Rune of Willpower"] = {
type = "Rune",
- tags = { default = true, },
+ tags = { rune = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: 10% of Damage is taken from Mana before Life",
req = { level = 65, },
@@ -757,126 +685,126 @@ itemBases["The Greatwolf's Rune of Willpower"] = {
itemBases["Talisman of Sirrius"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 8% increased Attack Speed",
req = { },
}
itemBases["Talisman of Thruldana"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Martial Weapons: 25% reduced Poison Duration\nTargets can be affected by +1 of your Poisons at the same time",
req = { },
}
itemBases["Talisman of Grold"] = {
type = "Talisman",
- tags = { wild_talisman = true, default = true, },
+ tags = { wild_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Gloves: Skills which Empower an Attack have 15% chance to not count that Attack",
+ implicit = "Gloves: 15% increased total Power counted by Warcries",
req = { },
}
itemBases["Talisman of Eeshta"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Helmet: 6% reduced Cost of Skills",
+ implicit = "Helmet: 10% increased Cost Efficiency",
req = { },
}
itemBases["Talisman of Egrin"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: Enemies you Curse take 5% increased Damage",
req = { },
}
itemBases["Talisman of Maxarius"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: +1 Charm Slot",
req = { },
}
itemBases["Talisman of Ralakesh"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Helmet: Minions have 5% reduced Reservation",
+ implicit = "Helmet: 6% increased Reservation Efficiency of Minion Skills",
req = { },
}
itemBases["Serpent Talisman"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 5% increased Curse Magnitudes",
req = { },
}
itemBases["Primate Talisman"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: Minions have 12% increased maximum Life",
req = { },
}
itemBases["Owl Talisman"] = {
type = "Talisman",
- tags = { primal_talisman = true, default = true, },
+ tags = { primal_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Boots: 5% increased Cooldown Recovery Rate",
+ implicit = "Focus: 10% increased Cooldown Recovery Rate",
req = { },
}
itemBases["Cat Talisman"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Boots: Hits against you have 15% reduced Critical Damage Bonus",
+ implicit = "Gloves: 15% increased Accuracy Rating",
req = { },
}
itemBases["Wolf Talisman"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: 10% increased Magnitude of Bleeding you inflict",
req = { },
}
itemBases["Stag Talisman"] = {
type = "Talisman",
- tags = { vivid_talisman = true, default = true, },
+ tags = { vivid_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Helmet: 8% increased Exposure Effect",
+ implicit = "Helmet: 50% increased Thorns Critical Hit Chance",
req = { },
}
itemBases["Boar Talisman"] = {
type = "Talisman",
- tags = { wild_talisman = true, default = true, },
+ tags = { wild_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Gloves: Gain 1 Rage on Melee Hit",
req = { },
}
itemBases["Bear Talisman"] = {
type = "Talisman",
- tags = { wild_talisman = true, default = true, },
+ tags = { wild_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Helmet: 8% increased Area of Effect",
req = { },
}
itemBases["Ox Talisman"] = {
type = "Talisman",
- tags = { wild_talisman = true, default = true, },
+ tags = { wild_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
- implicit = "Boots: 20% increased Presence Area of Effect",
+ implicit = "Shield: 10% increased Block chance",
req = { },
}
itemBases["Rabbit Talisman"] = {
type = "Talisman",
- tags = { sacred_talisman = true, default = true, },
+ tags = { sacred_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: 8% increased Rarity of Items found",
req = { },
}
itemBases["Fox Talisman"] = {
type = "Talisman",
- tags = { sacred_talisman = true, default = true, },
+ tags = { sacred_talisman = true, talisman = true, default = true, },
implicitModTypes = { },
implicit = "Body Armour: +2% to Quality of all Skills",
req = { },
diff --git a/src/Data/Bases/spear.lua b/src/Data/Bases/spear.lua
index 8ad9d06810..c45ad031dc 100644
--- a/src/Data/Bases/spear.lua
+++ b/src/Data/Bases/spear.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Hardwood Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 5, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
@@ -14,222 +14,231 @@ itemBases["Hardwood Spear"] = {
itemBases["Ironhead Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 7, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 5, dex = 11, },
+ req = { level = 5, dex = 10, },
}
itemBases["Hunting Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, ezomyte_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(15-25)% chance to Maim on Hit",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 10, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, },
- req = { level = 10, str = 10, dex = 20, },
+ req = { level = 10, str = 9, dex = 17, },
}
itemBases["Winged Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 12, PhysicalMax = 22, CritChanceBase = 5, AttackRateBase = 1.65, Range = 15, },
- req = { level = 16, str = 14, dex = 30, },
+ req = { level = 16, str = 12, dex = 25, },
}
itemBases["War Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(25-35)% increased Projectile Speed with this Weapon",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 14, PhysicalMax = 26, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 21, str = 17, dex = 39, },
+ req = { level = 21, str = 14, dex = 31, },
}
itemBases["Forked Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 17, PhysicalMax = 32, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 26, str = 20, dex = 48, },
+ req = { level = 26, str = 17, dex = 38, },
}
itemBases["Barbed Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 20, PhysicalMax = 38, CritChanceBase = 6.5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 33, str = 25, dex = 60, },
+ req = { level = 33, str = 20, dex = 47, },
}
itemBases["Broad Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, vaal_basetype = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 26, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.5, Range = 15, },
- req = { level = 40, str = 29, dex = 72, },
+ req = { level = 40, str = 23, dex = 56, },
}
itemBases["Crossblade Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
- tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 28, PhysicalMax = 51, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, },
- req = { level = 45, str = 33, dex = 81, },
+ weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, },
+ req = { level = 46, str = 26, dex = 64, },
}
itemBases["Seaglass Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
- tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 10, AttackRateBase = 1.6, Range = 15, },
- req = { level = 51, str = 36, dex = 91, int = 65, },
+ weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 7, AttackRateBase = 1.5, Range = 15, },
+ req = { level = 51, str = 29, dex = 71, int = 50, },
}
itemBases["Sword Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 52, str = 37, dex = 93, },
+ req = { level = 52, str = 29, dex = 72, },
}
itemBases["Striking Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 23, LightningMax = 91, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 55, str = 39, dex = 98, },
+ weapon = { PhysicalMin = 11, PhysicalMax = 45, LightningMin = 11, LightningMax = 45, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
+ req = { level = 55, str = 31, dex = 76, },
}
itemBases["Helix Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 37, PhysicalMax = 68, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 65, str = 45, dex = 116, },
+ req = { level = 65, str = 36, dex = 89, },
}
itemBases["Steelhead Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 45, str = 33, dex = 81, },
+ req = { level = 45, str = 26, dex = 63, },
}
itemBases["Coursing Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(15-25)% chance to Maim on Hit",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 29, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, },
- req = { level = 48, str = 35, dex = 86, },
+ req = { level = 48, str = 27, dex = 67, },
}
itemBases["Swift Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(25-35)% increased Projectile Speed with this Weapon",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 28, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 51, str = 36, dex = 91, },
+ req = { level = 51, str = 29, dex = 71, },
}
itemBases["Branched Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 32, PhysicalMax = 59, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 55, str = 39, dex = 98, },
+ weapon = { PhysicalMin = 31, PhysicalMax = 58, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
+ req = { level = 54, str = 30, dex = 75, },
}
itemBases["Jagged Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 33, PhysicalMax = 61, CritChanceBase = 6.5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 59, str = 42, dex = 105, },
+ req = { level = 59, str = 33, dex = 81, },
}
itemBases["Massive Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 38, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.5, Range = 15, },
- req = { level = 62, str = 44, dex = 110, },
+ req = { level = 62, str = 34, dex = 85, },
}
itemBases["Orichalcum Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 38, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 67, str = 53, dex = 135, },
+ req = { level = 67, str = 41, dex = 104, },
}
itemBases["Pronged Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 40, PhysicalMax = 75, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 72, str = 59, dex = 150, },
+ req = { level = 72, str = 46, dex = 115, },
}
itemBases["Stalking Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(15-25)% chance to Maim on Hit",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 44, PhysicalMax = 82, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, },
- req = { level = 77, str = 64, dex = 165, },
+ req = { level = 77, str = 50, dex = 127, },
}
itemBases["Flying Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicit = "(25-35)% increased Projectile Speed with this Weapon",
implicitModTypes = { { }, },
weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 78, str = 64, dex = 165, },
+ req = { level = 78, str = 50, dex = 127, },
}
itemBases["Grand Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 46, PhysicalMax = 85, CritChanceBase = 5, AttackRateBase = 1.5, Range = 15, },
- req = { level = 79, str = 64, dex = 165, },
+ req = { level = 79, str = 50, dex = 127, },
}
itemBases["Spiked Spear"] = {
type = "Spear",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 6.5, AttackRateBase = 1.6, Range = 15, },
- req = { level = 77, str = 64, dex = 165, },
+ req = { level = 77, str = 50, dex = 127, },
+}
+itemBases["Akoyan Spear"] = {
+ type = "Spear",
+ quality = 20,
+ socketLimit = 3,
+ tags = { karui_basetype = true, onehand = true, spear = true, weapon = true, one_hand_weapon = true, default = true, },
+ implicitModTypes = { },
+ weapon = { PhysicalMin = 43, PhysicalMax = 80, CritChanceBase = 7, AttackRateBase = 1.5, Range = 15, },
+ req = { level = 78, str = 50, dex = 127, int = 90, },
}
diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua
index 58961eefe6..7ae7374dc8 100644
--- a/src/Data/Bases/staff.lua
+++ b/src/Data/Bases/staff.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Ashen Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_physical_spell_mods = true, no_lightning_spell_mods = true, no_cold_spell_mods = true, no_chaos_spell_mods = true, staff = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Firebolt",
implicitModTypes = { },
@@ -14,7 +14,7 @@ itemBases["Ashen Staff"] = {
itemBases["Gelid Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_lightning_spell_mods = true, staff = true, no_physical_spell_mods = true, no_chaos_spell_mods = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Freezing Shards",
implicitModTypes = { },
@@ -23,7 +23,7 @@ itemBases["Gelid Staff"] = {
itemBases["Voltaic Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Lightning Bolt",
implicitModTypes = { },
@@ -32,7 +32,7 @@ itemBases["Voltaic Staff"] = {
itemBases["Spriggan Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Firebolt",
implicitModTypes = { },
@@ -41,16 +41,16 @@ itemBases["Spriggan Staff"] = {
itemBases["Pyrophyte Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_physical_spell_mods = true, no_lightning_spell_mods = true, no_cold_spell_mods = true, no_chaos_spell_mods = true, staff = true, twohand = true, default = true, },
- implicit = "Grants Skill: Level (1-20) Living Bomb",
+ implicit = "Grants Skill: Level (1-20) Solar Orb",
implicitModTypes = { },
req = { },
}
itemBases["Chiming Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Sigil of Power",
implicitModTypes = { },
@@ -59,7 +59,7 @@ itemBases["Chiming Staff"] = {
itemBases["Rending Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_lightning_spell_mods = true, staff = true, no_physical_spell_mods = true, no_cold_spell_mods = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Soulrend",
implicitModTypes = { },
@@ -68,7 +68,7 @@ itemBases["Rending Staff"] = {
itemBases["Reaping Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_lightning_spell_mods = true, staff = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Reap",
implicitModTypes = { },
@@ -77,7 +77,7 @@ itemBases["Reaping Staff"] = {
itemBases["Icicle Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_lightning_spell_mods = true, staff = true, no_physical_spell_mods = true, no_chaos_spell_mods = true, twohand = true, default = true, },
implicit = "Grants Skill: Level (1-20) Firebolt",
implicitModTypes = { },
@@ -86,7 +86,7 @@ itemBases["Icicle Staff"] = {
itemBases["Roaring Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Unleash",
implicitModTypes = { },
@@ -95,16 +95,16 @@ itemBases["Roaring Staff"] = {
itemBases["Paralysing Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, twohand = true, default = true, },
- implicit = "Grants Skill: Level (1-20) Shock Nova",
+ implicit = "Grants Skill: Level (1-20) Enervating Nova",
implicitModTypes = { },
req = { },
}
-itemBases["Cleric Staff"] = {
+itemBases["Sanctified Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Consecrate",
implicitModTypes = { },
@@ -113,16 +113,25 @@ itemBases["Cleric Staff"] = {
itemBases["Dark Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Dark Pact",
implicitModTypes = { },
req = { },
}
+itemBases["Ravenous Staff"] = {
+ type = "Staff",
+ quality = 20,
+ socketLimit = 4,
+ tags = { default = true, twohand = true, staff = true, },
+ implicit = "Grants Skill: Level (1-20) Feast of Flesh",
+ implicitModTypes = { },
+ req = { },
+}
itemBases["Permafrost Staff"] = {
type = "Staff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { default = true, twohand = true, staff = true, },
implicit = "Grants Skill: Level (1-20) Heart of Ice",
implicitModTypes = { },
@@ -133,7 +142,7 @@ itemBases["Wrapped Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, ezomyte_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 7, PhysicalMax = 12, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
@@ -143,369 +152,389 @@ itemBases["Long Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, ezomyte_basetype = true, weapon = true, twohand = true, default = true, },
implicit = "16% increased Melee Strike Range with this weapon",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 9, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { dex = 10, },
+ req = { dex = 9, },
}
itemBases["Gothic Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, ezomyte_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 16, PhysicalMax = 26, CritChanceBase = 11.5, AttackRateBase = 1.4, Range = 13, },
- req = { level = 11, dex = 22, int = 11, },
+ req = { level = 11, dex = 18, int = 9, },
}
itemBases["Crackling Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, maraketh_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 13, LightningMax = 54, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 16, dex = 30, int = 14, },
+ weapon = { PhysicalMin = 5, PhysicalMax = 22, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
+ req = { level = 16, dex = 25, int = 12, },
}
itemBases["Crescent Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, maraketh_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 39, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
- req = { level = 20, dex = 37, int = 16, },
+ req = { level = 20, dex = 30, int = 14, },
}
itemBases["Steelpoint Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, maraketh_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 28, PhysicalMax = 51, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 28, dex = 51, int = 22, },
+ req = { level = 28, dex = 41, int = 18, },
}
itemBases["Slicing Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, vaal_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 29, PhysicalMax = 60, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 33, dex = 60, int = 25, },
+ req = { level = 33, dex = 47, int = 20, },
}
itemBases["Barrier Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, vaal_basetype = true, weapon = true, twohand = true, default = true, },
implicit = "+(10-15)% to Block chance",
implicitModTypes = { { "block" }, },
weapon = { PhysicalMin = 33, PhysicalMax = 55, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 37, dex = 67, int = 27, },
+ req = { level = 37, dex = 52, int = 22, },
}
itemBases["Hefty Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, warstaff = true, karui_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 39, PhysicalMax = 80, CritChanceBase = 10, AttackRateBase = 1.35, Range = 13, },
- req = { level = 45, dex = 81, int = 33, },
+ weapon = { PhysicalMin = 39, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.35, Range = 13, },
+ req = { level = 46, dex = 64, int = 26, },
}
itemBases["Smooth Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
- tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, warstaff = true, karui_basetype = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 62, PhysicalMax = 84, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, },
- req = { level = 47, dex = 84, int = 34, },
+ weapon = { PhysicalMin = 64, PhysicalMax = 87, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, },
+ req = { level = 49, dex = 68, int = 28, },
}
itemBases["Anima Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 47, PhysicalMax = 79, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 52, dex = 93, int = 37, },
+ req = { level = 52, dex = 72, int = 29, },
}
itemBases["Graceful Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 47, PhysicalMax = 87, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 56, dex = 100, int = 40, },
+ req = { level = 56, dex = 77, int = 31, },
}
itemBases["Wyrm Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 57, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 65, dex = 116, int = 45, },
+ req = { level = 65, dex = 89, int = 36, },
}
itemBases["Reaching Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "16% increased Melee Strike Range with this weapon",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 45, dex = 81, int = 33, },
+ req = { level = 45, dex = 63, int = 26, },
}
itemBases["Barbarous Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 43, PhysicalMax = 72, CritChanceBase = 11.5, AttackRateBase = 1.4, Range = 13, },
- req = { level = 48, dex = 86, int = 35, },
+ req = { level = 48, dex = 67, int = 27, },
}
itemBases["Arcing Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 30, LightningMax = 57, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 51, dex = 91, int = 36, },
+ weapon = { PhysicalMin = 14, PhysicalMax = 55, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
+ req = { level = 51, dex = 71, int = 29, },
}
itemBases["Waxing Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 40, PhysicalMax = 83, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
- req = { level = 55, dex = 98, int = 39, },
+ weapon = { PhysicalMin = 39, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
+ req = { level = 54, dex = 75, int = 30, },
}
itemBases["Bladed Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 59, dex = 105, int = 42, },
+ req = { level = 59, dex = 81, int = 33, },
}
itemBases["Guardian Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "+(10-15)% to Block chance",
implicitModTypes = { { "block" }, },
weapon = { PhysicalMin = 49, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 62, dex = 110, int = 44, },
+ req = { level = 62, dex = 85, int = 34, },
}
itemBases["Sinister Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 55, PhysicalMax = 92, CritChanceBase = 11.5, AttackRateBase = 1.4, Range = 13, },
- req = { level = 67, dex = 135, int = 53, },
+ req = { level = 67, dex = 104, int = 41, },
}
itemBases["Lunar Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 50, PhysicalMax = 103, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
- req = { level = 72, dex = 150, int = 59, },
+ req = { level = 72, dex = 115, int = 46, },
}
itemBases["Striking Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "16% increased Melee Strike Range with this weapon",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 53, PhysicalMax = 111, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 77, dex = 165, int = 64, },
+ req = { level = 77, dex = 127, int = 50, },
}
itemBases["Bolting Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 43, LightningMax = 172, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 78, dex = 165, int = 64, },
+ weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
+ req = { level = 78, dex = 127, int = 50, },
}
itemBases["Aegis Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "+(10-15)% to Block chance",
implicitModTypes = { { "block" }, },
weapon = { PhysicalMin = 58, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 79, dex = 165, int = 64, },
+ req = { level = 79, dex = 127, int = 50, },
}
itemBases["Razor Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 65, PhysicalMax = 108, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 77, dex = 165, int = 64, },
+ req = { level = 77, dex = 127, int = 50, },
+}
+itemBases["Dreaming Quarterstaff"] = {
+ type = "Staff",
+ subType = "Warstaff",
+ quality = 20,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, warstaff = true, karui_basetype = true, weapon = true, twohand = true, default = true, },
+ implicitModTypes = { },
+ weapon = { PhysicalMin = 99, PhysicalMax = 133, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, },
+ req = { level = 78, dex = 127, int = 50, },
}
itemBases["Reaching Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "16% increased Melee Strike Range with this weapon",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 45, dex = 81, int = 33, },
+ req = { level = 45, dex = 63, int = 26, },
}
itemBases["Barbarous Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 43, PhysicalMax = 72, CritChanceBase = 11.5, AttackRateBase = 1.4, Range = 13, },
- req = { level = 48, dex = 86, int = 35, },
+ req = { level = 48, dex = 67, int = 27, },
}
itemBases["Arcing Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 30, LightningMax = 57, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 51, dex = 91, int = 36, },
+ weapon = { PhysicalMin = 14, PhysicalMax = 55, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
+ req = { level = 51, dex = 71, int = 29, },
}
itemBases["Waxing Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { PhysicalMin = 40, PhysicalMax = 83, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
- req = { level = 55, dex = 98, int = 39, },
+ weapon = { PhysicalMin = 39, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
+ req = { level = 54, dex = 75, int = 30, },
}
itemBases["Bladed Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 59, dex = 105, int = 42, },
+ req = { level = 59, dex = 81, int = 33, },
}
itemBases["Guardian Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "+(10-15)% to Block chance",
implicitModTypes = { { "block" }, },
weapon = { PhysicalMin = 49, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 62, dex = 110, int = 44, },
+ req = { level = 62, dex = 85, int = 34, },
}
itemBases["Sinister Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 55, PhysicalMax = 92, CritChanceBase = 11.5, AttackRateBase = 1.4, Range = 13, },
- req = { level = 67, dex = 135, int = 53, },
+ req = { level = 67, dex = 104, int = 41, },
}
itemBases["Lunar Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 50, PhysicalMax = 103, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, },
- req = { level = 72, dex = 150, int = 59, },
+ req = { level = 72, dex = 115, int = 46, },
}
itemBases["Striking Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "16% increased Melee Strike Range with this weapon",
implicitModTypes = { { "attack" }, },
weapon = { PhysicalMin = 53, PhysicalMax = 111, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 77, dex = 165, int = 64, },
+ req = { level = 77, dex = 127, int = 50, },
}
itemBases["Bolting Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
- weapon = { LightningMin = 43, LightningMax = 172, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 78, dex = 165, int = 64, },
+ weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
+ req = { level = 78, dex = 127, int = 50, },
}
itemBases["Aegis Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicit = "+(10-15)% to Block chance",
implicitModTypes = { { "block" }, },
weapon = { PhysicalMin = 58, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 79, dex = 165, int = 64, },
+ req = { level = 79, dex = 127, int = 50, },
}
itemBases["Razor Quarterstaff"] = {
type = "Staff",
subType = "Warstaff",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, warstaff = true, weapon = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 65, PhysicalMax = 108, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, },
- req = { level = 77, dex = 165, int = 64, },
+ req = { level = 77, dex = 127, int = 50, },
+}
+itemBases["Dreaming Quarterstaff"] = {
+ type = "Staff",
+ subType = "Warstaff",
+ quality = 20,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, warstaff = true, karui_basetype = true, weapon = true, twohand = true, default = true, },
+ implicitModTypes = { },
+ weapon = { PhysicalMin = 99, PhysicalMax = 133, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, },
+ req = { level = 78, dex = 127, int = 50, },
}
diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua
index ba99702b61..e716802ea4 100644
--- a/src/Data/Bases/sword.lua
+++ b/src/Data/Bases/sword.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Golden Blade"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { demigods = true, onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicit = "+(16-24) to all Attributes",
implicitModTypes = { { "attribute" }, },
@@ -15,8 +15,7 @@ itemBases["Golden Blade"] = {
itemBases["Energy Blade One Handed"] = {
type = "One Handed Sword",
quality = 20,
- hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 11, },
@@ -25,7 +24,7 @@ itemBases["Energy Blade One Handed"] = {
itemBases["Shortsword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
@@ -34,115 +33,115 @@ itemBases["Shortsword"] = {
itemBases["Broadsword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 8, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 6, str = 10, dex = 10, },
+ req = { level = 6, str = 9, dex = 9, },
}
itemBases["Vampiric Blade"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 11, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 11, str = 16, dex = 16, },
+ req = { level = 11, str = 14, dex = 14, },
}
itemBases["Scimitar"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 16, str = 22, dex = 22, },
+ req = { level = 16, str = 19, dex = 19, },
}
itemBases["Charred Shortsword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 34, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 21, str = 28, dex = 28, },
+ req = { level = 21, str = 23, dex = 23, },
}
itemBases["Sickle Sword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { maraketh_basetype = true, onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 28, str = 37, dex = 37, },
+ req = { level = 28, str = 29, dex = 29, },
}
itemBases["Falchion"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 37, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 33, str = 43, dex = 43, },
+ req = { level = 33, str = 34, dex = 34, },
}
itemBases["Treasured Blade"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, vaal_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 27, PhysicalMax = 45, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 40, str = 51, dex = 51, },
+ req = { level = 40, str = 40, dex = 40, },
}
itemBases["Cutlass"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 45, str = 57, dex = 57, },
+ req = { level = 45, str = 45, dex = 45, },
}
itemBases["Runic Shortsword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 26, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.65, Range = 11, },
- req = { level = 50, str = 63, dex = 63, },
+ req = { level = 50, str = 49, dex = 49, },
}
itemBases["Messer"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, },
- req = { level = 52, str = 66, dex = 66, },
+ req = { level = 52, str = 51, dex = 51, },
}
itemBases["Commander Sword"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, },
- req = { level = 54, str = 68, dex = 68, },
+ req = { level = 54, str = 53, dex = 53, },
}
itemBases["Dark Blade"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 43, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
- req = { level = 65, str = 81, dex = 81, },
+ req = { level = 65, str = 63, dex = 63, },
}
itemBases["Golden Blade"] = {
type = "One Handed Sword",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, ezomyte_basetype = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, },
@@ -153,7 +152,7 @@ itemBases["Energy Blade One Handed"] = {
type = "One Handed Sword",
quality = 20,
hidden = true,
- socketLimit = 2,
+ socketLimit = 3,
tags = { onehand = true, not_for_sale = true, weapon = true, sword = true, one_hand_weapon = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 11, },
@@ -163,8 +162,7 @@ itemBases["Energy Blade One Handed"] = {
itemBases["Keyblade"] = {
type = "Two Handed Sword",
quality = 20,
- hidden = true,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
@@ -173,8 +171,7 @@ itemBases["Keyblade"] = {
itemBases["Energy Blade Two Handed"] = {
type = "Two Handed Sword",
quality = 20,
- hidden = true,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, },
@@ -183,7 +180,7 @@ itemBases["Energy Blade Two Handed"] = {
itemBases["Corroded Longsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 9, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
@@ -192,119 +189,129 @@ itemBases["Corroded Longsword"] = {
itemBases["Iron Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 13, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, },
- req = { level = 6, str = 10, dex = 10, },
+ req = { level = 6, str = 9, dex = 9, },
}
itemBases["Blessed Claymore"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, ezomyte_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 11, str = 16, dex = 16, },
+ req = { level = 11, str = 14, dex = 14, },
}
itemBases["Broad Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 25, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, },
- req = { level = 16, str = 22, dex = 22, },
+ req = { level = 16, str = 19, dex = 19, },
}
itemBases["Rippled Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 22, str = 30, dex = 30, },
+ req = { level = 22, str = 24, dex = 24, },
}
itemBases["Arced Longsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, maraketh_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 31, PhysicalMax = 58, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, },
- req = { level = 28, str = 37, dex = 37, },
+ req = { level = 28, str = 29, dex = 29, },
}
itemBases["Stone Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 40, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 33, str = 43, dex = 43, },
+ req = { level = 33, str = 34, dex = 34, },
}
itemBases["Obsidian Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, vaal_basetype = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 49, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, },
- req = { level = 36, str = 46, dex = 46, },
+ req = { level = 36, str = 37, dex = 37, },
}
itemBases["Keen Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 45, str = 57, dex = 57, },
+ req = { level = 45, str = 45, dex = 45, },
}
itemBases["Ancient Greatblade"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 55, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, },
- req = { level = 49, str = 62, dex = 62, },
+ req = { level = 49, str = 49, dex = 49, },
}
itemBases["Flanged Greatblade"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 51, PhysicalMax = 106, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 52, str = 66, dex = 66, },
+ req = { level = 52, str = 51, dex = 51, },
}
itemBases["Regalia Longsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 61, PhysicalMax = 92, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, },
- req = { level = 54, str = 68, dex = 68, },
+ req = { level = 54, str = 53, dex = 53, },
}
itemBases["Ultra Greatsword"] = {
type = "Two Handed Sword",
quality = 20,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 72, PhysicalMax = 119, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, },
- req = { level = 65, str = 81, dex = 81, },
+ req = { level = 65, str = 63, dex = 63, },
}
itemBases["Energy Blade Two Handed"] = {
type = "Two Handed Sword",
quality = 20,
hidden = true,
- socketLimit = 3,
+ socketLimit = 4,
tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, },
implicitModTypes = { },
weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, },
req = { },
}
+itemBases["Keyblade"] = {
+ type = "Two Handed Sword",
+ quality = 20,
+ hidden = true,
+ socketLimit = 4,
+ tags = { two_hand_weapon = true, not_for_sale = true, weapon = true, sword = true, twohand = true, default = true, },
+ implicitModTypes = { },
+ weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
+ req = { },
+}
diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua
index 8ad7a63a7c..5d37dfdfce 100644
--- a/src/Data/Bases/wand.lua
+++ b/src/Data/Bases/wand.lua
@@ -5,7 +5,7 @@ local itemBases = ...
itemBases["Withered Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Chaos Bolt",
implicitModTypes = { },
@@ -14,7 +14,7 @@ itemBases["Withered Wand"] = {
itemBases["Bone Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_chaos_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Bone Blast",
implicitModTypes = { },
@@ -23,7 +23,7 @@ itemBases["Bone Wand"] = {
itemBases["Attuned Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
implicit = "Grants Skill: Level (1-20) Mana Drain",
implicitModTypes = { },
@@ -32,7 +32,7 @@ itemBases["Attuned Wand"] = {
itemBases["Siphoning Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
implicit = "Grants Skill: Level (1-20) Power Siphon",
implicitModTypes = { },
@@ -41,7 +41,7 @@ itemBases["Siphoning Wand"] = {
itemBases["Volatile Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_physical_spell_mods = true, onehand = true, no_cold_spell_mods = true, wand = true, no_lightning_spell_mods = true, no_chaos_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Volatile Dead",
implicitModTypes = { },
@@ -50,7 +50,7 @@ itemBases["Volatile Wand"] = {
itemBases["Galvanic Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_physical_spell_mods = true, no_cold_spell_mods = true, no_chaos_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Galvanic Field",
implicitModTypes = { },
@@ -59,7 +59,7 @@ itemBases["Galvanic Wand"] = {
itemBases["Acrid Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
implicit = "Grants Skill: Level (1-20) Decompose",
implicitModTypes = { },
@@ -68,7 +68,7 @@ itemBases["Acrid Wand"] = {
itemBases["Offering Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_chaos_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Exsanguinate",
implicitModTypes = { },
@@ -77,7 +77,7 @@ itemBases["Offering Wand"] = {
itemBases["Frigid Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_physical_spell_mods = true, no_lightning_spell_mods = true, no_chaos_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Chaos Bolt",
implicitModTypes = { },
@@ -86,7 +86,7 @@ itemBases["Frigid Wand"] = {
itemBases["Torture Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
implicit = "Grants Skill: Level (1-20) Chaos Bolt",
implicitModTypes = { },
@@ -95,7 +95,7 @@ itemBases["Torture Wand"] = {
itemBases["Critical Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
implicit = "Grants Skill: Level (1-20) Chaos Bolt",
implicitModTypes = { },
@@ -104,7 +104,7 @@ itemBases["Critical Wand"] = {
itemBases["Primordial Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { no_fire_spell_mods = true, onehand = true, wand = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, default = true, },
implicit = "Grants Skill: Level (1-20) Wither",
implicitModTypes = { },
@@ -113,17 +113,9 @@ itemBases["Primordial Wand"] = {
itemBases["Dueling Wand"] = {
type = "Wand",
quality = 20,
- socketLimit = 2,
+ socketLimit = 3,
tags = { default = true, onehand = true, wand = true, },
- implicit = "Grants Skill: Level (1-20) Chaos Bolt",
- implicitModTypes = { },
- req = { },
-}
-itemBases["Random Wand"] = {
- type = "Wand",
- hidden = true,
- socketLimit = 2,
- tags = { wand = true, default = true, },
+ implicit = "Grants Skill: Level (1-20) Spellslinger",
implicitModTypes = { },
req = { },
}
diff --git a/src/Data/Essence.lua b/src/Data/Essence.lua
new file mode 100644
index 0000000000..56f97e0a98
--- /dev/null
+++ b/src/Data/Essence.lua
@@ -0,0 +1,86 @@
+-- This file is automatically generated, do not edit!
+-- Item data (c) Grinding Gear Games
+
+return {
+ ["Metadata/Items/Currency/CurrencyLesserEssenceLife"] = { name = "Lesser Essence of the Body", type = "Life", tierLevel = 13, mods = { ["Helmet"] = "IncreasedLife3", ["Body Armour"] = "IncreasedLife3", ["Gloves"] = "IncreasedLife3", ["Boots"] = "IncreasedLife3", ["Shield"] = "IncreasedLife3", ["Belt"] = "IncreasedLife3", ["Buckler"] = "IncreasedLife3", ["Ring"] = "IncreasedLife2", ["Amulet"] = "IncreasedLife2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceMana"] = { name = "Lesser Essence of the Mind", type = "Mana", tierLevel = 13, mods = { ["Belt"] = "IncreasedMana3", ["Boots"] = "IncreasedMana3", ["Gloves"] = "IncreasedMana3", ["Helmet"] = "IncreasedMana3", ["Amulet"] = "IncreasedMana3", ["Ring"] = "IncreasedMana3", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceDefences"] = { name = "Lesser Essence of Enhancement", type = "Defences", tierLevel = 20, mods = { ["Helmet"] = "EssenceDisplayDefences1", ["Body Armour"] = "EssenceDisplayDefences1", ["Gloves"] = "EssenceDisplayDefences1", ["Boots"] = "EssenceDisplayDefences1", ["Shield"] = "EssenceDisplayDefences1", ["Buckler"] = "EssenceDisplayDefences1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssencePhysical"] = { name = "Lesser Essence of Abrasion", type = "Physical", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedPhysicalDamage2", ["One Hand Axe"] = "LocalAddedPhysicalDamage2", ["One Hand Mace"] = "LocalAddedPhysicalDamage2", ["Spear"] = "LocalAddedPhysicalDamage2", ["Dagger"] = "LocalAddedPhysicalDamage2", ["Bow"] = "LocalAddedPhysicalDamage2", ["Flail"] = "LocalAddedPhysicalDamage2", ["Talisman"] = "LocalAddedPhysicalDamage2", ["Two Hand Sword"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedPhysicalDamageTwoHand2", ["Warstaff"] = "LocalAddedPhysicalDamageTwoHand2", ["Crossbow"] = "LocalAddedPhysicalDamageTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceFire"] = { name = "Lesser Essence of Flames", type = "Fire", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedFireDamage2", ["One Hand Axe"] = "LocalAddedFireDamage2", ["One Hand Mace"] = "LocalAddedFireDamage2", ["Spear"] = "LocalAddedFireDamage2", ["Dagger"] = "LocalAddedFireDamage2", ["Bow"] = "LocalAddedFireDamage2", ["Flail"] = "LocalAddedFireDamage2", ["Talisman"] = "LocalAddedFireDamage2", ["Two Hand Sword"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedFireDamageTwoHand2", ["Warstaff"] = "LocalAddedFireDamageTwoHand2", ["Crossbow"] = "LocalAddedFireDamageTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceCold"] = { name = "Lesser Essence of Ice", type = "Cold", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedColdDamage2", ["One Hand Axe"] = "LocalAddedColdDamage2", ["One Hand Mace"] = "LocalAddedColdDamage2", ["Spear"] = "LocalAddedColdDamage2", ["Dagger"] = "LocalAddedColdDamage2", ["Bow"] = "LocalAddedColdDamage2", ["Flail"] = "LocalAddedColdDamage2", ["Talisman"] = "LocalAddedColdDamage2", ["Two Hand Sword"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedColdDamageTwoHand2", ["Warstaff"] = "LocalAddedColdDamageTwoHand2", ["Crossbow"] = "LocalAddedColdDamageTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceLightning"] = { name = "Lesser Essence of Electricity", type = "Lightning", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedLightningDamage2", ["One Hand Axe"] = "LocalAddedLightningDamage2", ["One Hand Mace"] = "LocalAddedLightningDamage2", ["Spear"] = "LocalAddedLightningDamage2", ["Dagger"] = "LocalAddedLightningDamage2", ["Bow"] = "LocalAddedLightningDamage2", ["Flail"] = "LocalAddedLightningDamage2", ["Talisman"] = "LocalAddedLightningDamage2", ["Two Hand Sword"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedLightningDamageTwoHand2", ["Warstaff"] = "LocalAddedLightningDamageTwoHand2", ["Crossbow"] = "LocalAddedLightningDamageTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceChaos"] = { name = "Lesser Essence of Ruin", type = "Chaos", tierLevel = 25, mods = { ["Helmet"] = "ChaosResist1", ["Body Armour"] = "ChaosResist1", ["Gloves"] = "ChaosResist1", ["Boots"] = "ChaosResist1", ["Shield"] = "ChaosResist1", ["Ring"] = "ChaosResist1", ["Amulet"] = "ChaosResist1", ["Belt"] = "ChaosResist1", ["Buckler"] = "ChaosResist1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceAttack"] = { name = "Lesser Essence of Battle", type = "Attack", tierLevel = 20, mods = { ["One Hand Sword"] = "LocalIncreasedAccuracy3", ["One Hand Axe"] = "LocalIncreasedAccuracy3", ["One Hand Mace"] = "LocalIncreasedAccuracy3", ["Two Hand Sword"] = "LocalIncreasedAccuracy3", ["Two Hand Axe"] = "LocalIncreasedAccuracy3", ["Two Hand Mace"] = "LocalIncreasedAccuracy3", ["Spear"] = "LocalIncreasedAccuracy3", ["Bow"] = "LocalIncreasedAccuracy3", ["Warstaff"] = "LocalIncreasedAccuracy3", ["Dagger"] = "LocalIncreasedAccuracy3", ["Crossbow"] = "LocalIncreasedAccuracy3", ["Flail"] = "LocalIncreasedAccuracy3", ["Talisman"] = "LocalIncreasedAccuracy3", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceCaster"] = { name = "Lesser Essence of Sorcery", type = "Caster", tierLevel = 13, mods = { ["Focus"] = "SpellDamageOnWeapon2", ["Wand"] = "SpellDamageOnWeapon2", ["Staff"] = "SpellDamageOnTwoHandWeapon2", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceSpeed"] = { name = "Lesser Essence of Haste", type = "Speed", tierLevel = 25, mods = { ["One Hand Sword"] = "LocalIncreasedAttackSpeed3", ["One Hand Axe"] = "LocalIncreasedAttackSpeed3", ["One Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Two Hand Sword"] = "LocalIncreasedAttackSpeed3", ["Two Hand Axe"] = "LocalIncreasedAttackSpeed3", ["Two Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Spear"] = "LocalIncreasedAttackSpeed3", ["Bow"] = "LocalIncreasedAttackSpeed3", ["Warstaff"] = "LocalIncreasedAttackSpeed3", ["Dagger"] = "LocalIncreasedAttackSpeed3", ["Crossbow"] = "LocalIncreasedAttackSpeed3", ["Flail"] = "LocalIncreasedAttackSpeed3", ["Talisman"] = "LocalIncreasedAttackSpeed3", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceAttribute"] = { name = "Lesser Essence of the Infinite", type = "Attribute", tierLevel = 13, mods = { ["One Hand Sword"] = "EssenceDisplayAttributes1", ["One Hand Axe"] = "EssenceDisplayAttributes1", ["One Hand Mace"] = "EssenceDisplayAttributes1", ["Two Hand Sword"] = "EssenceDisplayAttributes1", ["Two Hand Axe"] = "EssenceDisplayAttributes1", ["Two Hand Mace"] = "EssenceDisplayAttributes1", ["Spear"] = "EssenceDisplayAttributes1", ["Bow"] = "EssenceDisplayAttributes1", ["Warstaff"] = "EssenceDisplayAttributes1", ["Dagger"] = "EssenceDisplayAttributes1", ["Helmet"] = "EssenceDisplayAttributes1", ["Body Armour"] = "EssenceDisplayAttributes1", ["Gloves"] = "EssenceDisplayAttributes1", ["Boots"] = "EssenceDisplayAttributes1", ["Shield"] = "EssenceDisplayAttributes1", ["Staff"] = "EssenceDisplayAttributes1", ["Wand"] = "EssenceDisplayAttributes1", ["Sceptre"] = "EssenceDisplayAttributes1", ["Ring"] = "EssenceDisplayAttributes1", ["Amulet"] = "EssenceDisplayAttributes1", ["Belt"] = "EssenceDisplayAttributes1", ["Quiver"] = "EssenceDisplayAttributes1", ["Crossbow"] = "EssenceDisplayAttributes1", ["Flail"] = "EssenceDisplayAttributes1", ["Talisman"] = "EssenceDisplayAttributes1", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceLife"] = { name = "Essence of the Body", type = "Life", tierLevel = 40, mods = { ["Belt"] = "IncreasedLife7", ["Body Armour"] = "IncreasedLife7", ["Helmet"] = "IncreasedLife7", ["Shield"] = "IncreasedLife7", ["Buckler"] = "IncreasedLife7", ["Amulet"] = "IncreasedLife6", ["Boots"] = "IncreasedLife6", ["Gloves"] = "IncreasedLife6", ["Ring"] = "IncreasedLife6", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceMana"] = { name = "Essence of the Mind", type = "Mana", tierLevel = 40, mods = { ["Boots"] = "IncreasedMana6", ["Gloves"] = "IncreasedMana6", ["Helmet"] = "IncreasedMana6", ["Belt"] = "IncreasedMana6", ["Ring"] = "IncreasedMana7", ["Amulet"] = "IncreasedMana7", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceDefences"] = { name = "Essence of Enhancement", type = "Defences", tierLevel = 40, mods = { ["Helmet"] = "EssenceDisplayDefences2", ["Body Armour"] = "EssenceDisplayDefences2", ["Gloves"] = "EssenceDisplayDefences2", ["Boots"] = "EssenceDisplayDefences2", ["Shield"] = "EssenceDisplayDefences2", ["Buckler"] = "EssenceDisplayDefences2", }, },
+ ["Metadata/Items/Currency/CurrencyEssencePhysical"] = { name = "Essence of Abrasion", type = "Physical", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalAddedPhysicalDamage5", ["One Hand Axe"] = "LocalAddedPhysicalDamage5", ["One Hand Mace"] = "LocalAddedPhysicalDamage5", ["Spear"] = "LocalAddedPhysicalDamage5", ["Dagger"] = "LocalAddedPhysicalDamage5", ["Bow"] = "LocalAddedPhysicalDamage5", ["Flail"] = "LocalAddedPhysicalDamage5", ["Talisman"] = "LocalAddedPhysicalDamage5", ["Two Hand Sword"] = "LocalAddedPhysicalDamageTwoHand5", ["Two Hand Axe"] = "LocalAddedPhysicalDamageTwoHand5", ["Two Hand Mace"] = "LocalAddedPhysicalDamageTwoHand5", ["Warstaff"] = "LocalAddedPhysicalDamageTwoHand5", ["Crossbow"] = "LocalAddedPhysicalDamageTwoHand5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceFire"] = { name = "Essence of Flames", type = "Fire", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalAddedFireDamage5", ["One Hand Axe"] = "LocalAddedFireDamage5", ["One Hand Mace"] = "LocalAddedFireDamage5", ["Spear"] = "LocalAddedFireDamage5", ["Dagger"] = "LocalAddedFireDamage5", ["Bow"] = "LocalAddedFireDamage5", ["Flail"] = "LocalAddedFireDamage5", ["Talisman"] = "LocalAddedFireDamage5", ["Two Hand Sword"] = "LocalAddedFireDamageTwoHand5", ["Two Hand Axe"] = "LocalAddedFireDamageTwoHand5", ["Two Hand Mace"] = "LocalAddedFireDamageTwoHand5", ["Warstaff"] = "LocalAddedFireDamageTwoHand5", ["Crossbow"] = "LocalAddedFireDamageTwoHand5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceCold"] = { name = "Essence of Ice", type = "Cold", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalAddedColdDamage5", ["One Hand Axe"] = "LocalAddedColdDamage5", ["One Hand Mace"] = "LocalAddedColdDamage5", ["Spear"] = "LocalAddedColdDamage5", ["Dagger"] = "LocalAddedColdDamage5", ["Bow"] = "LocalAddedColdDamage5", ["Flail"] = "LocalAddedColdDamage5", ["Talisman"] = "LocalAddedColdDamage5", ["Two Hand Sword"] = "LocalAddedColdDamageTwoHand5", ["Two Hand Axe"] = "LocalAddedColdDamageTwoHand5", ["Two Hand Mace"] = "LocalAddedColdDamageTwoHand5", ["Warstaff"] = "LocalAddedColdDamageTwoHand5", ["Crossbow"] = "LocalAddedColdDamageTwoHand5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceLightning"] = { name = "Essence of Electricity", type = "Lightning", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalAddedLightningDamage5", ["One Hand Axe"] = "LocalAddedLightningDamage5", ["One Hand Mace"] = "LocalAddedLightningDamage5", ["Spear"] = "LocalAddedLightningDamage5", ["Dagger"] = "LocalAddedLightningDamage5", ["Bow"] = "LocalAddedLightningDamage5", ["Flail"] = "LocalAddedLightningDamage5", ["Talisman"] = "LocalAddedLightningDamage5", ["Two Hand Sword"] = "LocalAddedLightningDamageTwoHand5", ["Two Hand Axe"] = "LocalAddedLightningDamageTwoHand5", ["Two Hand Mace"] = "LocalAddedLightningDamageTwoHand5", ["Warstaff"] = "LocalAddedLightningDamageTwoHand5", ["Crossbow"] = "LocalAddedLightningDamageTwoHand5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceChaos"] = { name = "Essence of Ruin", type = "Chaos", tierLevel = 40, mods = { ["Helmet"] = "ChaosResist2", ["Body Armour"] = "ChaosResist2", ["Gloves"] = "ChaosResist2", ["Boots"] = "ChaosResist2", ["Shield"] = "ChaosResist2", ["Ring"] = "ChaosResist2", ["Amulet"] = "ChaosResist2", ["Belt"] = "ChaosResist2", ["Buckler"] = "ChaosResist2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceAttack"] = { name = "Essence of Battle", type = "Attack", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalIncreasedAccuracy5", ["One Hand Axe"] = "LocalIncreasedAccuracy5", ["One Hand Mace"] = "LocalIncreasedAccuracy5", ["Two Hand Sword"] = "LocalIncreasedAccuracy5", ["Two Hand Axe"] = "LocalIncreasedAccuracy5", ["Two Hand Mace"] = "LocalIncreasedAccuracy5", ["Spear"] = "LocalIncreasedAccuracy5", ["Bow"] = "LocalIncreasedAccuracy5", ["Warstaff"] = "LocalIncreasedAccuracy5", ["Dagger"] = "LocalIncreasedAccuracy5", ["Crossbow"] = "LocalIncreasedAccuracy5", ["Flail"] = "LocalIncreasedAccuracy5", ["Talisman"] = "LocalIncreasedAccuracy5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceCaster"] = { name = "Essence of Sorcery", type = "Caster", tierLevel = 40, mods = { ["Focus"] = "SpellDamageOnWeapon4", ["Wand"] = "SpellDamageOnWeapon4", ["Staff"] = "SpellDamageOnTwoHandWeapon4", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceSpeed"] = { name = "Essence of Haste", type = "Speed", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalIncreasedAttackSpeed5", ["One Hand Axe"] = "LocalIncreasedAttackSpeed5", ["One Hand Mace"] = "LocalIncreasedAttackSpeed5", ["Two Hand Sword"] = "LocalIncreasedAttackSpeed5", ["Two Hand Axe"] = "LocalIncreasedAttackSpeed5", ["Two Hand Mace"] = "LocalIncreasedAttackSpeed5", ["Spear"] = "LocalIncreasedAttackSpeed5", ["Bow"] = "LocalIncreasedAttackSpeed5", ["Warstaff"] = "LocalIncreasedAttackSpeed5", ["Dagger"] = "LocalIncreasedAttackSpeed5", ["Crossbow"] = "LocalIncreasedAttackSpeed5", ["Flail"] = "LocalIncreasedAttackSpeed5", ["Talisman"] = "LocalIncreasedAttackSpeed5", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceAttribute"] = { name = "Essence of the Infinite", type = "Attribute", tierLevel = 40, mods = { ["One Hand Sword"] = "EssenceDisplayAttributes2", ["One Hand Axe"] = "EssenceDisplayAttributes2", ["One Hand Mace"] = "EssenceDisplayAttributes2", ["Two Hand Sword"] = "EssenceDisplayAttributes2", ["Two Hand Axe"] = "EssenceDisplayAttributes2", ["Two Hand Mace"] = "EssenceDisplayAttributes2", ["Spear"] = "EssenceDisplayAttributes2", ["Bow"] = "EssenceDisplayAttributes2", ["Warstaff"] = "EssenceDisplayAttributes2", ["Dagger"] = "EssenceDisplayAttributes2", ["Helmet"] = "EssenceDisplayAttributes2", ["Body Armour"] = "EssenceDisplayAttributes2", ["Gloves"] = "EssenceDisplayAttributes2", ["Boots"] = "EssenceDisplayAttributes2", ["Shield"] = "EssenceDisplayAttributes2", ["Staff"] = "EssenceDisplayAttributes2", ["Wand"] = "EssenceDisplayAttributes2", ["Sceptre"] = "EssenceDisplayAttributes2", ["Ring"] = "EssenceDisplayAttributes2", ["Amulet"] = "EssenceDisplayAttributes2", ["Belt"] = "EssenceDisplayAttributes2", ["Quiver"] = "EssenceDisplayAttributes2", ["Crossbow"] = "EssenceDisplayAttributes2", ["Flail"] = "EssenceDisplayAttributes2", ["Talisman"] = "EssenceDisplayAttributes2", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceLife"] = { name = "Greater Essence of the Body", type = "Life", tierLevel = 60, mods = { ["Belt"] = "IncreasedLife8", ["Body Armour"] = "IncreasedLife8", ["Helmet"] = "IncreasedLife8", ["Shield"] = "IncreasedLife8", ["Buckler"] = "IncreasedLife8", ["Amulet"] = "IncreasedLife7", ["Boots"] = "IncreasedLife7", ["Gloves"] = "IncreasedLife7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceMana"] = { name = "Greater Essence of the Mind", type = "Mana", tierLevel = 60, mods = { ["Boots"] = "IncreasedMana7", ["Gloves"] = "IncreasedMana7", ["Helmet"] = "IncreasedMana7", ["Belt"] = "IncreasedMana7", ["Ring"] = "IncreasedMana8", ["Amulet"] = "IncreasedMana8", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceDefences"] = { name = "Greater Essence of Enhancement", type = "Defences", tierLevel = 60, mods = { ["Helmet"] = "EssenceDisplayDefences3", ["Body Armour"] = "EssenceDisplayDefences3", ["Gloves"] = "EssenceDisplayDefences3", ["Boots"] = "EssenceDisplayDefences3", ["Shield"] = "EssenceDisplayDefences3", ["Buckler"] = "EssenceDisplayDefences3", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssencePhysical"] = { name = "Greater Essence of Abrasion", type = "Physical", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalAddedPhysicalDamage7", ["One Hand Axe"] = "LocalAddedPhysicalDamage7", ["One Hand Mace"] = "LocalAddedPhysicalDamage7", ["Spear"] = "LocalAddedPhysicalDamage7", ["Dagger"] = "LocalAddedPhysicalDamage7", ["Bow"] = "LocalAddedPhysicalDamage7", ["Flail"] = "LocalAddedPhysicalDamage7", ["Talisman"] = "LocalAddedPhysicalDamage7", ["Two Hand Sword"] = "LocalAddedPhysicalDamageTwoHand7", ["Two Hand Axe"] = "LocalAddedPhysicalDamageTwoHand7", ["Two Hand Mace"] = "LocalAddedPhysicalDamageTwoHand7", ["Warstaff"] = "LocalAddedPhysicalDamageTwoHand7", ["Crossbow"] = "LocalAddedPhysicalDamageTwoHand7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceFire"] = { name = "Greater Essence of Flames", type = "Fire", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalAddedFireDamage7", ["One Hand Axe"] = "LocalAddedFireDamage7", ["One Hand Mace"] = "LocalAddedFireDamage7", ["Spear"] = "LocalAddedFireDamage7", ["Dagger"] = "LocalAddedFireDamage7", ["Bow"] = "LocalAddedFireDamage7", ["Flail"] = "LocalAddedFireDamage7", ["Talisman"] = "LocalAddedFireDamage7", ["Two Hand Sword"] = "LocalAddedFireDamageTwoHand7", ["Two Hand Axe"] = "LocalAddedFireDamageTwoHand7", ["Two Hand Mace"] = "LocalAddedFireDamageTwoHand7", ["Warstaff"] = "LocalAddedFireDamageTwoHand7", ["Crossbow"] = "LocalAddedFireDamageTwoHand7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceCold"] = { name = "Greater Essence of Ice", type = "Cold", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalAddedColdDamage7", ["One Hand Axe"] = "LocalAddedColdDamage7", ["One Hand Mace"] = "LocalAddedColdDamage7", ["Spear"] = "LocalAddedColdDamage7", ["Dagger"] = "LocalAddedColdDamage7", ["Bow"] = "LocalAddedColdDamage7", ["Flail"] = "LocalAddedColdDamage7", ["Talisman"] = "LocalAddedColdDamage7", ["Two Hand Sword"] = "LocalAddedColdDamageTwoHand7", ["Two Hand Axe"] = "LocalAddedColdDamageTwoHand7", ["Two Hand Mace"] = "LocalAddedColdDamageTwoHand7", ["Warstaff"] = "LocalAddedColdDamageTwoHand7", ["Crossbow"] = "LocalAddedColdDamageTwoHand7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceLightning"] = { name = "Greater Essence of Electricity", type = "Lightning", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalAddedLightningDamage7", ["One Hand Axe"] = "LocalAddedLightningDamage7", ["One Hand Mace"] = "LocalAddedLightningDamage7", ["Spear"] = "LocalAddedLightningDamage7", ["Dagger"] = "LocalAddedLightningDamage7", ["Bow"] = "LocalAddedLightningDamage7", ["Flail"] = "LocalAddedLightningDamage7", ["Talisman"] = "LocalAddedLightningDamage7", ["Two Hand Sword"] = "LocalAddedLightningDamageTwoHand7", ["Two Hand Axe"] = "LocalAddedLightningDamageTwoHand7", ["Two Hand Mace"] = "LocalAddedLightningDamageTwoHand7", ["Warstaff"] = "LocalAddedLightningDamageTwoHand7", ["Crossbow"] = "LocalAddedLightningDamageTwoHand7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceChaos"] = { name = "Greater Essence of Ruin", type = "Chaos", tierLevel = 60, mods = { ["Helmet"] = "ChaosResist4", ["Body Armour"] = "ChaosResist4", ["Gloves"] = "ChaosResist4", ["Boots"] = "ChaosResist4", ["Shield"] = "ChaosResist4", ["Ring"] = "ChaosResist4", ["Amulet"] = "ChaosResist4", ["Belt"] = "ChaosResist4", ["Buckler"] = "ChaosResist4", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceAttack"] = { name = "Greater Essence of Battle", type = "Attack", tierLevel = 60, mods = { ["Gloves"] = "IncreasedAccuracy7", ["Quiver"] = "IncreasedAccuracy7", ["One Hand Sword"] = "IncreasedAccuracy7", ["One Hand Axe"] = "IncreasedAccuracy7", ["One Hand Mace"] = "IncreasedAccuracy7", ["Two Hand Sword"] = "IncreasedAccuracy7", ["Two Hand Axe"] = "IncreasedAccuracy7", ["Two Hand Mace"] = "IncreasedAccuracy7", ["Spear"] = "IncreasedAccuracy7", ["Bow"] = "IncreasedAccuracy7", ["Warstaff"] = "IncreasedAccuracy7", ["Dagger"] = "IncreasedAccuracy7", ["Crossbow"] = "IncreasedAccuracy7", ["Flail"] = "IncreasedAccuracy7", ["Talisman"] = "IncreasedAccuracy7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceCaster"] = { name = "Greater Essence of Sorcery", type = "Caster", tierLevel = 60, mods = { ["Focus"] = "SpellDamageOnWeapon6", ["Wand"] = "SpellDamageOnWeapon6", ["Staff"] = "SpellDamageOnTwoHandWeapon6", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceSpeed"] = { name = "Greater Essence of Haste", type = "Speed", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalIncreasedAttackSpeed7", ["One Hand Axe"] = "LocalIncreasedAttackSpeed7", ["One Hand Mace"] = "LocalIncreasedAttackSpeed7", ["Two Hand Sword"] = "LocalIncreasedAttackSpeed7", ["Two Hand Axe"] = "LocalIncreasedAttackSpeed7", ["Two Hand Mace"] = "LocalIncreasedAttackSpeed7", ["Spear"] = "LocalIncreasedAttackSpeed7", ["Bow"] = "LocalIncreasedAttackSpeed7", ["Warstaff"] = "LocalIncreasedAttackSpeed7", ["Dagger"] = "LocalIncreasedAttackSpeed7", ["Crossbow"] = "LocalIncreasedAttackSpeed7", ["Flail"] = "LocalIncreasedAttackSpeed7", ["Talisman"] = "LocalIncreasedAttackSpeed7", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceAttribute"] = { name = "Greater Essence of the Infinite", type = "Attribute", tierLevel = 60, mods = { ["One Hand Sword"] = "EssenceDisplayAttributes3", ["One Hand Axe"] = "EssenceDisplayAttributes3", ["One Hand Mace"] = "EssenceDisplayAttributes3", ["Two Hand Sword"] = "EssenceDisplayAttributes3", ["Two Hand Axe"] = "EssenceDisplayAttributes3", ["Two Hand Mace"] = "EssenceDisplayAttributes3", ["Spear"] = "EssenceDisplayAttributes3", ["Bow"] = "EssenceDisplayAttributes3", ["Warstaff"] = "EssenceDisplayAttributes3", ["Dagger"] = "EssenceDisplayAttributes3", ["Helmet"] = "EssenceDisplayAttributes3", ["Body Armour"] = "EssenceDisplayAttributes3", ["Gloves"] = "EssenceDisplayAttributes3", ["Boots"] = "EssenceDisplayAttributes3", ["Shield"] = "EssenceDisplayAttributes3", ["Staff"] = "EssenceDisplayAttributes3", ["Wand"] = "EssenceDisplayAttributes3", ["Sceptre"] = "EssenceDisplayAttributes3", ["Ring"] = "EssenceDisplayAttributes3", ["Amulet"] = "EssenceDisplayAttributes3", ["Belt"] = "EssenceDisplayAttributes3", ["Quiver"] = "EssenceDisplayAttributes3", ["Crossbow"] = "EssenceDisplayAttributes3", ["Flail"] = "EssenceDisplayAttributes3", ["Talisman"] = "EssenceDisplayAttributes3", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceLife"] = { name = "Perfect Essence of the Body", type = "Life", tierLevel = 72, mods = { ["Body Armour"] = "EssenceIncreasedLifePercent1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceMana"] = { name = "Perfect Essence of the Mind", type = "Mana", tierLevel = 72, mods = { ["Ring"] = "EssenceIncreasedManaPercent1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceDefences"] = { name = "Perfect Essence of Enhancement", type = "Defences", tierLevel = 72, mods = { ["Amulet"] = "EssenceGlobalDefences1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssencePhysical"] = { name = "Perfect Essence of Abrasion", type = "Physical", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceDamageasExtraPhysical1", ["One Hand Axe"] = "EssenceDamageasExtraPhysical1", ["One Hand Mace"] = "EssenceDamageasExtraPhysical1", ["Spear"] = "EssenceDamageasExtraPhysical1", ["Dagger"] = "EssenceDamageasExtraPhysical1", ["Bow"] = "EssenceDamageasExtraPhysical1", ["Flail"] = "EssenceDamageasExtraPhysical1", ["Talisman"] = "EssenceDamageasExtraPhysical1", ["Two Hand Sword"] = "EssenceDamageasExtraPhysical2H", ["Two Hand Axe"] = "EssenceDamageasExtraPhysical2H", ["Two Hand Mace"] = "EssenceDamageasExtraPhysical2H", ["Warstaff"] = "EssenceDamageasExtraPhysical2H", ["Crossbow"] = "EssenceDamageasExtraPhysical2H", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceFire"] = { name = "Perfect Essence of Flames", type = "Fire", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceDamageasExtraFire1", ["One Hand Axe"] = "EssenceDamageasExtraFire1", ["One Hand Mace"] = "EssenceDamageasExtraFire1", ["Spear"] = "EssenceDamageasExtraFire1", ["Dagger"] = "EssenceDamageasExtraFire1", ["Bow"] = "EssenceDamageasExtraFire1", ["Flail"] = "EssenceDamageasExtraFire1", ["Talisman"] = "EssenceDamageasExtraFire1", ["Two Hand Sword"] = "EssenceDamageasExtraFire2H", ["Two Hand Axe"] = "EssenceDamageasExtraFire2H", ["Two Hand Mace"] = "EssenceDamageasExtraFire2H", ["Warstaff"] = "EssenceDamageasExtraFire2H", ["Crossbow"] = "EssenceDamageasExtraFire2H", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceCold"] = { name = "Perfect Essence of Ice", type = "Cold", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceDamageasExtraCold1", ["One Hand Axe"] = "EssenceDamageasExtraCold1", ["One Hand Mace"] = "EssenceDamageasExtraCold1", ["Spear"] = "EssenceDamageasExtraCold1", ["Dagger"] = "EssenceDamageasExtraCold1", ["Bow"] = "EssenceDamageasExtraCold1", ["Flail"] = "EssenceDamageasExtraCold1", ["Talisman"] = "EssenceDamageasExtraCold1", ["Two Hand Sword"] = "EssenceDamageasExtraCold2H", ["Two Hand Axe"] = "EssenceDamageasExtraCold2H", ["Two Hand Mace"] = "EssenceDamageasExtraCold2H", ["Warstaff"] = "EssenceDamageasExtraCold2H", ["Crossbow"] = "EssenceDamageasExtraCold2H", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceLightning"] = { name = "Perfect Essence of Electricity", type = "Lightning", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceDamageasExtraLightning1", ["One Hand Axe"] = "EssenceDamageasExtraLightning1", ["One Hand Mace"] = "EssenceDamageasExtraLightning1", ["Spear"] = "EssenceDamageasExtraLightning1", ["Dagger"] = "EssenceDamageasExtraLightning1", ["Bow"] = "EssenceDamageasExtraLightning1", ["Flail"] = "EssenceDamageasExtraLightning1", ["Talisman"] = "EssenceDamageasExtraLightning1", ["Two Hand Sword"] = "EssenceDamageasExtraLightning2H", ["Two Hand Axe"] = "EssenceDamageasExtraLightning2H", ["Two Hand Mace"] = "EssenceDamageasExtraLightning2H", ["Warstaff"] = "EssenceDamageasExtraLightning2H", ["Crossbow"] = "EssenceDamageasExtraLightning2H", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceChaos"] = { name = "Perfect Essence of Ruin", type = "Chaos", tierLevel = 72, mods = { ["Body Armour"] = "EssencePhysicalDamageTakenAsChaos1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceAttack"] = { name = "Perfect Essence of Battle", type = "Attack", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceAttackSkillLevel1H1", ["One Hand Axe"] = "EssenceAttackSkillLevel1H1", ["One Hand Mace"] = "EssenceAttackSkillLevel1H1", ["Spear"] = "EssenceAttackSkillLevel1H1", ["Dagger"] = "EssenceAttackSkillLevel1H1", ["Bow"] = "EssenceAttackSkillLevel1H1", ["Flail"] = "EssenceAttackSkillLevel1H1", ["Talisman"] = "EssenceAttackSkillLevel1H1", ["Two Hand Sword"] = "EssenceAttackSkillLevel2H1", ["Two Hand Axe"] = "EssenceAttackSkillLevel2H1", ["Two Hand Mace"] = "EssenceAttackSkillLevel2H1", ["Warstaff"] = "EssenceAttackSkillLevel2H1", ["Crossbow"] = "EssenceAttackSkillLevel2H1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceCaster"] = { name = "Perfect Essence of Sorcery", type = "Caster", tierLevel = 72, mods = { ["Focus"] = "EssenceSpellSkillLevel1H1", ["Wand"] = "EssenceSpellSkillLevel1H1", ["Staff"] = "EssenceSpellSkillLevel2H1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceSpeed"] = { name = "Perfect Essence of Haste", type = "Speed", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceOnslaughtonKill1", ["One Hand Axe"] = "EssenceOnslaughtonKill1", ["One Hand Mace"] = "EssenceOnslaughtonKill1", ["Two Hand Sword"] = "EssenceOnslaughtonKill1", ["Two Hand Axe"] = "EssenceOnslaughtonKill1", ["Two Hand Mace"] = "EssenceOnslaughtonKill1", ["Spear"] = "EssenceOnslaughtonKill1", ["Bow"] = "EssenceOnslaughtonKill1", ["Warstaff"] = "EssenceOnslaughtonKill1", ["Dagger"] = "EssenceOnslaughtonKill1", ["Crossbow"] = "EssenceOnslaughtonKill1", ["Flail"] = "EssenceOnslaughtonKill1", ["Talisman"] = "EssenceOnslaughtonKill1", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceAttribute"] = { name = "Perfect Essence of the Infinite", type = "Attribute", tierLevel = 72, mods = { ["Amulet"] = "EssenceDisplayAttributes5", }, },
+ ["Metadata/Items/Currency/CurrencyCorruptedEssenceHysteria"] = { name = "Essence of Hysteria", type = "Hysteria", tierLevel = 1, mods = { ["Helmet"] = "GlobalMinionSpellSkillGemLevel1", ["Body Armour"] = "AttackerTakesDamage6", ["Gloves"] = "CriticalMultiplier4", ["Boots"] = "MovementVelocity5", ["Ring"] = "ManaRegeneration5", ["Amulet"] = "DamageTakenGainedAsLife4_", ["Belt"] = "StunThreshold10", ["Shield"] = "LocalBlockChance2", ["Quiver"] = "DamageWithBows5", ["Focus"] = "EnergyShieldRechargeRate4", }, },
+ ["Metadata/Items/Currency/CurrencyCorruptedEssenceDelirium"] = { name = "Essence of Delirium", type = "Delirium", tierLevel = 1, mods = { ["Body Armour"] = "EssenceGrantedPassive", }, },
+ ["Metadata/Items/Currency/CurrencyCorruptedEssenceHorror"] = { name = "Essence of Horror", type = "Horror", tierLevel = 1, mods = { ["Gloves"] = "EssenceLocalRuneAndSoulCoreEffect1", ["Boots"] = "EssenceLocalRuneAndSoulCoreEffect1", }, },
+ ["Metadata/Items/Currency/CurrencyCorruptedEssenceInsanity"] = { name = "Essence of Insanity", type = "Insanity", tierLevel = 1, mods = { ["Belt"] = "EssenceCorruptForTwoEnchantments1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceCritical"] = { name = "Lesser Essence of Seeking", type = "Critical", tierLevel = 23, mods = { ["One Hand Sword"] = "LocalCriticalStrikeChance2", ["One Hand Axe"] = "LocalCriticalStrikeChance2", ["One Hand Mace"] = "LocalCriticalStrikeChance2", ["Two Hand Sword"] = "LocalCriticalStrikeChance2", ["Two Hand Axe"] = "LocalCriticalStrikeChance2", ["Two Hand Mace"] = "LocalCriticalStrikeChance2", ["Spear"] = "LocalCriticalStrikeChance2", ["Bow"] = "LocalCriticalStrikeChance2", ["Warstaff"] = "LocalCriticalStrikeChance2", ["Dagger"] = "LocalCriticalStrikeChance2", ["Crossbow"] = "LocalCriticalStrikeChance2", ["Flail"] = "LocalCriticalStrikeChance2", ["Talisman"] = "LocalCriticalStrikeChance2", ["Focus"] = "SpellCriticalStrikeChance2", ["Wand"] = "SpellCriticalStrikeChance2", ["Staff"] = "SpellCriticalStrikeChanceTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceCritical"] = { name = "Essence of Seeking", type = "Critical", tierLevel = 40, mods = { ["One Hand Sword"] = "LocalCriticalStrikeChance3", ["One Hand Axe"] = "LocalCriticalStrikeChance3", ["One Hand Mace"] = "LocalCriticalStrikeChance3", ["Two Hand Sword"] = "LocalCriticalStrikeChance3", ["Two Hand Axe"] = "LocalCriticalStrikeChance3", ["Two Hand Mace"] = "LocalCriticalStrikeChance3", ["Spear"] = "LocalCriticalStrikeChance3", ["Bow"] = "LocalCriticalStrikeChance3", ["Warstaff"] = "LocalCriticalStrikeChance3", ["Dagger"] = "LocalCriticalStrikeChance3", ["Crossbow"] = "LocalCriticalStrikeChance3", ["Flail"] = "LocalCriticalStrikeChance3", ["Talisman"] = "LocalCriticalStrikeChance3", ["Focus"] = "SpellCriticalStrikeChance3", ["Wand"] = "SpellCriticalStrikeChance3", ["Staff"] = "SpellCriticalStrikeChanceTwoHand3", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceCritical"] = { name = "Greater Essence of Seeking", type = "Critical", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalCriticalStrikeChance4", ["One Hand Axe"] = "LocalCriticalStrikeChance4", ["One Hand Mace"] = "LocalCriticalStrikeChance4", ["Two Hand Sword"] = "LocalCriticalStrikeChance4", ["Two Hand Axe"] = "LocalCriticalStrikeChance4", ["Two Hand Mace"] = "LocalCriticalStrikeChance4", ["Spear"] = "LocalCriticalStrikeChance4", ["Bow"] = "LocalCriticalStrikeChance4", ["Warstaff"] = "LocalCriticalStrikeChance4", ["Dagger"] = "LocalCriticalStrikeChance4", ["Crossbow"] = "LocalCriticalStrikeChance4", ["Flail"] = "LocalCriticalStrikeChance4", ["Talisman"] = "LocalCriticalStrikeChance4", ["Focus"] = "SpellCriticalStrikeChance4", ["Wand"] = "SpellCriticalStrikeChance4", ["Staff"] = "SpellCriticalStrikeChanceTwoHand4", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceCritical"] = { name = "Perfect Essence of Seeking", type = "Critical", tierLevel = 72, mods = { ["Body Armour"] = "EssenceReducedCriticalDamageAgainstYou1", }, },
+ ["Metadata/Items/Currency/CurrencyCorruptedEssenceAbyss"] = { name = "Essence of the Abyss", type = "Abyss", tierLevel = 1, mods = { }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceFireResist"] = { name = "Lesser Essence of Insulation", type = "FireResist", tierLevel = 13, mods = { ["Helmet"] = "FireResist2", ["Body Armour"] = "FireResist2", ["Gloves"] = "FireResist2", ["Boots"] = "FireResist2", ["Shield"] = "FireResist2", ["Ring"] = "FireResist2", ["Amulet"] = "FireResist2", ["Belt"] = "FireResist2", ["Buckler"] = "FireResist2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceFireResist"] = { name = "Essence of Insulation", type = "FireResist", tierLevel = 40, mods = { ["Helmet"] = "FireResist4", ["Body Armour"] = "FireResist4", ["Gloves"] = "FireResist4", ["Boots"] = "FireResist4", ["Shield"] = "FireResist4", ["Ring"] = "FireResist4", ["Amulet"] = "FireResist4", ["Belt"] = "FireResist4", ["Buckler"] = "FireResist4", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceFireResist"] = { name = "Greater Essence of Insulation", type = "FireResist", tierLevel = 60, mods = { ["Helmet"] = "FireResist6", ["Body Armour"] = "FireResist6", ["Gloves"] = "FireResist6", ["Boots"] = "FireResist6", ["Shield"] = "FireResist6", ["Ring"] = "FireResist6", ["Amulet"] = "FireResist6", ["Belt"] = "FireResist6", ["Buckler"] = "FireResist6", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceFireResist"] = { name = "Perfect Essence of Insulation", type = "FireResist", tierLevel = 72, mods = { ["Belt"] = "EssenceFireRecoupLife1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceColdResist"] = { name = "Lesser Essence of Thawing", type = "ColdResist", tierLevel = 13, mods = { ["Helmet"] = "ColdResist2", ["Body Armour"] = "ColdResist2", ["Gloves"] = "ColdResist2", ["Boots"] = "ColdResist2", ["Shield"] = "ColdResist2", ["Ring"] = "ColdResist2", ["Amulet"] = "ColdResist2", ["Belt"] = "ColdResist2", ["Buckler"] = "ColdResist2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceColdResist"] = { name = "Essence of Thawing", type = "ColdResist", tierLevel = 40, mods = { ["Helmet"] = "ColdResist4", ["Body Armour"] = "ColdResist4", ["Gloves"] = "ColdResist4", ["Boots"] = "ColdResist4", ["Shield"] = "ColdResist4", ["Ring"] = "ColdResist4", ["Amulet"] = "ColdResist4", ["Belt"] = "ColdResist4", ["Buckler"] = "ColdResist4", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceColdResist"] = { name = "Greater Essence of Thawing", type = "ColdResist", tierLevel = 60, mods = { ["Helmet"] = "ColdResist6", ["Body Armour"] = "ColdResist6", ["Gloves"] = "ColdResist6", ["Boots"] = "ColdResist6", ["Shield"] = "ColdResist6", ["Ring"] = "ColdResist6", ["Amulet"] = "ColdResist6", ["Belt"] = "ColdResist6", ["Buckler"] = "ColdResist6", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceColdResist"] = { name = "Perfect Essence of Thawing", type = "ColdResist", tierLevel = 72, mods = { ["Helmet"] = "EssenceColdRecoupLife1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceLightningResist"] = { name = "Lesser Essence of Grounding", type = "LightningResist", tierLevel = 13, mods = { ["Helmet"] = "LightningResist2", ["Body Armour"] = "LightningResist2", ["Gloves"] = "LightningResist2", ["Boots"] = "LightningResist2", ["Shield"] = "LightningResist2", ["Ring"] = "LightningResist2", ["Amulet"] = "LightningResist2", ["Belt"] = "LightningResist2", ["Buckler"] = "LightningResist2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceLightningResist"] = { name = "Essence of Grounding", type = "LightningResist", tierLevel = 40, mods = { ["Helmet"] = "LightningResist4", ["Body Armour"] = "LightningResist4", ["Gloves"] = "LightningResist4", ["Boots"] = "LightningResist4", ["Shield"] = "LightningResist4", ["Ring"] = "LightningResist4", ["Amulet"] = "LightningResist4", ["Belt"] = "LightningResist4", ["Buckler"] = "LightningResist4", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceLightningResist"] = { name = "Greater Essence of Grounding", type = "LightningResist", tierLevel = 60, mods = { ["Helmet"] = "LightningResist6", ["Body Armour"] = "LightningResist6", ["Gloves"] = "LightningResist6", ["Boots"] = "LightningResist6", ["Shield"] = "LightningResist6", ["Ring"] = "LightningResist6", ["Amulet"] = "LightningResist6", ["Belt"] = "LightningResist6", ["Buckler"] = "LightningResist6", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceLightningResist"] = { name = "Perfect Essence of Grounding", type = "LightningResist", tierLevel = 72, mods = { ["Gloves"] = "EssenceLightningRecoupLife1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceSpeedCaster"] = { name = "Lesser Essence of Alacrity", type = "SpeedCaster", tierLevel = 23, mods = { ["Focus"] = "IncreasedCastSpeed2", ["Wand"] = "IncreasedCastSpeed2", ["Staff"] = "IncreasedCastSpeedTwoHand2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceSpeedCaster"] = { name = "Essence of Alacrity", type = "SpeedCaster", tierLevel = 40, mods = { ["Focus"] = "IncreasedCastSpeed3", ["Wand"] = "IncreasedCastSpeed3", ["Staff"] = "IncreasedCastSpeedTwoHand3", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceSpeedCaster"] = { name = "Greater Essence of Alacrity", type = "SpeedCaster", tierLevel = 60, mods = { ["Focus"] = "IncreasedCastSpeed5", ["Wand"] = "IncreasedCastSpeed5", ["Staff"] = "IncreasedCastSpeedTwoHand5", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceSpeedCaster"] = { name = "Perfect Essence of Alacrity", type = "SpeedCaster", tierLevel = 72, mods = { ["Focus"] = "EssenceManaCostReduction", ["Wand"] = "EssenceManaCostReduction", ["Staff"] = "EssenceManaCostReduction2H", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceRarity"] = { name = "Lesser Essence of Opulence", type = "Rarity", tierLevel = 25, mods = { ["Helmet"] = "ItemFoundRarityIncrease2", ["Ring"] = "ItemFoundRarityIncrease2", ["Amulet"] = "ItemFoundRarityIncrease2", ["Boots"] = "ItemFoundRarityIncrease2", ["Gloves"] = "ItemFoundRarityIncrease2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceRarity"] = { name = "Essence of Opulence", type = "Rarity", tierLevel = 40, mods = { ["Helmet"] = "ItemFoundRarityIncrease3", ["Ring"] = "ItemFoundRarityIncrease3", ["Amulet"] = "ItemFoundRarityIncrease3", ["Boots"] = "ItemFoundRarityIncrease3", ["Gloves"] = "ItemFoundRarityIncrease3", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceRarity"] = { name = "Greater Essence of Opulence", type = "Rarity", tierLevel = 65, mods = { ["Helmet"] = "ItemFoundRarityIncrease4", ["Ring"] = "ItemFoundRarityIncrease4", ["Amulet"] = "ItemFoundRarityIncrease4", ["Boots"] = "ItemFoundRarityIncrease4", ["Gloves"] = "ItemFoundRarityIncrease4", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceRarity"] = { name = "Perfect Essence of Opulence", type = "Rarity", tierLevel = 72, mods = { ["Gloves"] = "EssenceGoldDropped1", }, },
+ ["Metadata/Items/Currency/CurrencyLesserEssenceAlly"] = { name = "Lesser Essence of Command", type = "Ally", tierLevel = 13, mods = { ["Sceptre"] = "NearbyAlliesAllDamage2", }, },
+ ["Metadata/Items/Currency/CurrencyEssenceAlly"] = { name = "Essence of Command", type = "Ally", tierLevel = 40, mods = { ["Sceptre"] = "NearbyAlliesAllDamage4", }, },
+ ["Metadata/Items/Currency/CurrencyGreaterEssenceAlly"] = { name = "Greater Essence of Command", type = "Ally", tierLevel = 65, mods = { ["Sceptre"] = "NearbyAlliesAllDamage6", }, },
+ ["Metadata/Items/Currency/CurrencyPerfectEssenceAlly"] = { name = "Perfect Essence of Command", type = "Ally", tierLevel = 72, mods = { ["Sceptre"] = "EssenceAuraEffect1", }, },
+}
\ No newline at end of file
diff --git a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua
index 47eeb3c9c2..4f3dd380f2 100644
--- a/src/Data/FlavourText.lua
+++ b/src/Data/FlavourText.lua
@@ -329,6 +329,15 @@ return {
},
},
[41] = {
+ id = "FourUniqueBodyStrDex8",
+ name = "Lightning Coil",
+ text = {
+ "The world churned during the Great Wasting.",
+ "Tawhoa may have stilled the rioting earth,",
+ "but it was Valako that tamed the broken sky.",
+ },
+ },
+ [42] = {
id = "FourUniqueBodyStrDex9",
name = "The Fallen Formation",
text = {
@@ -337,7 +346,7 @@ return {
"- Artair, last survivor of the Ogham rebellion",
},
},
- [42] = {
+ [43] = {
id = "FourUniqueBodyStrDex11",
name = "The Coming Calamity",
text = {
@@ -347,14 +356,14 @@ return {
"By your hand they dance and bend, wield them and brook no end.",
},
},
- [43] = {
+ [44] = {
id = "FourUniqueBodyStrInt1_",
name = "Enfolding Dawn",
text = {
"The gleam of the night and howling teeth alike could not abate the rising of the sun.",
},
},
- [44] = {
+ [45] = {
id = "FourUniqueBodyStrInt3",
name = "Icetomb",
text = {
@@ -363,14 +372,14 @@ return {
"the world will perish in ice.",
},
},
- [45] = {
+ [46] = {
id = "FourUniqueBodyStrInt4",
name = "Husk of Dreams",
text = {
"Yes... but what if?",
},
},
- [46] = {
+ [47] = {
id = "FourUniqueBodyStrInt5",
name = "Voll's Protector",
text = {
@@ -378,7 +387,7 @@ return {
"Voll proved disastrous in times of peace.",
},
},
- [47] = {
+ [48] = {
id = "FourUniqueBodyStrInt6",
name = "Soul Mantle",
text = {
@@ -386,7 +395,7 @@ return {
"long after they have been made",
},
},
- [48] = {
+ [49] = {
id = "FourUniqueBodyStrInt7",
name = "The Mutable Star",
text = {
@@ -394,7 +403,7 @@ return {
"the Twilight Order endured in secret.",
},
},
- [49] = {
+ [50] = {
id = "FourUniqueBodyStrInt8",
name = "Waveshaper",
text = {
@@ -404,7 +413,7 @@ return {
"- Rakiata, Chieftain of the Tasalio Tribe",
},
},
- [50] = {
+ [51] = {
id = "FourUniqueBodyStrInt9",
name = "Couture of Crimson",
text = {
@@ -412,7 +421,7 @@ return {
"peasants... sometimes, it's truer than any suspect.",
},
},
- [51] = {
+ [52] = {
id = "FourUniqueBodyStrInt12",
name = "Sacrosanctum",
text = {
@@ -420,7 +429,7 @@ return {
"instead to put their faith in each other.",
},
},
- [52] = {
+ [53] = {
id = "FourUniqueBodyDexInt1",
name = "Apron of Emiran",
text = {
@@ -428,7 +437,7 @@ return {
"- the Master Torturer's last words",
},
},
- [53] = {
+ [54] = {
id = "FourUniqueBodyDexInt2",
name = "Gloomform",
text = {
@@ -436,7 +445,7 @@ return {
"that thieves, murderers, and outcasts, sought refuge.",
},
},
- [54] = {
+ [55] = {
id = "FourUniqueBodyDexInt3",
name = "Sierran Inheritance",
text = {
@@ -444,21 +453,21 @@ return {
"live their entire lives in snow and ice.",
},
},
- [55] = {
+ [56] = {
id = "FourUniqueBodyDexInt4",
name = "The Dancing Mirage",
text = {
"Be not where death falls.",
},
},
- [56] = {
+ [57] = {
id = "FourUniqueBodyDexInt5",
name = "Redflare Conduit",
text = {
"In all things, control.",
},
},
- [57] = {
+ [58] = {
id = "FourUniqueBodyDexInt6",
name = "Zerphi's Serape",
text = {
@@ -466,27 +475,36 @@ return {
"The cure is simple.",
},
},
- [58] = {
+ [59] = {
+ id = "FourUniqueBodyDexInt13",
+ name = "Cospri's Will",
+ text = {
+ "Curse their vile Council,",
+ "They cast me aside as if I am some bastard child.",
+ "If they only knew the power I possess.",
+ },
+ },
+ [60] = {
id = "FourUniqueBodyStrDexInt1",
name = "Tabula Rasa",
text = {
},
},
- [59] = {
+ [61] = {
id = "FourUniqueHelmetStr1a",
name = "Horns of Bynden",
text = {
"The younger brother waded into battle, shrugging off blows.",
},
},
- [60] = {
+ [62] = {
id = "FourUniqueHelmetStr1b",
name = "Wings of Caelyn",
text = {
"The older brother retained calm in the midst of fury.",
},
},
- [61] = {
+ [63] = {
id = "FourUniqueHelmetStr2",
name = "Ezomyte Peak",
text = {
@@ -494,7 +512,7 @@ return {
"of glory, an eternity of death.",
},
},
- [62] = {
+ [64] = {
id = "FourUniqueHelmetStr3",
name = "Black Sun Crest",
text = {
@@ -502,7 +520,7 @@ return {
"are the ones who dwell in total darkness.",
},
},
- [63] = {
+ [65] = {
id = "FourUniqueHelmetStr4",
name = "Thrillsteel",
text = {
@@ -510,14 +528,14 @@ return {
"moments of blood and battle, we truly live.",
},
},
- [64] = {
+ [66] = {
id = "FourUniqueHelmetStr5",
name = "Deidbell",
text = {
"May you never hear it toll.",
},
},
- [65] = {
+ [67] = {
id = "FourUniqueHelmetStr6",
name = "Corona of the Red Sun",
text = {
@@ -525,35 +543,35 @@ return {
"but all who witnessed shared in exultation.",
},
},
- [66] = {
+ [68] = {
id = "FourUniqueHelmetStr8",
name = "Blood Price",
text = {
"An eye for an eye makes the whole world dead.",
},
},
- [67] = {
+ [69] = {
id = "FourUniqueHelmetDex1",
name = "Innsmouth",
text = {
"Beyond madness lies inspiration.",
},
},
- [68] = {
+ [70] = {
id = "FourUniqueHelmetDex2",
name = "Goldrim",
text = {
"No metal slips as easily through the fingers as gold.",
},
},
- [69] = {
+ [71] = {
id = "FourUniqueHelmetDex3",
name = "Radiant Grief",
text = {
"No man burns alone.",
},
},
- [70] = {
+ [72] = {
id = "FourUniqueHelmetDex5",
name = "Elevore",
text = {
@@ -561,7 +579,7 @@ return {
"by a ravenous hunger for all things mystical.",
},
},
- [71] = {
+ [73] = {
id = "FourUniqueHelmetDex6",
name = "Constricting Command",
text = {
@@ -571,7 +589,7 @@ return {
"- Viper Napuatzi, instructing Royal Commander Nezahul",
},
},
- [72] = {
+ [74] = {
id = "FourUniqueHelmetDex7",
name = "The Black Insignia",
text = {
@@ -579,7 +597,7 @@ return {
"pushing their luck right to the end.",
},
},
- [73] = {
+ [75] = {
id = "FourUniqueHelmetDex8",
name = "Starkonja's Head",
text = {
@@ -587,7 +605,7 @@ return {
"but merely a long sleep made eternal.",
},
},
- [74] = {
+ [76] = {
id = "FourUniqueHelmetDex9",
name = "Heatshiver",
text = {
@@ -596,14 +614,14 @@ return {
"You will be repaid.",
},
},
- [75] = {
+ [77] = {
id = "FourUniqueHelmetDex10",
name = "Myris Uxor",
text = {
"The end always comes sooner than we think.",
},
},
- [76] = {
+ [78] = {
id = "FourUniqueHelmetDex11",
name = "Alpha's Howl",
text = {
@@ -612,7 +630,7 @@ return {
"With the blood of the weak",
},
},
- [77] = {
+ [79] = {
id = "FourUniqueHelmetInt1",
name = "Crown of Thorns",
text = {
@@ -620,14 +638,14 @@ return {
"The spikes point out and in, you know.",
},
},
- [78] = {
+ [80] = {
id = "FourUniqueHelmetInt2",
name = "The Devouring Diadem",
text = {
"The spirit hungers for the flesh.",
},
},
- [79] = {
+ [81] = {
id = "FourUniqueHelmetInt3",
name = "Visage of Ayah",
text = {
@@ -635,7 +653,7 @@ return {
"They command a power all their own.",
},
},
- [80] = {
+ [82] = {
id = "FourUniqueHelmetInt4",
name = "Forbidden Gaze",
text = {
@@ -643,7 +661,7 @@ return {
"lest your passions stir.",
},
},
- [81] = {
+ [83] = {
id = "FourUniqueHelmetInt5",
name = "Mask of the Stitched Demon",
text = {
@@ -652,7 +670,7 @@ return {
"It is our duty to return to the gods what was once theirs.",
},
},
- [82] = {
+ [84] = {
id = "FourUniqueHelmetInt6",
name = "Atziri's Disdain",
text = {
@@ -660,7 +678,7 @@ return {
"their very lives. She looked on with impatience.",
},
},
- [83] = {
+ [85] = {
id = "FourUniqueHelmetInt7",
name = "Crown of Eyes",
text = {
@@ -670,7 +688,7 @@ return {
"your mind is destroyed.",
},
},
- [84] = {
+ [86] = {
id = "FourUniqueHelmetInt8",
name = "Scold's Bridle",
text = {
@@ -679,7 +697,7 @@ return {
"- Shavronne of Umbra",
},
},
- [85] = {
+ [87] = {
id = "FourUniqueHelmetInt11",
name = "Indigon",
text = {
@@ -687,14 +705,14 @@ return {
"the mind's limits end.",
},
},
- [86] = {
+ [88] = {
id = "FourUniqueHelmetStrDex1",
name = "Greymake",
text = {
"In the end, even heroes fade away.",
},
},
- [87] = {
+ [89] = {
id = "FourUniqueHelmetStrDex2",
name = "Erian's Cobble",
text = {
@@ -702,14 +720,14 @@ return {
"equipment gets out of hand.",
},
},
- [88] = {
+ [90] = {
id = "FourUniqueHelmetStrDex3",
name = "Ironride",
text = {
"Let the rider's aim be true.",
},
},
- [89] = {
+ [91] = {
id = "FourUniqueHelmetStrDex4",
name = "The Smiling Knight",
text = {
@@ -717,14 +735,14 @@ return {
"their own personal mockeries, most cruel.",
},
},
- [90] = {
+ [92] = {
id = "FourUniqueHelmetStrDex5",
name = "The Vile Knight",
text = {
"Familiarity breeds contempt.",
},
},
- [91] = {
+ [93] = {
id = "FourUniqueHelmetStrDex7",
name = "The Bringer of Rain",
text = {
@@ -732,21 +750,21 @@ return {
"\"Sacred ground, watered with tears of blood!\"",
},
},
- [92] = {
+ [94] = {
id = "FourUniqueHelmetStrInt1",
name = "Crown of the Victor",
text = {
"An endless river of bodies lie in the wake of ambition.",
},
},
- [93] = {
+ [95] = {
id = "FourUniqueHelmetStrInt2",
name = "Bronzebeard",
text = {
"Heavy is the head.",
},
},
- [94] = {
+ [96] = {
id = "FourUniqueHelmetStrInt3",
name = "Crown of the Pale King",
text = {
@@ -756,7 +774,7 @@ return {
"feed on your pain.",
},
},
- [95] = {
+ [97] = {
id = "FourUniqueHelmetStrInt4",
name = "Veil of the Night",
text = {
@@ -766,28 +784,28 @@ return {
"And bloom steel flowers of victory.",
},
},
- [96] = {
+ [98] = {
id = "FourUniqueHelmetStrInt5",
name = "Cornathaum",
text = {
"Pain brings clarity.",
},
},
- [97] = {
+ [99] = {
id = "FourUniqueHelmetStrInt6",
name = "The Deepest Tower",
text = {
"Death crawls in darkness, closer than we think.",
},
},
- [98] = {
+ [100] = {
id = "FourUniqueHelmetDexInt1",
name = "The Hollow Mask",
text = {
"The roots take hold within...",
},
},
- [99] = {
+ [101] = {
id = "FourUniqueHelmetDexInt2",
name = "Mask of the Sanguimancer",
text = {
@@ -795,14 +813,14 @@ return {
"remains lost... but his power does not.",
},
},
- [100] = {
+ [102] = {
id = "FourUniqueHelmetDexInt3",
name = "Leer Cast",
text = {
"For none of us are as cruel as all of us.",
},
},
- [101] = {
+ [103] = {
id = "FourUniqueHelmetDexInt4",
name = "Atsak's Sight",
text = {
@@ -810,7 +828,7 @@ return {
"only in the depths of the harshest sandstorms.",
},
},
- [102] = {
+ [104] = {
id = "FourUniqueHelmetDexInt5",
name = "The Vertex",
text = {
@@ -818,7 +836,7 @@ return {
"- Atziri, Queen of the Vaal",
},
},
- [103] = {
+ [105] = {
id = "FourUniqueHelmetDexInt6",
name = "The Three Dragons",
text = {
@@ -829,7 +847,7 @@ return {
"- From 'The Three Dragons' by Victario of Sarn",
},
},
- [104] = {
+ [106] = {
id = "FourUniqueHelmetDexInt8",
name = "Mind of the Council",
text = {
@@ -841,7 +859,7 @@ return {
"They know your mind, because they remember",
},
},
- [105] = {
+ [107] = {
id = "FourUniqueGlovesStr2",
name = "Treefingers",
text = {
@@ -849,7 +867,7 @@ return {
"are not flesh and blood.",
},
},
- [106] = {
+ [108] = {
id = "FourUniqueGlovesStr3",
name = "Lochtonial Caress",
text = {
@@ -857,14 +875,14 @@ return {
"Surrender to me, and I will grant you everything.",
},
},
- [107] = {
+ [109] = {
id = "FourUniqueGlovesStr4",
name = "Dreadfist",
text = {
"What is worse, the sting of the past, the pain of the present, or the fear of the future?",
},
},
- [108] = {
+ [110] = {
id = "FourUniqueGlovesStr5",
name = "Atziri's Acuity",
text = {
@@ -873,7 +891,7 @@ return {
"- Atziri, Queen of the Vaal",
},
},
- [109] = {
+ [111] = {
id = "FourUniqueGlovesStr7",
name = "Empire's Grasp",
text = {
@@ -882,14 +900,14 @@ return {
"- Emperor Chitus",
},
},
- [110] = {
+ [112] = {
id = "FourUniqueGlovesDex1_",
name = "Northpaw",
text = {
"Fight with the ferocity of the First Ones.",
},
},
- [111] = {
+ [113] = {
id = "FourUniqueGlovesDex2",
name = "Grip of Winter",
text = {
@@ -897,14 +915,14 @@ return {
"ash began to fall, and a chill set in...",
},
},
- [112] = {
+ [114] = {
id = "FourUniqueGlovesDex4",
name = "Idle Hands",
text = {
"The devil finds work for idle hands.",
},
},
- [113] = {
+ [115] = {
id = "FourUniqueGlovesDex5",
name = "Snakebite",
text = {
@@ -914,7 +932,7 @@ return {
"And the skill of compulsion.",
},
},
- [114] = {
+ [116] = {
id = "FourUniqueGlovesDex6",
name = "Maligaro's Virtuosity",
text = {
@@ -922,7 +940,7 @@ return {
"with great speed and terrible consequences.",
},
},
- [115] = {
+ [117] = {
id = "FourUniqueGlovesInt1",
name = "Painter's Servant",
text = {
@@ -932,14 +950,14 @@ return {
"just to capture thee.",
},
},
- [116] = {
+ [118] = {
id = "FourUniqueGlovesInt2",
name = "Candlemaker",
text = {
"You can be the wick or the wax. Either way, your light goes out and mine goes on.",
},
},
- [117] = {
+ [119] = {
id = "FourUniqueGlovesInt3",
name = "Doedre's Tenure",
text = {
@@ -947,14 +965,14 @@ return {
"she surpassed her master in pure malevolence.",
},
},
- [118] = {
+ [120] = {
id = "FourUniqueGlovesInt4",
name = "Kitoko's Current",
text = {
"Reality is a puzzle. Ingenuity is power.",
},
},
- [119] = {
+ [121] = {
id = "FourUniqueGlovesInt5",
name = "Demon Stitcher",
text = {
@@ -964,42 +982,42 @@ return {
"The first Vaal.",
},
},
- [120] = {
+ [122] = {
id = "FourUniqueGlovesInt6",
name = "Nightscale",
text = {
"Diamora sings not for hunger, but for longing.",
},
},
- [121] = {
+ [123] = {
id = "FourUniqueGlovesInt7",
name = "Leopold's Applause",
text = {
"\"Keep smiling. The deepest cut comes not from insults, but from false praise.\"",
},
},
- [122] = {
+ [124] = {
id = "FourUniqueGlovesStrDex1",
name = "Jarngreipr",
text = {
"The whispers of the old gods hum through the iron. They demand a hero.",
},
},
- [123] = {
+ [125] = {
id = "FourUniqueGlovesStrDex2",
name = "Aurseize",
text = {
"Wealth is not to be borne lightly.",
},
},
- [124] = {
+ [126] = {
id = "FourUniqueGlovesStrDex3",
name = "Deathblow",
text = {
"Anticipation is a gift.",
},
},
- [125] = {
+ [127] = {
id = "FourUniqueGlovesStrDex4",
name = "Valako's Vice",
text = {
@@ -1007,14 +1025,14 @@ return {
"Valako rode the clouds of ash into the thundering sky.",
},
},
- [126] = {
+ [128] = {
id = "FourUniqueGlovesStrDex5",
name = "Aerisvane's Wings",
text = {
"The strongest souls are forged through struggle and defeat.",
},
},
- [127] = {
+ [129] = {
id = "FourUniqueGlovesStrInt1",
name = "Gravebind",
text = {
@@ -1023,21 +1041,21 @@ return {
"You'll still know the truth.",
},
},
- [128] = {
+ [130] = {
id = "FourUniqueGlovesStrInt2",
name = "Shackles of the Wretched",
text = {
"Captivity breeds creativity.",
},
},
- [129] = {
+ [131] = {
id = "FourUniqueGlovesStrInt3",
name = "Blueflame Bracers",
text = {
"The secret was lost with its maker.",
},
},
- [130] = {
+ [132] = {
id = "FourUniqueGlovesStrInt4",
name = "The Prisoner's Manacles",
text = {
@@ -1045,14 +1063,14 @@ return {
"His greatest success took three entire legions to capture.",
},
},
- [131] = {
+ [133] = {
id = "FourUniqueGlovesDexInt1",
name = "Plaguefinger",
text = {
"Ulcers, scabs, and pocks, the third army makes its claim.",
},
},
- [132] = {
+ [134] = {
id = "FourUniqueGlovesDexInt2",
name = "Killjoy",
text = {
@@ -1060,7 +1078,7 @@ return {
"- Jeffry, Torturer's Apprentice",
},
},
- [133] = {
+ [135] = {
id = "FourUniqueGlovesDexInt5",
name = "Essentia Sanguis",
text = {
@@ -1068,35 +1086,44 @@ return {
"giving birth to four lightning children of hate.",
},
},
- [134] = {
+ [136] = {
+ id = "FourUniqueGlovesDexInt6",
+ name = "Thunderfist",
+ text = {
+ "The roar of the heavens",
+ "Strikes more than fear",
+ "Into the hearts of Man",
+ },
+ },
+ [137] = {
id = "FourUniqueBootsStr1",
name = "Legionstride",
text = {
"A wall of steel and muscle.",
},
},
- [135] = {
+ [138] = {
id = "FourUniqueBootsStr2",
name = "Corpsewade",
text = {
"Natural decay can be twisted to dark ends.",
},
},
- [136] = {
+ [139] = {
id = "FourUniqueBootsStr3",
name = "The Infinite Pursuit",
text = {
"We move to be closer to her, but the distance yet grows.",
},
},
- [137] = {
+ [140] = {
id = "FourUniqueBootsStr4",
name = "Trampletoe",
text = {
"The truly mighty are never outnumbered.",
},
},
- [138] = {
+ [141] = {
id = "FourUniqueBootsStr5",
name = "Birth of Fury",
text = {
@@ -1104,14 +1131,14 @@ return {
"so too shall your enemies fear you.",
},
},
- [139] = {
+ [142] = {
id = "FourUniqueBootsDex2",
name = "Briarpatch",
text = {
"The druids walk the Grelwood without fear.",
},
},
- [140] = {
+ [143] = {
id = "FourUniqueBootsDex3",
name = "Gamblesprint",
text = {
@@ -1119,7 +1146,7 @@ return {
"unknown and snarled to the very last.",
},
},
- [141] = {
+ [144] = {
id = "FourUniqueBootsDex4",
name = "Thunderstep",
text = {
@@ -1127,7 +1154,7 @@ return {
"the world hearkens.",
},
},
- [142] = {
+ [145] = {
id = "FourUniqueBootsDex5",
name = "Bushwhack",
text = {
@@ -1135,21 +1162,21 @@ return {
"Erian learned to hunt to survive.",
},
},
- [143] = {
+ [146] = {
id = "FourUniqueBootsInt1",
name = "Luminous Pace",
text = {
"Blessed are those who tend the Grove.",
},
},
- [144] = {
+ [147] = {
id = "FourUniqueBootsInt2",
name = "Wanderlust",
text = {
"All the world is my home.",
},
},
- [145] = {
+ [148] = {
id = "FourUniqueBootsInt3",
name = "Bones of Ullr",
text = {
@@ -1157,14 +1184,14 @@ return {
"the living fear to tread.",
},
},
- [146] = {
+ [149] = {
id = "FourUniqueBootsInt4",
name = "Wondertrap",
text = {
"Wonders abound at death's door.",
},
},
- [147] = {
+ [150] = {
id = "FourUniqueBootsInt5",
name = "Windscream",
text = {
@@ -1172,14 +1199,14 @@ return {
"The haunting screams, a maddening hell",
},
},
- [148] = {
+ [151] = {
id = "FourUniqueBootsStrDex1",
name = "The Knight-errant",
text = {
"Some search forever for their path.",
},
},
- [149] = {
+ [152] = {
id = "FourUniqueBootsStrDex2",
name = "Darkray Vectors",
text = {
@@ -1189,14 +1216,23 @@ return {
"- Azmerian legend",
},
},
- [150] = {
+ [153] = {
id = "FourUniqueBootsStrDex3",
name = "Obern's Bastion",
text = {
"The storm cannot sway those of sure footing.",
},
},
- [151] = {
+ [154] = {
+ id = "FourUniqueBootsStrDex4",
+ name = "Shankgonne",
+ text = {
+ "\"Captain Hiff Greybeard accomplished what nary a Brinerot",
+ "could: he died of old age. Almost had him a dozen times",
+ "meself, if it weren't for that damn leg of his... crafty shite...\"",
+ },
+ },
+ [155] = {
id = "FourUniqueBootsStrInt2",
name = "Wake of Destruction",
text = {
@@ -1204,7 +1240,7 @@ return {
"Flee before the walking storm.",
},
},
- [152] = {
+ [156] = {
id = "FourUniqueBootsDexInt2",
name = "Ghostmarch",
text = {
@@ -1212,7 +1248,7 @@ return {
"On their hopeless, last endeavour.",
},
},
- [153] = {
+ [157] = {
id = "FourUniqueBootsDexInt3",
name = "Powertread",
text = {
@@ -1220,7 +1256,7 @@ return {
"was as elegant as it was deadly.",
},
},
- [154] = {
+ [158] = {
id = "FourUniqueShieldStr1",
name = "Dionadair",
text = {
@@ -1228,7 +1264,7 @@ return {
"the Ezomytes was to catch them unaware.",
},
},
- [155] = {
+ [159] = {
id = "FourUniqueShieldStr2",
name = "Wulfsbane",
text = {
@@ -1236,14 +1272,14 @@ return {
"legacy of cunning and power.",
},
},
- [156] = {
+ [160] = {
id = "FourUniqueShieldStr3",
name = "Doomgate",
text = {
"Welcome to Wraeclast.",
},
},
- [157] = {
+ [161] = {
id = "FourUniqueShieldStr4",
name = "Window to Paradise",
text = {
@@ -1251,28 +1287,28 @@ return {
"the Savior will build utopia.\"",
},
},
- [158] = {
+ [162] = {
id = "FourUniqueShieldStr5",
name = "The Wailing Wall",
text = {
"Some stories are never told.",
},
},
- [159] = {
+ [163] = {
id = "FourUniqueShieldStr6",
name = "Lycosidae",
text = {
"A true predator does not chase; It waits.",
},
},
- [160] = {
+ [164] = {
id = "FourUniqueShieldStr7",
name = "Redblade Banner",
text = {
"Blood shed is blood shared.",
},
},
- [161] = {
+ [165] = {
id = "FourUniqueShieldStr8",
name = "The Surrender",
text = {
@@ -1281,7 +1317,7 @@ return {
"and so we give up our flesh.",
},
},
- [162] = {
+ [166] = {
id = "FourUniqueShieldStr13",
name = "Chernobog's Pillar",
text = {
@@ -1291,7 +1327,7 @@ return {
"There is no flame",
},
},
- [163] = {
+ [167] = {
id = "FourUniqueShieldStrDex1",
name = "Arvil's Wheel",
text = {
@@ -1300,42 +1336,42 @@ return {
"at body and mind.",
},
},
- [164] = {
+ [168] = {
id = "FourUniqueShieldStrDex2",
name = "Merit of Service",
text = {
"Lead by example, and you shall never be alone.",
},
},
- [165] = {
+ [169] = {
id = "FourUniqueShieldStrDex4",
name = "Feathered Fortress",
text = {
"Ride the western wind, and take flight.",
},
},
- [166] = {
+ [170] = {
id = "FourUniqueShieldStrInt1",
name = "Alkem Eira",
text = {
"May your resolve never waver.",
},
},
- [167] = {
+ [171] = {
id = "FourUniqueShieldStrInt2",
name = "Oaksworn",
text = {
"The druids swore to protect the Grelwood with their very lives.",
},
},
- [168] = {
+ [172] = {
id = "FourUniqueShieldStrInt3",
name = "Saffell's Frame",
text = {
"A swift mind solves problems before they occur.",
},
},
- [169] = {
+ [173] = {
id = "FourUniqueShieldStrInt4",
name = "Crest of Ardura",
text = {
@@ -1343,14 +1379,14 @@ return {
"the Ardura were the first to answer.",
},
},
- [170] = {
+ [174] = {
id = "FourUniqueShieldStrInt5",
name = "Prism Guardian",
text = {
"When blood is paid, the weak think twice.",
},
},
- [171] = {
+ [175] = {
id = "FourUniqueShieldStrInt6",
name = "Rise of the Phoenix",
text = {
@@ -1358,7 +1394,7 @@ return {
"for I am the phoenix, forever radiant in glory.",
},
},
- [172] = {
+ [176] = {
id = "FourUniqueShieldDex1",
name = "Dunkelhalt",
text = {
@@ -1368,7 +1404,7 @@ return {
"Nay, villain, a man never bleeds alone.\"",
},
},
- [173] = {
+ [177] = {
id = "FourUniqueShieldDex2",
name = "Nocturne",
text = {
@@ -1376,7 +1412,7 @@ return {
"but neither knows the other exists...",
},
},
- [174] = {
+ [178] = {
id = "FourUniqueShieldDex3",
name = "Rondel de Ezo",
text = {
@@ -1384,7 +1420,7 @@ return {
"will lose his will. Then, you've won.\"",
},
},
- [175] = {
+ [179] = {
id = "FourUniqueShieldDex4",
name = "Bloodbarrier",
text = {
@@ -1392,7 +1428,14 @@ return {
"where countless voices scream...",
},
},
- [176] = {
+ [180] = {
+ id = "FourUniqueShieldDex5",
+ name = "Kaltenhalt",
+ text = {
+ "Cold, miserable and alone... but alive.",
+ },
+ },
+ [181] = {
id = "FourUniqueShieldDex6",
name = "Silverthorne",
text = {
@@ -1400,14 +1443,14 @@ return {
"feign weakness to open up a lethal blow.",
},
},
- [177] = {
+ [182] = {
id = "FourUniqueShieldDex11_",
name = "Calgyra's Arc",
text = {
"\"There is nowhere my vengeance cannot find you.\"",
},
},
- [178] = {
+ [183] = {
id = "FourUniqueShieldDex12",
name = "Sunsplinter",
text = {
@@ -1416,14 +1459,14 @@ return {
"- Wranga, tale-woman of the Wahida akhara",
},
},
- [179] = {
+ [184] = {
id = "FourUniqueFocus1",
name = "Deathrattle",
text = {
"The cry of death whispers in the wind.",
},
},
- [180] = {
+ [185] = {
id = "FourUniqueFocus2",
name = "Threaded Light",
text = {
@@ -1432,7 +1475,7 @@ return {
"The reason, remembered.",
},
},
- [181] = {
+ [186] = {
id = "FourUniqueFocus3",
name = "Effigy of Cruelty",
text = {
@@ -1440,21 +1483,21 @@ return {
"still exist somewhere in the dark...",
},
},
- [182] = {
+ [187] = {
id = "FourUniqueFocus4",
name = "Carrion Call",
text = {
"Obedience stretches beyond the grave.",
},
},
- [183] = {
+ [188] = {
id = "FourUniqueFocus5",
name = "Serpent's Lesson",
text = {
"Sinuous, entwined... inextricable.",
},
},
- [184] = {
+ [189] = {
id = "FourUniqueFocus6",
name = "The Eternal Spark",
text = {
@@ -1462,14 +1505,14 @@ return {
"her motionless dance the pulse of bliss",
},
},
- [185] = {
+ [190] = {
id = "FourUniqueFocus7",
name = "Apep's Supremacy",
text = {
"Give him your body, and your burdens will follow.",
},
},
- [186] = {
+ [191] = {
id = "FourUniqueFocus8",
name = "Rathpith Globe",
text = {
@@ -1477,7 +1520,7 @@ return {
"and left a mountain of twitching dead.",
},
},
- [187] = {
+ [192] = {
id = "FourUniqueQuiver1",
name = "Asphyxia's Wrath",
text = {
@@ -1487,7 +1530,7 @@ return {
"Upon the frozen wasteland.",
},
},
- [188] = {
+ [193] = {
id = "FourUniqueQuiver2_",
name = "Blackgleam",
text = {
@@ -1495,14 +1538,14 @@ return {
"Hissing arrows from the dark.",
},
},
- [189] = {
+ [194] = {
id = "FourUniqueQuiver3",
name = "The Lethal Draw",
text = {
"Life and death ooze from the same sap.",
},
},
- [190] = {
+ [195] = {
id = "FourUniqueQuiver5",
name = "Rearguard",
text = {
@@ -1510,7 +1553,7 @@ return {
"- Kiravi, Vaal Archer",
},
},
- [191] = {
+ [196] = {
id = "FourUniqueQuiver6",
name = "Murkshaft",
text = {
@@ -1519,7 +1562,7 @@ return {
"- Selassie of the Black Fen",
},
},
- [192] = {
+ [197] = {
id = "FourUniqueQuiver8",
name = "Cadiro's Gambit",
text = {
@@ -1528,7 +1571,7 @@ return {
"- Cadiro Perandus",
},
},
- [193] = {
+ [198] = {
id = "FourUniqueAmulet1",
name = "Igniferis",
text = {
@@ -1536,7 +1579,7 @@ return {
"A light unbroken, endlessly reborn.",
},
},
- [194] = {
+ [199] = {
id = "FourUniqueAmulet2",
name = "Idol of Uldurn",
text = {
@@ -1544,7 +1587,7 @@ return {
"in Oriath, so long as it remained private.",
},
},
- [195] = {
+ [200] = {
id = "FourUniqueAmulet3",
name = "The Everlasting Gaze",
text = {
@@ -1552,21 +1595,21 @@ return {
"they believed Lunaris had not abandoned them.",
},
},
- [196] = {
+ [201] = {
id = "FourUniqueAmulet4",
name = "Ungil's Harmony",
text = {
"Gentle anger, raging calm.",
},
},
- [197] = {
+ [202] = {
id = "FourUniqueAmulet5",
name = "Revered Resin",
text = {
"The sacred sap flows slowly, but surely.",
},
},
- [198] = {
+ [203] = {
id = "FourUniqueAmulet6",
name = "Carnage Heart",
text = {
@@ -1574,14 +1617,14 @@ return {
"its thirst has only begun.",
},
},
- [199] = {
+ [204] = {
id = "FourUniqueAmulet7",
name = "Surefooted Sigil",
text = {
"Natural grace is born, not earned.",
},
},
- [200] = {
+ [205] = {
id = "FourUniqueAmulet8",
name = "Defiance of Destiny",
text = {
@@ -1589,7 +1632,7 @@ return {
"but lasts a lifetime... and beyond.",
},
},
- [201] = {
+ [206] = {
id = "FourUniqueAmulet9",
name = "Stone of Lazhwar",
text = {
@@ -1597,14 +1640,14 @@ return {
"I am not.",
},
},
- [202] = {
+ [207] = {
id = "FourUniqueAmulet10_",
name = "Ligurium Talisman",
text = {
"Healing the soul requires sacrifice.",
},
},
- [203] = {
+ [208] = {
id = "FourUniqueAmulet12",
name = "Rondel of Fragility",
text = {
@@ -1612,21 +1655,21 @@ return {
"for they care not for their own survival.",
},
},
- [204] = {
+ [209] = {
id = "FourUniqueAmulet13",
name = "The Anvil",
text = {
"Forge your Perseverance on the Anvil of Faith.",
},
},
- [205] = {
+ [210] = {
id = "FourUniqueAmulet14",
name = "Yoke of Suffering",
text = {
"Let the unrepentant be dragged ever downwards by the weight of their sins.",
},
},
- [206] = {
+ [211] = {
id = "FourUniqueAmulet15_",
name = "Astramentis",
text = {
@@ -1636,7 +1679,7 @@ return {
"And into darkness send it.",
},
},
- [207] = {
+ [212] = {
id = "FourUniqueAmulet16",
name = "Fixation of Yix",
text = {
@@ -1644,7 +1687,7 @@ return {
"that he wanted to hold his family close...",
},
},
- [208] = {
+ [213] = {
id = "FourUniqueAmulet17",
name = "Beacon of Azis",
text = {
@@ -1653,7 +1696,7 @@ return {
"It was Solerai herself.",
},
},
- [209] = {
+ [214] = {
id = "FourUniqueAmulet18",
name = "Fireflower",
text = {
@@ -1661,14 +1704,14 @@ return {
"Fire, they learn, springs from agony.",
},
},
- [210] = {
+ [215] = {
id = "FourUniqueAmulet19_",
name = "Eye of Chayula",
text = {
"Never blinking, always watching.",
},
},
- [211] = {
+ [216] = {
id = "FourUniqueAmulet20",
name = "Serpent's Egg",
text = {
@@ -1676,14 +1719,21 @@ return {
"the Sekhemas took a single hostage as punishment.",
},
},
- [212] = {
+ [217] = {
+ id = "FourUniqueAmulet21",
+ name = "Hinekora's Sight",
+ text = {
+ "Remember the past, anticipate the future.",
+ },
+ },
+ [218] = {
id = "FourUniqueRing1",
name = "Blackheart",
text = {
"Fear is highly infectious.",
},
},
- [213] = {
+ [219] = {
id = "FourUniqueRing2a",
name = "Icefang Orbit",
text = {
@@ -1691,7 +1741,7 @@ return {
"Trarthan ice snakes must take great care with the volatile substance.",
},
},
- [214] = {
+ [220] = {
id = "FourUniqueRing2b",
name = "Venopuncture",
text = {
@@ -1699,14 +1749,14 @@ return {
"but few have the resolve to attempt it.",
},
},
- [215] = {
+ [221] = {
id = "FourUniqueRing3",
name = "Prized Pain",
text = {
"Agony brings clarity to those of pure mind.",
},
},
- [216] = {
+ [222] = {
id = "FourUniqueRing4",
name = "Glowswarm",
text = {
@@ -1715,28 +1765,28 @@ return {
"blissfully unaware of their flight from the sirens.",
},
},
- [217] = {
+ [223] = {
id = "FourUniqueRing5",
name = "Doedre's Damning",
text = {
"Where her mouth should have been there was only a whirling, black void.",
},
},
- [218] = {
+ [224] = {
id = "FourUniqueRing6",
name = "Seed of Cataclysm",
text = {
"The dawn of a new era is set into motion",
},
},
- [219] = {
+ [225] = {
id = "FourUniqueRing7",
name = "Cracklecreep",
text = {
"Fear the fire that spreads like a plague.",
},
},
- [220] = {
+ [226] = {
id = "FourUniqueRing8",
name = "Blistering Bond",
text = {
@@ -1744,7 +1794,7 @@ return {
"Excruciating pain is simply a byproduct of certain... necessary methods.\"",
},
},
- [221] = {
+ [227] = {
id = "FourUniqueRing10",
name = "Polcirkeln",
text = {
@@ -1754,7 +1804,7 @@ return {
"Sing Meginord's song!",
},
},
- [222] = {
+ [228] = {
id = "FourUniqueRing11",
name = "Dream Fragments",
text = {
@@ -1762,7 +1812,7 @@ return {
"And awoke its Master.",
},
},
- [223] = {
+ [229] = {
id = "FourUniqueRing12",
name = "Whisper of the Brotherhood",
text = {
@@ -1770,14 +1820,14 @@ return {
"to return all that was once given.",
},
},
- [224] = {
+ [230] = {
id = "FourUniqueRing13",
name = "Levinstone",
text = {
"Highgate held other secrets.",
},
},
- [225] = {
+ [231] = {
id = "FourUniqueRing14",
name = "The Burrower",
text = {
@@ -1787,7 +1837,7 @@ return {
"It lies in our minds",
},
},
- [226] = {
+ [232] = {
id = "FourUniqueRing15",
name = "Call of the Brotherhood",
text = {
@@ -1796,7 +1846,7 @@ return {
"across any distance of time or travel.",
},
},
- [227] = {
+ [233] = {
id = "FourUniqueRing16",
name = "Ming's Heart",
text = {
@@ -1806,7 +1856,7 @@ return {
"He placed his Heart",
},
},
- [228] = {
+ [234] = {
id = "FourUniqueRing17",
name = "Blackflame",
text = {
@@ -1814,7 +1864,7 @@ return {
"by whose light night is borne.",
},
},
- [229] = {
+ [235] = {
id = "FourUniqueRing18",
name = "Original Sin",
text = {
@@ -1822,7 +1872,7 @@ return {
"but on the vilification and hatred of another.",
},
},
- [230] = {
+ [236] = {
id = "FourUniqueRing19",
name = "Vigilant View",
text = {
@@ -1830,14 +1880,14 @@ return {
"together as one, shoulder to shoulder.",
},
},
- [231] = {
+ [237] = {
id = "FourUniqueRing20",
name = "Death Rush",
text = {
"To truly appreciate life you must be there when it ends",
},
},
- [232] = {
+ [238] = {
id = "FourUniqueRing21",
name = "Thief's Torment",
text = {
@@ -1850,7 +1900,7 @@ return {
"A blessing is often a curse.",
},
},
- [233] = {
+ [239] = {
id = "FourUniqueRing22",
name = "Evergrasping Ring",
text = {
@@ -1858,7 +1908,7 @@ return {
"Death comes to those who reach",
},
},
- [234] = {
+ [240] = {
id = "FourUniqueRing23",
name = "Heartbound Loop",
text = {
@@ -1867,35 +1917,35 @@ return {
"fading mind was her broken, shattered scream.",
},
},
- [235] = {
+ [241] = {
id = "FourUniqueRing24",
name = "Snakepit",
text = {
"They wrap around you until your blood turns as cold as theirs.",
},
},
- [236] = {
+ [242] = {
id = "FourUniqueRing25",
name = "Gifts from Above",
text = {
"God blesses those who bless themselves.",
},
},
- [237] = {
+ [243] = {
id = "FourUniqueRing28",
name = "Perandus Seal",
text = {
"A pact with Prospero always comes at a price.",
},
},
- [238] = {
+ [244] = {
id = "FourUniqueRing29",
name = "Andvarius",
text = {
"Danger is the price of wealth.",
},
},
- [239] = {
+ [245] = {
id = "FourUniqueRing30",
name = "Ventor's Gamble",
text = {
@@ -1905,14 +1955,22 @@ return {
"And Ventor met his latest trophy.",
},
},
- [240] = {
+ [246] = {
id = "FourUniqueRing32",
name = "Kalandra's Touch",
text = {
"Power is a matter of perspective.",
},
},
- [241] = {
+ [247] = {
+ id = "FourUniqueRing33",
+ name = "Grip of Kulemak",
+ text = {
+ "Drink deeply of the Well.",
+ "Let the Abyss coil within.",
+ },
+ },
+ [248] = {
id = "FourUniqueBelt1",
name = "Meginord's Girdle",
text = {
@@ -1920,7 +1978,7 @@ return {
"the great Meginord of the north.",
},
},
- [242] = {
+ [249] = {
id = "FourUniqueBelt2",
name = "Midnight Braid",
text = {
@@ -1928,7 +1986,7 @@ return {
"which persistence grows.",
},
},
- [243] = {
+ [250] = {
id = "FourUniqueBelt3",
name = "Keelhaul",
text = {
@@ -1936,21 +1994,29 @@ return {
"there exists a flow...",
},
},
- [244] = {
+ [251] = {
+ id = "FourUniqueBelt4",
+ name = "Umbilicus Immortalis",
+ text = {
+ "\"The power of rebirth rivals that of immortality.\"",
+ "- Icius Perandus, Antiquities Collection, Item 3",
+ },
+ },
+ [252] = {
id = "FourUniqueBelt5",
name = "Birthright Buckle",
text = {
"Some families have peculiar gifts...",
},
},
- [245] = {
+ [253] = {
id = "FourUniqueBelt6",
name = "Byrnabas",
text = {
"The Brinerot sail without fear of storms.",
},
},
- [246] = {
+ [254] = {
id = "FourUniqueBelt8",
name = "Soul Tether",
text = {
@@ -1959,28 +2025,28 @@ return {
"desperately cling to any other source of life.",
},
},
- [247] = {
+ [255] = {
id = "FourUniqueBelt9",
name = "Infernoclasp",
text = {
"Tempered by the forbidden flame.",
},
},
- [248] = {
+ [256] = {
id = "FourUniqueBelt10",
name = "Goregirdle",
text = {
"Bleeding just means you're still alive.",
},
},
- [249] = {
+ [257] = {
id = "FourUniqueBelt12",
name = "Ryslatha's Coil",
text = {
"All creatures have the potential for greatness or unequivocal failure.",
},
},
- [250] = {
+ [258] = {
id = "FourUniqueBelt13",
name = "Coward's Legacy",
text = {
@@ -1988,29 +2054,21 @@ return {
"Face it, or curse your bloodline for all eternity.",
},
},
- [251] = {
+ [259] = {
id = "FourUniqueBelt15",
name = "Bijouborne",
text = {
"Trifle not with the trinket mage.",
},
},
- [252] = {
- id = "FourUniqueBelt16_",
- name = "Silverpoint",
- text = {
- "Asinia promised vengeance beyond death,",
- "and she found a way to keep that promise.",
- },
- },
- [253] = {
+ [260] = {
id = "FourUniqueBelt17",
name = "Waistgate",
text = {
"Clever artifice is not always complex.",
},
},
- [254] = {
+ [261] = {
id = "FourUniqueBelt18_",
name = "Headhunter",
text = {
@@ -2020,28 +2078,47 @@ return {
"- Lavianga, Advisor to Kaom",
},
},
- [255] = {
+ [262] = {
id = "FourUniqueBelt21",
name = "Shavronne's Satchel",
text = {
"Bring mystery to life. Again and again.",
},
},
- [256] = {
+ [263] = {
+ id = "FourUniqueBelt23",
+ name = "Darkness Enthroned",
+ text = {
+ "Kulemak sat triumphant, raising the crown.",
+ "Darkness coiled the world in eternal night.",
+ "Victory, a mere moment, came crashing down.",
+ "No conqueror, no conquered, only searing Light.",
+ },
+ },
+ [264] = {
+ id = "FourUniqueLifeFlask1",
+ name = "Blood of the Warrior",
+ text = {
+ "\"Tukohama may be asleep, but he still gives us his strength. A small",
+ "needle, an offering, and a vial... drink deeply, my son, and you",
+ "will more than survive the coming battle... you will thrive.\"",
+ },
+ },
+ [265] = {
id = "FourUniqueOneHandMace1",
name = "Brynhand's Mark",
text = {
"The mark of the smith was widely known.",
},
},
- [257] = {
+ [266] = {
id = "FourUniqueOneHandMace2",
name = "Wylund's Stake",
text = {
"Shaped metal never forgets the forge.",
},
},
- [258] = {
+ [267] = {
id = "FourUniqueOneHandMace3",
name = "Frostbreath",
text = {
@@ -2049,7 +2126,7 @@ return {
"Robbing breath from the weak and worthless.",
},
},
- [259] = {
+ [268] = {
id = "FourUniqueOneHandMace4",
name = "Trenchtimbre",
text = {
@@ -2057,7 +2134,7 @@ return {
"It was earned by comrades in arms.",
},
},
- [260] = {
+ [269] = {
id = "FourUniqueOneHandMace5",
name = "Sculpted Suffering",
text = {
@@ -2065,14 +2142,14 @@ return {
"and every moment in the light was agony.",
},
},
- [261] = {
+ [270] = {
id = "FourUniqueOneHandMace6",
name = "Seeing Stars",
text = {
"Within lies a window.",
},
},
- [262] = {
+ [271] = {
id = "FourUniqueOneHandMace7",
name = "Nebuloch",
text = {
@@ -2081,14 +2158,14 @@ return {
"But time would not touch the fiend.",
},
},
- [263] = {
+ [272] = {
id = "FourUniqueOneHandMace13",
name = "Mjölner",
text = {
"Look the storm in the eye and you will have its respect.",
},
},
- [264] = {
+ [273] = {
id = "FourUniqueTwoHandMace1",
name = "Hoghunt",
text = {
@@ -2097,7 +2174,7 @@ return {
"stop their flight and settle in Phaaryl.",
},
},
- [265] = {
+ [274] = {
id = "FourUniqueTwoHandMace2",
name = "Hrimnor's Hymn",
text = {
@@ -2106,42 +2183,42 @@ return {
"- Hrimnor of the Ezomytes.",
},
},
- [266] = {
+ [275] = {
id = "FourUniqueTwoHandMace3",
name = "Trephina",
text = {
"The art of surgery advances one mistake at a time.",
},
},
- [267] = {
+ [276] = {
id = "FourUniqueTwoHandMace4",
name = "Brain Rattler",
text = {
"The mind may have no limits, but the skull sure does.",
},
},
- [268] = {
+ [277] = {
id = "FourUniqueTwoHandMace5",
name = "The Empty Roar",
text = {
"Secrecy and silence are powers all their own.",
},
},
- [269] = {
+ [278] = {
id = "FourUniqueTwoHandMace6",
name = "Shyaba",
text = {
"Be not deceived by the treachery of men.",
},
},
- [270] = {
+ [279] = {
id = "FourUniqueTwoHandMace7",
name = "Chober Chaber",
text = {
"The faithful may continue to serve, even after death.",
},
},
- [271] = {
+ [280] = {
id = "FourUniqueTwoHandMace8",
name = "Quecholli",
text = {
@@ -2150,7 +2227,7 @@ return {
"- Doryani of the Vaal",
},
},
- [272] = {
+ [281] = {
id = "FourUniqueTwoHandMace9",
name = "Tidebreaker",
text = {
@@ -2160,7 +2237,16 @@ return {
"and the Brine King's domain will grow.",
},
},
- [273] = {
+ [282] = {
+ id = "FourUniqueTwoHandMace10",
+ name = "Marohi Erqi",
+ text = {
+ "\"Drunken Erqi boasted to Tukohama; the God of War",
+ "challenged him to a clash of strength. Woe to the",
+ "Divine - he should have made it a test of skill!\"",
+ },
+ },
+ [283] = {
id = "FourUniqueTwoHandMace13",
name = "The Hammer of Faith",
text = {
@@ -2169,14 +2255,14 @@ return {
"One day, justice would fall upon them...",
},
},
- [274] = {
+ [284] = {
id = "FourUniqueSpear1",
- name = "Splinter of Loratta",
+ name = "Splinter of Lorrata",
text = {
"The Baleful Gem's corruption lingers still...",
},
},
- [275] = {
+ [285] = {
id = "FourUniqueSpear2",
name = "Tyranny's Grip",
text = {
@@ -2184,21 +2270,21 @@ return {
"but rebels of every culture stood together as one.",
},
},
- [276] = {
+ [286] = {
id = "FourUniqueSpear3",
name = "Chainsting",
text = {
"The Sacred Hunt ends with mercy.",
},
},
- [277] = {
+ [287] = {
id = "FourUniqueSpear4",
name = "Skysliver",
text = {
"Heads fall to the sand, just as the star fell from the sky",
},
},
- [278] = {
+ [288] = {
id = "FourUniqueSpear5",
name = "Daevata's Wind",
text = {
@@ -2206,7 +2292,7 @@ return {
"but vengeance now.\" - Dimos, Advisor to General Titucius",
},
},
- [279] = {
+ [289] = {
id = "FourUniqueSpear6",
name = "Tangletongue",
text = {
@@ -2214,7 +2300,7 @@ return {
"- Wranga, tale-woman of the Wahida akhara",
},
},
- [280] = {
+ [290] = {
id = "FourUniqueSpear7",
name = "Saitha's Spear",
text = {
@@ -2222,7 +2308,7 @@ return {
"fused to her hand by her last mistake.",
},
},
- [281] = {
+ [291] = {
id = "FourUniqueSpear13",
name = "Spire of Ire",
text = {
@@ -2230,14 +2316,14 @@ return {
"but Maligaro never got a chance to use it...",
},
},
- [282] = {
+ [292] = {
id = "FourUniqueQuarterstaff1",
name = "The Blood Thorn",
text = {
"Touch not the thorn, for only blood and pain await.",
},
},
- [283] = {
+ [293] = {
id = "FourUniqueQuarterstaff2",
name = "Pillar of the Caged God",
text = {
@@ -2247,7 +2333,7 @@ return {
"Deft as the needle doubt",
},
},
- [284] = {
+ [294] = {
id = "FourUniqueQuarterstaff3",
name = "The Sentry",
text = {
@@ -2255,14 +2341,14 @@ return {
"Erian was asleep at his post.",
},
},
- [285] = {
+ [295] = {
id = "FourUniqueQuarterstaff5",
name = "Matsya",
text = {
"In our tales, and in our hearts, the rivers still flow.",
},
},
- [286] = {
+ [296] = {
id = "FourUniqueQuarterstaff6",
name = "Nazir's Judgement",
text = {
@@ -2270,7 +2356,7 @@ return {
"never let your enemy have a clear moment.",
},
},
- [287] = {
+ [297] = {
id = "FourUniqueWand1",
name = "The Wicked Quill",
text = {
@@ -2278,14 +2364,14 @@ return {
"the pages torn to a million pieces.",
},
},
- [288] = {
+ [298] = {
id = "FourUniqueWand2",
name = "Sanguine Diviner",
text = {
"One way or another, it will find what it seeks.",
},
},
- [289] = {
+ [299] = {
id = "FourUniqueWand3",
name = "Lifesprig",
text = {
@@ -2294,7 +2380,7 @@ return {
"Life endures in Wraeclast.",
},
},
- [290] = {
+ [300] = {
id = "FourUniqueWand4",
name = "Adonia's Ego",
text = {
@@ -2303,28 +2389,28 @@ return {
"\"You think me powerless without my wand? Insult me again!\"",
},
},
- [291] = {
+ [301] = {
id = "FourUniqueWand5",
name = "Enezun's Charge",
text = {
"He alone was welcome in the sacred spaces of the Titans.",
},
},
- [292] = {
+ [302] = {
id = "FourUniqueWand7",
name = "Cursecarver",
text = {
"Lost in the Black Fen, Erian hoped that dawn would save him. He had no idea how far away the light truly was.",
},
},
- [293] = {
+ [303] = {
id = "FourUniqueStaff1",
name = "Dusk Vigil",
text = {
"The candlemass tradition was born in a time of darkness and fear.",
},
},
- [294] = {
+ [304] = {
id = "FourUniqueStaff2",
name = "Taryn's Shiver",
text = {
@@ -2334,14 +2420,14 @@ return {
"Shiver in pain at the frozen dawn.",
},
},
- [295] = {
+ [305] = {
id = "FourUniqueStaff3",
name = "Earthbound",
text = {
"An ancient Azmeri staff, overgrown by roots...",
},
},
- [296] = {
+ [306] = {
id = "FourUniqueStaff5",
name = "The Searing Touch",
text = {
@@ -2349,14 +2435,24 @@ return {
"Rule a world, bathed in flame.",
},
},
- [297] = {
+ [307] = {
id = "FourUniqueStaff6",
name = "Sire of Shards",
text = {
"That which was broken may yet break.",
},
},
- [298] = {
+ [308] = {
+ id = "FourUniqueStaff13",
+ name = "The Unborn Lich",
+ text = {
+ "In ghastly pits beneath the world,",
+ "Kulemak grows countless new bodies,",
+ "each more powerful than the last.",
+ "Not all of his abominations survive.",
+ },
+ },
+ [309] = {
id = "FourUniqueStaff14",
name = "The Whispering Ice",
text = {
@@ -2366,7 +2462,7 @@ return {
"- Weylam Roth",
},
},
- [299] = {
+ [310] = {
id = "FourUniqueBow1",
name = "Widowhail",
text = {
@@ -2375,7 +2471,7 @@ return {
"healing, no revenge. There was only... emptiness.\"",
},
},
- [300] = {
+ [311] = {
id = "FourUniqueBow2",
name = "Quill Rain",
text = {
@@ -2384,7 +2480,7 @@ return {
"- Rigwald of the Ezomytes",
},
},
- [301] = {
+ [312] = {
id = "FourUniqueBow4",
name = "Splinterheart",
text = {
@@ -2393,7 +2489,7 @@ return {
"lest they return with a strange new purpose.",
},
},
- [302] = {
+ [313] = {
id = "FourUniqueBow5",
name = "Doomfletch",
text = {
@@ -2404,7 +2500,7 @@ return {
"- Koralus Doomfletch",
},
},
- [303] = {
+ [314] = {
id = "FourUniqueBow6",
name = "Death's Harp",
text = {
@@ -2414,7 +2510,7 @@ return {
"The Reaper's Song, the Harp of Death.",
},
},
- [304] = {
+ [315] = {
id = "FourUniqueBow7",
name = "Voltaxic Rift",
text = {
@@ -2423,14 +2519,22 @@ return {
"arcane power. There was no escape, no shelter. Only despair.",
},
},
- [305] = {
+ [316] = {
id = "FourUniqueBow8",
name = "Slivertongue",
text = {
"A hundred blind heads, each seeking the taste of prey on the air.",
},
},
- [306] = {
+ [317] = {
+ id = "FourUniqueBow9",
+ name = "Fairgraves' Curse",
+ text = {
+ "The power of the Allflame rends",
+ "souls just as easily as flesh.",
+ },
+ },
+ [318] = {
id = "FourUniqueBow13_",
name = "Lioneye's Glare",
text = {
@@ -2439,7 +2543,7 @@ return {
"- General Marceus Lioneye",
},
},
- [307] = {
+ [319] = {
id = "FourUniqueCrossbow1",
name = "Mist Whisper",
text = {
@@ -2447,7 +2551,7 @@ return {
"All the travelers had to give him was their devotion...",
},
},
- [308] = {
+ [320] = {
id = "FourUniqueCrossbow2",
name = "Rampart Raptor",
text = {
@@ -2456,7 +2560,15 @@ return {
"- anonymous Brotherhood of Silence report",
},
},
- [309] = {
+ [321] = {
+ id = "FourUniqueCrossbow5",
+ name = "Double Vision",
+ text = {
+ "For those without a home in the Vastiri, the",
+ "hot day is harsh, but the chill night is far worse.",
+ },
+ },
+ [322] = {
id = "FourUniqueCrossbow13",
name = "The Last Lament",
text = {
@@ -2466,7 +2578,7 @@ return {
"- Adamantia Brektov, the Composer",
},
},
- [310] = {
+ [323] = {
id = "FourUniqueSceptre1",
name = "The Dark Defiler",
text = {
@@ -2474,7 +2586,7 @@ return {
"his undead armies from the front.",
},
},
- [311] = {
+ [324] = {
id = "FourUniqueSceptre4",
name = "Font of Power",
text = {
@@ -2482,7 +2594,7 @@ return {
"for they have a much higher purpose.",
},
},
- [312] = {
+ [325] = {
id = "FourUniqueSceptre6",
name = "Guiding Palm",
text = {
@@ -2492,7 +2604,7 @@ return {
"- Book of the Benevolent Dreamer, Histories 220:5",
},
},
- [313] = {
+ [326] = {
id = "FourUniqueSceptre6a",
name = "Guiding Palm of the Heart",
text = {
@@ -2501,7 +2613,7 @@ return {
"The Dreamer declared, casting out the lingering dark embers within him.",
},
},
- [314] = {
+ [327] = {
id = "FourUniqueSceptre6b",
name = "Guiding Palm of the Eye",
text = {
@@ -2511,7 +2623,7 @@ return {
"The Dreamer whispered with fogging breath, ice creeping down his hand.",
},
},
- [315] = {
+ [328] = {
id = "FourUniqueSceptre6c",
name = "Guiding Palm of the Mind",
text = {
@@ -2521,7 +2633,7 @@ return {
"The Dreamer mused with aching heart, as remnants of forking tendrils burst forth.",
},
},
- [316] = {
+ [329] = {
id = "FourUniqueSceptre6d",
name = "Palm of the Dreamer",
text = {
@@ -2531,7 +2643,7 @@ return {
"- The Benevolent Dreamer",
},
},
- [317] = {
+ [330] = {
id = "FourUniqueCharm1",
name = "Nascent Hope",
text = {
@@ -2539,7 +2651,7 @@ return {
"life found a way. The Spirit always provides.\"",
},
},
- [318] = {
+ [331] = {
id = "FourUniqueCharm2",
name = "Sanguis Heroum",
text = {
@@ -2547,7 +2659,7 @@ return {
"It remembers those that stood in defiance.",
},
},
- [319] = {
+ [332] = {
id = "FourUniqueCharm3",
name = "Arakaali's Gift",
text = {
@@ -2555,7 +2667,7 @@ return {
"needed never fear her sting.",
},
},
- [320] = {
+ [333] = {
id = "FourUniqueCharm4",
name = "Beira's Anguish",
text = {
@@ -2563,7 +2675,7 @@ return {
"She was clad in ice, but the village was ash.",
},
},
- [321] = {
+ [334] = {
id = "FourUniqueCharm5",
name = "The Black Cat",
text = {
@@ -2571,7 +2683,7 @@ return {
"is the one that refuses to do any actual work.",
},
},
- [322] = {
+ [335] = {
id = "FourUniqueCharm6",
name = "For Utopia",
text = {
@@ -2579,7 +2691,7 @@ return {
"The Savior will rise, and mankind will be free.\"",
},
},
- [323] = {
+ [336] = {
id = "FourUniqueCharm7",
name = "The Fall of the Axe",
text = {
@@ -2588,14 +2700,14 @@ return {
"- Vorm, the Twice-Pardoned",
},
},
- [324] = {
+ [337] = {
id = "FourUniqueCharm8",
name = "Ngamahu's Chosen",
text = {
"Kaom was not known for his restraint.",
},
},
- [325] = {
+ [338] = {
id = "FourUniqueCharm9",
name = "Breath of the Mountains",
text = {
@@ -2605,7 +2717,7 @@ return {
"- Mutewind saying",
},
},
- [326] = {
+ [339] = {
id = "FourUniqueCharm10",
name = "Valako's Roar",
text = {
@@ -2613,7 +2725,7 @@ return {
"Flashes of light show only swinging axes... and a grin.",
},
},
- [327] = {
+ [340] = {
id = "FourUniqueCharm11",
name = "Forsaken Bangle",
text = {
@@ -2621,7 +2733,7 @@ return {
"They bore this burden to empower their hidden Order.",
},
},
- [328] = {
+ [341] = {
id = "FourUniquePinnacle1",
name = "Morior Invictus",
text = {
@@ -2629,28 +2741,28 @@ return {
"They stood against the end.",
},
},
- [329] = {
+ [342] = {
id = "FourUniquePinnacle2",
name = "Solus Ipse",
text = {
"One warrior alone survived to face the Arbiter.",
},
},
- [330] = {
+ [343] = {
id = "FourUniquePinnacle3",
name = "Sine Aequo",
text = {
"The greatest warrior of his era fought with honour.",
},
},
- [331] = {
+ [344] = {
id = "FourUniquePinnacle4",
name = "Ab Aeterno",
text = {
"His enemy was for endurance forged. His own waned.",
},
},
- [332] = {
+ [345] = {
id = "FourUniquePinnacle5",
name = "Sacred Flame",
text = {
@@ -2658,7 +2770,7 @@ return {
"Life always springs anew.",
},
},
- [333] = {
+ [346] = {
id = "FourUniqueSanctum1",
name = "Temporalis",
text = {
@@ -2666,14 +2778,14 @@ return {
"mastered was Time itself.",
},
},
- [334] = {
+ [347] = {
id = "FourUniqueSanctum2",
name = "Sandstorm Visage",
text = {
"A fell wind brings death.",
},
},
- [335] = {
+ [348] = {
id = "FourUniqueSanctum3",
name = "Blessed Bonds",
text = {
@@ -2682,7 +2794,7 @@ return {
"One day, spring will return the rains.\"",
},
},
- [336] = {
+ [349] = {
id = "FourUniqueSanctum4a",
name = "Sekhema's Resolve",
text = {
@@ -2690,7 +2802,7 @@ return {
"Vastiri to dust, we remain, unchanged.",
},
},
- [337] = {
+ [350] = {
id = "FourUniqueSanctum4b",
name = "Sekhema's Resolve",
text = {
@@ -2698,7 +2810,7 @@ return {
"Vastiri in ice, we remained, unchanged.",
},
},
- [338] = {
+ [351] = {
id = "FourUniqueSanctum4c",
name = "Sekhema's Resolve",
text = {
@@ -2706,7 +2818,7 @@ return {
"Vastiri, we shall remain, unchanged.",
},
},
- [339] = {
+ [352] = {
id = "FourUniqueUltimatum1",
name = "Glimpse of Chaos",
text = {
@@ -2714,28 +2826,28 @@ return {
"only under the blessed veil of ignorance.",
},
},
- [340] = {
+ [353] = {
id = "FourUniqueUltimatum2",
name = "Zerphi's Genesis",
text = {
"The most horrifying ideas often begin with a simple innovation.",
},
},
- [341] = {
+ [354] = {
id = "FourUniqueUltimatum3",
name = "Mahuxotl's Machination",
text = {
"The Banished Architect sought to employ the darkest secrets of the Vaal.",
},
},
- [342] = {
+ [355] = {
id = "FourUniqueUltimatum4",
name = "Hateforge",
text = {
"The first Karui born on the fringes of the Vaal empire developed a blood fever born of corruption.",
},
},
- [343] = {
+ [356] = {
id = "FourUniqueExpedition1",
name = "Svalinn",
text = {
@@ -2743,7 +2855,7 @@ return {
"but it was the smiths who delved into the secrets it held.",
},
},
- [344] = {
+ [357] = {
id = "FourUniqueExpedition2",
name = "Keeper of the Arc",
text = {
@@ -2751,7 +2863,7 @@ return {
"and calculation, not unprovable promises.",
},
},
- [345] = {
+ [358] = {
id = "FourUniqueExpedition3_",
name = "Olroth's Resolve",
text = {
@@ -2761,7 +2873,7 @@ return {
"he fights for you!",
},
},
- [346] = {
+ [359] = {
id = "FourUniqueExpedition4",
name = "Olrovasara",
text = {
@@ -2769,14 +2881,14 @@ return {
"- Fourth Tenet of the Knights of the Sun",
},
},
- [347] = {
+ [360] = {
id = "FourUniqueDelirium1",
name = "Assailum",
text = {
"A moment of calm before the battle can end the war.",
},
},
- [348] = {
+ [361] = {
id = "FourUniqueDelirium2",
name = "Perfidy",
text = {
@@ -2784,21 +2896,21 @@ return {
"What hope have you?",
},
},
- [349] = {
+ [362] = {
id = "FourUniqueDelirium3",
name = "Melting Maelstrom",
text = {
"What is life, but a dreamlike spiral of panic?",
},
},
- [350] = {
+ [363] = {
id = "FourUniqueDelirium4",
name = "Collapsing Horizon",
text = {
"The edges bend, the world flexes, the infinite spills into view.",
},
},
- [351] = {
+ [364] = {
id = "FourUniqueDelirium5",
name = "Strugglescream",
text = {
@@ -2806,7 +2918,7 @@ return {
"but the shadows eventually become home.",
},
},
- [352] = {
+ [365] = {
id = "FourUniqueRitual1",
name = "The Burden of Shadows",
text = {
@@ -2814,7 +2926,7 @@ return {
"Every moment is a struggle to exist.",
},
},
- [353] = {
+ [366] = {
id = "FourUniqueRitual2",
name = "Beetlebite",
text = {
@@ -2822,7 +2934,7 @@ return {
"in the shadow of his presence.",
},
},
- [354] = {
+ [367] = {
id = "FourUniqueRitual3",
name = "Ingenuity",
text = {
@@ -2830,7 +2942,7 @@ return {
"the Maji more than they ever expected.",
},
},
- [355] = {
+ [368] = {
id = "FourUniqueRitual4",
name = "Pragmatism",
text = {
@@ -2838,7 +2950,7 @@ return {
"one must be ever vigilant.",
},
},
- [356] = {
+ [369] = {
id = "FourUniqueBreach1_",
name = "Skin of the Loyal",
text = {
@@ -2846,7 +2958,7 @@ return {
"A net woven to keep safe the bones of the Lords.",
},
},
- [357] = {
+ [370] = {
id = "FourUniqueBreach2",
name = "Hand of Wisdom and Action",
text = {
@@ -2855,7 +2967,7 @@ return {
"Fragments of the whole that washes clean the skies.",
},
},
- [358] = {
+ [371] = {
id = "FourUniqueBreach3",
name = "Beyond Reach",
text = {
@@ -2863,7 +2975,7 @@ return {
"that protects us from ourselves.",
},
},
- [359] = {
+ [372] = {
id = "FourUniqueBreach4a",
name = "Xoph's Blood",
text = {
@@ -2871,7 +2983,7 @@ return {
"Through us he carries his burning message.",
},
},
- [360] = {
+ [373] = {
id = "FourUniqueBreach4b",
name = "Choir of the Storm",
text = {
@@ -2880,7 +2992,7 @@ return {
"And the fool was unwritten.",
},
},
- [361] = {
+ [374] = {
id = "FourUniqueBreach4c",
name = "The Pandemonius",
text = {
@@ -2888,7 +3000,7 @@ return {
"beneath which all are buried.",
},
},
- [362] = {
+ [375] = {
id = "FourUniqueSpirit1",
name = "Rite of Passage",
text = {
@@ -2896,7 +3008,7 @@ return {
"Azmeri must prove themselves before the Spirit.",
},
},
- [363] = {
+ [376] = {
id = "FourUniqueCorruption1",
name = "The Gnashing Sash",
text = {
@@ -2905,7 +3017,7 @@ return {
"- Rantings of a Templar prisoner, page fourteen",
},
},
- [364] = {
+ [377] = {
id = "FourUniqueCorruption2",
name = "Bursting Decay",
text = {
@@ -2914,7 +3026,7 @@ return {
"- Rantings of a Templar prisoner, page thirty",
},
},
- [365] = {
+ [378] = {
id = "FourUniqueCorruption3",
name = "Death Articulated",
text = {
@@ -2923,28 +3035,28 @@ return {
"- Rantings of a Templar prisoner, page ninety-four",
},
},
- [366] = {
+ [379] = {
id = "FourUniqueJewel1",
name = "Grand Spectrum",
text = {
"A wellspring of vitality bubbling from within.",
},
},
- [367] = {
+ [380] = {
id = "FourUniqueJewel2",
name = "Grand Spectrum",
text = {
"An indomitable force of control.",
},
},
- [368] = {
+ [381] = {
id = "FourUniqueJewel3",
name = "Grand Spectrum",
text = {
"Skin like steel tempered by bright flames.",
},
},
- [369] = {
+ [382] = {
id = "FourUniqueJewel4",
name = "Megalomaniac",
text = {
@@ -2952,7 +3064,7 @@ return {
"than everyone else, make sure you are.",
},
},
- [370] = {
+ [383] = {
id = "FourUniqueJewel5",
name = "Heroic Tragedy",
text = {
@@ -2960,7 +3072,7 @@ return {
"but that bravery became the doom at their door.",
},
},
- [371] = {
+ [384] = {
id = "FourUniqueJewel6",
name = "From Nothing",
text = {
@@ -2968,7 +3080,7 @@ return {
"breathing deep with joy the exquisite light of meaning.",
},
},
- [372] = {
+ [385] = {
id = "FourUniqueJewel7",
name = "Controlled Metamorphosis",
text = {
@@ -2976,14 +3088,14 @@ return {
"We broke free from the chains within.",
},
},
- [373] = {
+ [386] = {
id = "FourUniqueJewel8",
name = "Prism of Belief",
text = {
"Entropy can be reversed.",
},
},
- [374] = {
+ [387] = {
id = "FourUniqueJewel9",
name = "The Adorned",
text = {
@@ -2992,11 +3104,19 @@ return {
"now nothing more than a passing wonder.",
},
},
- [375] = {
+ [388] = {
id = "FourUniqueJewel10",
name = "Against the Darkness",
text = {
"After the fires, in the depths of the Winter of the World, all life in the Vastiri banded together. Whether serpent, hyena, human, or golem, hated enemies clasped hand to claw, built refuge, and fought side by side against the Abyssals. Thus, the Third Pact was born.",
},
},
+ [389] = {
+ id = "FourUniqueJewel12",
+ name = "Heart of the Well",
+ text = {
+ "Countless souls scream in agonising harmony,",
+ "forever sinking under the weight of the newly dead.",
+ },
+ },
}
diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua
index 65a3899a4e..f63f200ddf 100644
--- a/src/Data/Gems.lua
+++ b/src/Data/Gems.lua
@@ -9,17 +9,18 @@ return {
variantId = "IceNova",
grantedEffectId = "IceNovaPlayer",
additionalStatSet1 = "IceNovaPlayerOnFrostbolt",
+ additionalStatSet2 = "IceNovaColdInfusedPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
cold = true,
+ duration = true,
nova = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Cold, Nova",
+ gemType = "Spell",
+ tagString = "AoE, Cold, Duration, Nova",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -86,15 +87,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
physical = true,
fire = true,
detonator = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Physical, Fire, Detonator",
+ gemType = "Spell",
+ tagString = "AoE, Physical, Fire, Detonator",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -107,16 +107,16 @@ return {
gameId = "Metadata/Items/Gems/SkillGemVolatileDead",
variantId = "VolatileDead",
grantedEffectId = "VolatileDeadPlayer",
+ additionalStatSet1 = "VolatileDeadIgniteAuraPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
fire = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Fire",
+ gemType = "Spell",
+ tagString = "AoE, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -124,7 +124,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemAddedFireDamageSupport"] = {
- name = "Fire Infusion",
+ name = "Fire Attunement",
gameId = "Metadata/Items/Gems/SupportGemFireInfusion",
variantId = "AddedFireDamageSupport",
grantedEffectId = "SupportAddedFireDamagePlayer",
@@ -134,6 +134,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Fire Attunement",
tagString = "Attack, Fire",
reqStr = 100,
reqDex = 0,
@@ -141,16 +142,17 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFasterAttackSupport"] = {
- name = "Martial Tempo",
+ ["Metadata/Items/Gems/SkillGemRapidAttacksSupport"] = {
+ name = "Rapid Attacks I",
gameId = "Metadata/Items/Gems/SupportGemMartialTempo",
- variantId = "FasterAttackSupport",
- grantedEffectId = "SupportFasterAttackPlayer",
+ variantId = "RapidAttacksSupport",
+ grantedEffectId = "SupportRapidAttacksPlayer",
tags = {
support = true,
attack = true,
},
gemType = "Support",
+ gemFamily = "Rapid Attacks",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
@@ -158,16 +160,53 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemMultipleProjectilesSupport"] = {
- name = "Scattershot",
+ ["Metadata/Items/Gems/SkillGemRapidAttacksSupportTwo"] = {
+ name = "Rapid Attacks II",
+ gameId = "Metadata/Items/Gems/SupportGemMartialTempoTwo",
+ variantId = "RapidAttacksSupportTwo",
+ grantedEffectId = "SupportRapidAttacksPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rapid Attacks",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRapidAttacksSupportThree"] = {
+ name = "Rapid Attacks III",
+ gameId = "Metadata/Items/Gems/SupportGemMartialTempoThree",
+ variantId = "RapidAttacksSupportThree",
+ grantedEffectId = "SupportRapidAttacksPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rapid Attacks",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemMultishotSupport"] = {
+ name = "Multishot I",
gameId = "Metadata/Items/Gems/SupportGemScattershot",
- variantId = "MultipleProjectilesSupport",
- grantedEffectId = "SupportMultipleProjectilesPlayer",
+ variantId = "MultishotSupport",
+ grantedEffectId = "SupportMultishotPlayer",
tags = {
support = true,
projectile = true,
},
gemType = "Support",
+ gemFamily = "Additional Projectiles",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -175,16 +214,53 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFasterProjectilesSupport"] = {
- name = "Acceleration",
+ ["Metadata/Items/Gems/SkillGemMultishotSupportTwo"] = {
+ name = "Multishot II",
+ gameId = "Metadata/Items/Gems/SupportGemScattershotTwo",
+ variantId = "MultishotSupportTwo",
+ grantedEffectId = "SupportMultishotPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Additional Projectiles",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemNovaProjectilesSupport"] = {
+ name = "Nova Projectiles",
+ gameId = "Metadata/Items/Gems/SupportGemNovaProjectiles",
+ variantId = "NovaProjectilesSupport",
+ grantedEffectId = "SupportNovaProjectilesPlayer",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Additional Projectiles",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupport"] = {
+ name = "Projectile Acceleration I",
gameId = "Metadata/Items/Gems/SupportGemAcceleration",
- variantId = "FasterProjectilesSupport",
- grantedEffectId = "SupportFasterProjectilesPlayer",
+ variantId = "ProjectileAccelerationSupport",
+ grantedEffectId = "SupportProjectileAccelerationPlayer",
tags = {
support = true,
projectile = true,
},
gemType = "Support",
+ gemFamily = "Projectile Speed",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -192,8 +268,44 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupportTwo"] = {
+ name = "Projectile Acceleration II",
+ gameId = "Metadata/Items/Gems/SupportGemAccelerationTwo",
+ variantId = "ProjectileAccelerationSupportTwo",
+ grantedEffectId = "SupportProjectileAccelerationPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Projectile Speed",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemProjectileAccelerationSupportThree"] = {
+ name = "Projectile Acceleration III",
+ gameId = "Metadata/Items/Gems/SupportGemAccelerationThree",
+ variantId = "ProjectileAccelerationSupportThree",
+ grantedEffectId = "SupportProjectileAccelerationPlayerThree",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Projectile Speed",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemAddedColdDamageSupport"] = {
- name = "Cold Infusion",
+ name = "Cold Attunement",
gameId = "Metadata/Items/Gems/SupportGemColdInfusion",
variantId = "AddedColdDamageSupport",
grantedEffectId = "SupportAddedColdDamagePlayer",
@@ -203,6 +315,7 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Cold Attunement",
tagString = "Attack, Cold",
reqStr = 0,
reqDex = 0,
@@ -210,33 +323,53 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemAdditionalAccuracySupport"] = {
- name = "Bullseye",
+ ["Metadata/Items/Gems/SkillGemHeightenedAccuracySupport"] = {
+ name = "Heightened Accuracy I",
gameId = "Metadata/Items/Gems/SupportGemBullseye",
- variantId = "AdditionalAccuracySupport",
- grantedEffectId = "SupportAdditionalAccuracyPlayer",
+ variantId = "HeightenedAccuracySupport",
+ grantedEffectId = "SupportHeightenedAccuracyPlayer",
tags = {
support = true,
attack = true,
},
gemType = "Support",
+ gemFamily = "Heightened Accuracy",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemHeightenedAccuracySupportTwo"] = {
+ name = "Heightened Accuracy II",
+ gameId = "Metadata/Items/Gems/SupportGemBullseyeTwo",
+ variantId = "HeightenedAccuracySupportTwo",
+ grantedEffectId = "SupportHeightenedAccuracyPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Heightened Accuracy",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemIncreasedAreaOfEffectSupport"] = {
- name = "Magnified Effect",
+ ["Metadata/Items/Gems/SkillGemMagnifiedAreaSupport"] = {
+ name = "Magnified Area I",
gameId = "Metadata/Items/Gems/SupportGemMagnifiedEffect",
- variantId = "IncreasedAreaOfEffectSupport",
- grantedEffectId = "SupportIncreasedAreaOfEffectPlayer",
+ variantId = "MagnifiedAreaSupport",
+ grantedEffectId = "SupportMagnifiedAreaPlayer",
tags = {
support = true,
area = true,
},
gemType = "Support",
+ gemFamily = "Increased Area of Effect",
tagString = "AoE",
reqStr = 0,
reqDex = 0,
@@ -244,8 +377,26 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemMagnifiedAreaSupportTwo"] = {
+ name = "Magnified Area II",
+ gameId = "Metadata/Items/Gems/SupportGemMagnifiedEffectTwo",
+ variantId = "MagnifiedAreaSupportTwo",
+ grantedEffectId = "SupportMagnifiedAreaPlayerTwo",
+ tags = {
+ support = true,
+ area = true,
+ },
+ gemType = "Support",
+ gemFamily = "Increased Area of Effect",
+ tagString = "AoE",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemAddedLightningDamageSupport"] = {
- name = "Lightning Infusion",
+ name = "Lightning Attunement",
gameId = "Metadata/Items/Gems/SupportGemLightningInfusion",
variantId = "AddedLightningDamageSupport",
grantedEffectId = "SupportAddedLightningDamagePlayer",
@@ -255,6 +406,7 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Lightning Attunement",
tagString = "Attack, Lightning",
reqStr = 0,
reqDex = 100,
@@ -283,15 +435,16 @@ return {
Tier = 5,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemInspirationSupport"] = {
- name = "Inspiration",
+ ["Metadata/Items/Gems/SkillGemEfficiencySupport"] = {
+ name = "Efficiency I",
gameId = "Metadata/Items/Gems/SupportGemInspiration",
- variantId = "InspirationSupport",
- grantedEffectId = "SupportInspirationPlayer",
+ variantId = "EfficiencySupport",
+ grantedEffectId = "SupportEfficiencyPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Efficiency",
tagString = "",
reqStr = 100,
reqDex = 0,
@@ -299,6 +452,23 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemEfficiencySupportTwo"] = {
+ name = "Efficiency II",
+ gameId = "Metadata/Items/Gems/SupportGemInspirationTwo",
+ variantId = "EfficiencySupportTwo",
+ grantedEffectId = "SupportEfficiencyPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Efficiency",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemIncreasedCriticalDamageSupport"] = {
name = "Supercritical",
gameId = "Metadata/Items/Gems/SupportGemSupercritical",
@@ -306,10 +476,10 @@ return {
grantedEffectId = "SupportIncreasedCriticalDamagePlayer",
tags = {
support = true,
- critical = true,
},
gemType = "Support",
- tagString = "Critical",
+ gemFamily = "Supercritical",
+ tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -317,7 +487,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemKnockbackSupport"] = {
- name = "Bludgeon",
+ name = "Knockback",
gameId = "Metadata/Items/Gems/SupportGemBludgeon",
variantId = "KnockbackSupport",
grantedEffectId = "SupportKnockbackPlayer",
@@ -325,15 +495,16 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Knockback",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLifeLeechSupport"] = {
- name = "Life Thief",
+ name = "Life Leech I",
gameId = "Metadata/Items/Gems/SupportGemLifeThief",
variantId = "LifeLeechSupport",
grantedEffectId = "SupportLifeLeechPlayer",
@@ -343,6 +514,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Life Leech",
tagString = "Attack, Physical",
reqStr = 100,
reqDex = 0,
@@ -350,8 +522,46 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemLifeLeechSupportTwo"] = {
+ name = "Life Leech II",
+ gameId = "Metadata/Items/Gems/SupportGemLifeThiefTwo",
+ variantId = "LifeLeechSupportTwo",
+ grantedEffectId = "SupportLifeLeechPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Life Leech",
+ tagString = "Attack, Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemLifeLeechSupportThree"] = {
+ name = "Life Leech III",
+ gameId = "Metadata/Items/Gems/SupportGemLifeThiefThree",
+ variantId = "LifeLeechSupportThree",
+ grantedEffectId = "SupportLifeLeechPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Life Leech",
+ tagString = "Attack, Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemManaLeechSupport"] = {
- name = "Soul Thief",
+ name = "Mana Leech",
gameId = "Metadata/Items/Gems/SupportGemSoulThief",
variantId = "ManaLeechSupport",
grantedEffectId = "SupportManaLeechPlayer",
@@ -361,6 +571,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Mana Leech",
tagString = "Attack, Physical",
reqStr = 0,
reqDex = 0,
@@ -369,7 +580,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAddedChaosDamageSupport"] = {
- name = "Chaos Infusion",
+ name = "Chaos Attunement",
gameId = "Metadata/Items/Gems/SupportGemChaosInfusion",
variantId = "AddedChaosDamageSupport",
grantedEffectId = "SupportAddedChaosDamagePlayer",
@@ -379,6 +590,7 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Chaos Attunement",
tagString = "Attack, Chaos",
reqStr = 0,
reqDex = 0,
@@ -416,17 +628,17 @@ return {
gameId = "Metadata/Items/Gems/SkillGemSpark",
variantId = "Spark",
grantedEffectId = "SparkPlayer",
+ additionalStatSet1 = "SparkColdInfusedPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
projectile = true,
lightning = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Projectile, Lightning, Duration",
+ gemType = "Spell",
+ tagString = "Projectile, Lightning, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -434,7 +646,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemPierceSupport"] = {
- name = "Pierce",
+ name = "Pierce I",
gameId = "Metadata/Items/Gems/SupportGemPierce",
variantId = "PierceSupport",
grantedEffectId = "SupportPiercePlayer",
@@ -443,6 +655,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Pierce",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -450,6 +663,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemPierceSupportTwo"] = {
+ name = "Pierce II",
+ gameId = "Metadata/Items/Gems/SupportGemPierceTwo",
+ variantId = "PierceSupportTwo",
+ grantedEffectId = "SupportPiercePlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pierce",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPierceSupportThree"] = {
+ name = "Pierce III",
+ gameId = "Metadata/Items/Gems/SupportGemPierceThree",
+ variantId = "PierceSupportThree",
+ grantedEffectId = "SupportPiercePlayerThree",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pierce",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemSummonSpectre"] = {
name = "Spectre: {0}",
baseTypeName = "Spectre: {0} ",
@@ -459,12 +708,11 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
minion = true,
persistent = true,
},
- gemType = "Barrageable",
- tagString = "Minion, Persistent",
+ gemType = "Minion",
+ tagString = "Persistent",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -477,6 +725,7 @@ return {
gameId = "Metadata/Items/Gems/SkillGemFrostWall",
variantId = "FrostWall",
grantedEffectId = "FrostWallPlayer",
+ additionalStatSet1 = "FrostWallInfusedPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
@@ -493,29 +742,6 @@ return {
Tier = 9,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemShockNova"] = {
- name = "Shock Nova",
- baseTypeName = "Shock Nova",
- gameId = "Metadata/Items/Gems/SkillGemShockNova",
- variantId = "ShockNova",
- grantedEffectId = "ShockNovaPlayer",
- tags = {
- intelligence = true,
- grants_active_skill = true,
- barrageable = true,
- spell = true,
- area = true,
- lightning = true,
- nova = true,
- },
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning, Nova",
- reqStr = 0,
- reqDex = 0,
- reqInt = 100,
- Tier = 0,
- naturalMaxLevel = 20,
- },
["Metadata/Items/Gems/SkillGemMeleePhysicalDamageSupport"] = {
name = "Heavy Swing",
gameId = "Metadata/Items/Gems/SupportGemHeavySwing",
@@ -528,23 +754,25 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Heavy Swing",
tagString = "Attack, Melee, Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 4,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFasterCastSupport"] = {
- name = "Arcane Tempo",
+ ["Metadata/Items/Gems/SkillGemRapidCastingSupport"] = {
+ name = "Rapid Casting I",
gameId = "Metadata/Items/Gems/SupportGemArcaneTempo",
- variantId = "FasterCastSupport",
- grantedEffectId = "SupportFasterCastPlayer",
+ variantId = "RapidCastingSupport",
+ grantedEffectId = "SupportRapidCastingPlayer",
tags = {
support = true,
spell = true,
},
gemType = "Support",
+ gemFamily = "Rapid Casting",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -552,6 +780,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemRapidCastingSupportTwo"] = {
+ name = "Rapid Casting II",
+ gameId = "Metadata/Items/Gems/SupportGemArcaneTempoTwo",
+ variantId = "RapidCastingSupportTwo",
+ grantedEffectId = "SupportRapidCastingPlayerTwo",
+ tags = {
+ support = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rapid Casting",
+ tagString = "Spell",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRapidCastingSupportThree"] = {
+ name = "Rapid Casting III",
+ gameId = "Metadata/Items/Gems/SupportGemArcaneTempoThree",
+ variantId = "RapidCastingSupportThree",
+ grantedEffectId = "SupportRapidCastingPlayerThree",
+ tags = {
+ support = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rapid Casting",
+ tagString = "Spell",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemTemporalChains"] = {
name = "Temporal Chains",
baseTypeName = "Temporal Chains",
@@ -561,18 +825,17 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 13,
+ Tier = 7,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemEnfeeble"] = {
@@ -584,14 +847,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -607,13 +869,11 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
- spell = true,
mark = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Mark, Duration",
+ gemType = "Mark",
+ tagString = "Duration",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -629,15 +889,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
chaos = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Chaos, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Chaos, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -653,14 +912,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
lightning = true,
duration = true,
+ remnant = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Lightning, Duration, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -714,16 +973,17 @@ return {
Tier = 9,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemConcentratedEffectSupport"] = {
- name = "Concentrated Effect",
+ ["Metadata/Items/Gems/SkillGemConcentratedAreaSupport"] = {
+ name = "Concentrated Area",
gameId = "Metadata/Items/Gems/SupportGemConcentratedEffect",
- variantId = "ConcentratedEffectSupport",
- grantedEffectId = "SupportConcentratedEffectPlayer",
+ variantId = "ConcentratedAreaSupport",
+ grantedEffectId = "SupportConcentratedAreaPlayer",
tags = {
support = true,
area = true,
},
gemType = "Support",
+ gemFamily = "Concentrated Area",
tagString = "AoE",
reqStr = 0,
reqDex = 0,
@@ -743,11 +1003,12 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Bloodlust",
tagString = "Attack, Melee, Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFirestorm"] = {
@@ -756,20 +1017,19 @@ return {
gameId = "Metadata/Items/Gems/SkillGemFirestorm",
variantId = "Firestorm",
grantedEffectId = "FirestormPlayer",
- additionalStatSet1 = "FirestormEmpoweredPlayer",
+ additionalStatSet1 = "FirestormColdInfusionPlayer",
+ additionalStatSet2 = "FirestormLightningInfusionPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
sustained = true,
fire = true,
duration = true,
- payoff = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Sustained, Fire, Duration, Payoff",
+ gemType = "Spell",
+ tagString = "AoE, Sustained, Fire, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -833,15 +1093,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
lightning = true,
chaining = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Lightning, Chaining",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Lightning, Chaining, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -886,12 +1146,11 @@ return {
area = true,
melee = true,
slam = true,
- physical = true,
duration = true,
nova = true,
},
gemType = "Attack",
- tagString = "Totem, AoE, Melee, Slam, Physical, Duration, Nova",
+ tagString = "Totem, AoE, Melee, Slam, Duration, Nova",
weaponRequirements = "Any Martial Weapon",
reqStr = 100,
reqDex = 0,
@@ -900,7 +1159,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemBlindSupport"] = {
- name = "Blind",
+ name = "Blind I",
gameId = "Metadata/Items/Gems/SupportGemBlind",
variantId = "BlindSupport",
grantedEffectId = "SupportBlindPlayer",
@@ -908,6 +1167,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Blind",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -915,25 +1175,64 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemArc"] = {
- name = "Arc",
- baseTypeName = "Arc",
- gameId = "Metadata/Items/Gems/SkillGemArc",
- variantId = "Arc",
- grantedEffectId = "ArcPlayer",
- additionalStatSet1 = "ArcExplosionPlayer",
+ ["Metadata/Items/Gems/SkillGemBlindSupportTwo"] = {
+ name = "Blind II",
+ gameId = "Metadata/Items/Gems/SupportGemBlindTwo",
+ variantId = "BlindSupportTwo",
+ grantedEffectId = "SupportBlindPlayerTwo",
tags = {
- intelligence = true,
- grants_active_skill = true,
- barrageable = true,
- spell = true,
- area = true,
- lightning = true,
- chaining = true,
- payoff = true,
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Blind",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemValakosCharge"] = {
+ name = "Valako's Charge",
+ baseTypeName = "Valako's Charge",
+ gameId = "Metadata/Items/Gems/SkillGemValakosCharge",
+ variantId = "ValakosCharge",
+ grantedEffectId = "ValakosChargePlayer",
+ additionalStatSet1 = "ValakosChargeArcPlayer",
+ tags = {
+ strength = true,
+ dexterity = true,
+ grants_active_skill = true,
+ spell = true,
+ area = true,
+ trigger = true,
+ lightning = true,
+ chaining = true,
+ },
+ gemType = "Spell",
+ tagString = "AoE, Trigger, Lightning, Chaining",
+ reqStr = 50,
+ reqDex = 50,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemArc"] = {
+ name = "Arc",
+ baseTypeName = "Arc",
+ gameId = "Metadata/Items/Gems/SkillGemArc",
+ variantId = "Arc",
+ grantedEffectId = "ArcPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ spell = true,
+ projectile = true,
+ lightning = true,
+ chaining = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning, Chaining, Payoff",
+ gemType = "Spell",
+ tagString = "Projectile, Lightning, Chaining",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -965,7 +1264,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemFirePenetrationSupport"] = {
- name = "Fire Penetration",
+ name = "Fire Penetration I",
gameId = "Metadata/Items/Gems/SupportGemFirePenetration",
variantId = "FirePenetrationSupport",
grantedEffectId = "SupportFirePenetrationPlayer",
@@ -974,6 +1273,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Fire Penetration",
tagString = "Fire",
reqStr = 100,
reqDex = 0,
@@ -981,6 +1281,24 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemFirePenetrationSupportTwo"] = {
+ name = "Fire Penetration II",
+ gameId = "Metadata/Items/Gems/SupportGemFirePenetrationTwo",
+ variantId = "FirePenetrationSupportTwo",
+ grantedEffectId = "SupportFirePenetrationPlayerTwo",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fire Penetration",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemColdPenetrationSupport"] = {
name = "Cold Penetration",
gameId = "Metadata/Items/Gems/SupportGemColdPenetration",
@@ -991,6 +1309,7 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Cold Penetration",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
@@ -1008,6 +1327,7 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Lightning Penetration",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
@@ -1016,7 +1336,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemChainSupport"] = {
- name = "Chain",
+ name = "Chain I",
gameId = "Metadata/Items/Gems/SupportGemChain",
variantId = "ChainSupport",
grantedEffectId = "SupportChainPlayer",
@@ -1026,6 +1346,7 @@ return {
chaining = true,
},
gemType = "Support",
+ gemFamily = "Chain",
tagString = "Projectile, Chaining",
reqStr = 0,
reqDex = 100,
@@ -1033,6 +1354,44 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemChainSupportTwo"] = {
+ name = "Chain II",
+ gameId = "Metadata/Items/Gems/SupportGemChainTwo",
+ variantId = "ChainSupportTwo",
+ grantedEffectId = "SupportChainPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ chaining = true,
+ },
+ gemType = "Support",
+ gemFamily = "Chain",
+ tagString = "Projectile, Chaining",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemChainSupportThree"] = {
+ name = "Chain III",
+ gameId = "Metadata/Items/Gems/SupportGemChainThree",
+ variantId = "ChainSupportThree",
+ grantedEffectId = "SupportChainPlayerThree",
+ tags = {
+ support = true,
+ projectile = true,
+ chaining = true,
+ },
+ gemType = "Support",
+ gemFamily = "Chain",
+ tagString = "Projectile, Chaining",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemForkSupport"] = {
name = "Fork",
gameId = "Metadata/Items/Gems/SupportGemFork",
@@ -1043,6 +1402,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Fork",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -1059,19 +1419,18 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
fire = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Fire, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Fire, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 7,
+ Tier = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemHypothermia"] = {
@@ -1083,19 +1442,18 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
cold = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Cold, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Cold, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 7,
+ Tier = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemConductivity"] = {
@@ -1107,15 +1465,39 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
lightning = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Lightning, Duration, Curse",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemElementalWeakness"] = {
+ name = "Elemental Weakness",
+ baseTypeName = "Elemental Weakness",
+ gameId = "Metadata/Items/Gem/SkillGemElementalWeakness",
+ variantId = "ElementalWeakness",
+ grantedEffectId = "ElementalWeaknessPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ spell = true,
+ area = true,
+ lightning = true,
+ cold = true,
+ fire = true,
+ duration = true,
+ curse = true,
+ },
+ gemType = "Spell",
+ tagString = "AoE, Lightning, Cold, Fire, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1145,7 +1527,7 @@ return {
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 5,
+ Tier = 9,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemSpellEchoSupport"] = {
@@ -1159,6 +1541,7 @@ return {
area = true,
},
gemType = "Support",
+ gemFamily = "Spell Echo",
tagString = "Spell, AoE",
reqStr = 0,
reqDex = 0,
@@ -1176,6 +1559,7 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Elemental Army",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
@@ -1183,16 +1567,17 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemSlowerProjectilesSupport"] = {
- name = "Deceleration",
+ ["Metadata/Items/Gems/SkillGemProjectileDecelerationSupport"] = {
+ name = "Projectile Deceleration I",
gameId = "Metadata/Items/Gems/SupportGemDeceleration",
- variantId = "SlowerProjectilesSupport",
- grantedEffectId = "SupportSlowerProjectilesPlayer",
+ variantId = "ProjectileDecelerationSupport",
+ grantedEffectId = "SupportProjectileDecelerationPlayer",
tags = {
support = true,
projectile = true,
},
gemType = "Support",
+ gemFamily = "Projectile Speed",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -1200,6 +1585,44 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemProjectileDecelerationSupportTwo"] = {
+ name = "Projectile Deceleration II",
+ gameId = "Metadata/Items/Gems/SupportGemDecelerationTwo",
+ variantId = "ProjectileDecelerationSupportTwo",
+ grantedEffectId = "SupportProjectileDecelerationPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Projectile Speed",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemVilentasPropulsionSupport"] = {
+ name = "Vilenta's Propulsion",
+ gameId = "Metadata/Items/Gems/SupportGemVilentasPropulsion",
+ variantId = "VilentasPropulsionSupport",
+ grantedEffectId = "SupportVilentasPropulsionPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ spell = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Projectile Speed",
+ tagString = "Lineage, Spell, Projectile",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemPurityOfFire"] = {
name = "Purity of Fire",
baseTypeName = "Purity of Fire",
@@ -1344,19 +1767,21 @@ return {
gameId = "Metadata/Items/Gems/SkillGemBallLightning",
variantId = "BallLightning",
grantedEffectId = "BallLightningPlayer",
+ additionalStatSet1 = "BallLightningInfusedExplosionPlayer",
+ additionalStatSet2 = "BallLightningIgnitedGround",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
projectile = true,
sustained = true,
lightning = true,
+ duration = true,
chaining = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Projectile, Sustained, Lightning, Chaining",
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Sustained, Lightning, Duration, Chaining",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1372,15 +1797,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
minion = true,
buff = true,
area = true,
physical = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Minion, Buff, AoE, Physical, Duration",
+ gemType = "Minion",
+ tagString = "Buff, AoE, Physical, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1507,9 +1931,10 @@ return {
trigger = true,
fire = true,
duration = true,
+ nova = true,
},
gemType = "Warcry",
- tagString = "AoE, Trigger, Fire, Duration",
+ tagString = "AoE, Trigger, Fire, Duration, Nova",
reqStr = 100,
reqDex = 0,
reqInt = 0,
@@ -1528,6 +1953,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Ice Bite",
tagString = "Attack, Cold, Duration",
reqStr = 0,
reqDex = 0,
@@ -1535,33 +1961,35 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemGlaciationSupport"] = {
- name = "Glaciation",
+ ["Metadata/Items/Gems/SkillGemFreezeSupport"] = {
+ name = "Freeze",
gameId = "Metadata/Items/Gems/SupportGemGlaciation",
- variantId = "GlaciationSupport",
- grantedEffectId = "SupportGlaciationPlayer",
+ variantId = "FreezeSupport",
+ grantedEffectId = "SupportFreezePlayer",
tags = {
support = true,
cold = true,
},
gemType = "Support",
+ gemFamily = "Freeze",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemChanceToShockSupport"] = {
- name = "Conduction",
+ ["Metadata/Items/Gems/SkillGemShockSupport"] = {
+ name = "Shock",
gameId = "Metadata/Items/Gems/SupportGemConduction",
- variantId = "ChanceToShockSupport",
- grantedEffectId = "SupportChanceToShockPlayer",
+ variantId = "ShockSupport",
+ grantedEffectId = "SupportShockPlayer",
tags = {
support = true,
lightning = true,
},
gemType = "Support",
+ gemFamily = "Shock",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
@@ -1583,9 +2011,10 @@ return {
cold = true,
duration = true,
orb = true,
+ remnant = true,
},
gemType = "Spell",
- tagString = "AoE, Cold, Duration, Orb",
+ tagString = "AoE, Cold, Duration, Orb, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1608,9 +2037,10 @@ return {
duration = true,
chaining = true,
orb = true,
+ remnant = true,
},
gemType = "Spell",
- tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb",
+ tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1651,14 +2081,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
chaos = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Chaos, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Chaos, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1698,14 +2127,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
projectile = true,
chaos = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Projectile, Chaos, Duration",
+ gemType = "Spell",
+ tagString = "Projectile, Chaos, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1720,10 +2148,10 @@ return {
tags = {
support = true,
spell = true,
- critical = true,
},
gemType = "Support",
- tagString = "Spell, Critical",
+ gemFamily = "Controlled Destruction",
+ tagString = "Spell",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1744,10 +2172,11 @@ return {
area = true,
melee = true,
slam = true,
+ duration = true,
payoff = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Slam, Payoff",
+ tagString = "AoE, Melee, Slam, Duration, Payoff",
weaponRequirements = "One Hand Mace, Two Hand Mace",
reqStr = 100,
reqDex = 0,
@@ -1765,19 +2194,17 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
projectile = true,
cold = true,
- duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Projectile, Cold, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemElementalFocusSupport"] = {
@@ -1789,6 +2216,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Elemental Focus",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -1848,15 +2276,17 @@ return {
gameId = "Metadata/Items/Gems/SkillGemSkeletalBrute",
variantId = "SkeletalBrute",
grantedEffectId = "SummonSkeletalBrutesPlayer",
+ additionalGrantedEffectId1 = "CommandSkeletalBrutesPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
minion = true,
persistent = true,
physical = true,
+ payoff = true,
},
gemType = "Minion",
- tagString = "Persistent, Physical",
+ tagString = "Persistent, Physical, Payoff",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -1985,6 +2415,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Wildfire",
tagString = "AoE, Fire",
reqStr = 0,
reqDex = 0,
@@ -1992,16 +2423,17 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemChanceToBleedSupport"] = {
- name = "Lacerate",
+ ["Metadata/Items/Gems/SkillGemBleedSupport"] = {
+ name = "Bleed I",
gameId = "Metadata/Items/Gems/SupportGemLacerate",
- variantId = "ChanceToBleedSupport",
- grantedEffectId = "SupportChanceToBleedPlayer",
+ variantId = "BleedSupport",
+ grantedEffectId = "SupportBleedPlayer",
tags = {
support = true,
physical = true,
},
gemType = "Support",
+ gemFamily = "Bleed",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -2009,16 +2441,71 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemChanceToPoisonSupport"] = {
- name = "Envenom",
+ ["Metadata/Items/Gems/SkillGemBleedSupportTwo"] = {
+ name = "Bleed II",
+ gameId = "Metadata/Items/Gems/SupportGemLacerateTwo",
+ variantId = "BleedSupportTwo",
+ grantedEffectId = "SupportBleedPlayerTwo",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Bleed",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBleedSupportThree"] = {
+ name = "Bleed III",
+ gameId = "Metadata/Items/Gems/SupportGemLacerateThree",
+ variantId = "BleedSupportThree",
+ grantedEffectId = "SupportBleedPlayerThree",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Bleed",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBleedSupportFour"] = {
+ name = "Bleed IV",
+ gameId = "Metadata/Items/Gems/SupportGemLacerateFour",
+ variantId = "BleedSupportFour",
+ grantedEffectId = "SupportBleedPlayerFour",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Bleed",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPoisonSupport"] = {
+ name = "Poison I",
gameId = "Metadata/Items/Gems/SupportGemEnvenom",
- variantId = "ChanceToPoisonSupport",
- grantedEffectId = "SupportChanceToPoisonPlayer",
+ variantId = "PoisonSupport",
+ grantedEffectId = "SupportPoisonPlayer",
tags = {
support = true,
chaos = true,
},
gemType = "Support",
+ gemFamily = "Poison",
tagString = "Chaos",
reqStr = 0,
reqDex = 100,
@@ -2026,6 +2513,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemPoisonSupportTwo"] = {
+ name = "Poison II",
+ gameId = "Metadata/Items/Gems/SupportGemEnvenomTwo",
+ variantId = "PoisonSupportTwo",
+ grantedEffectId = "SupportPoisonPlayerTwo",
+ tags = {
+ support = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Poison",
+ tagString = "Chaos",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPoisonSupportThree"] = {
+ name = "Poison III",
+ gameId = "Metadata/Items/Gems/SupportGemEnvenomThree",
+ variantId = "PoisonSupportThree",
+ grantedEffectId = "SupportPoisonPlayerThree",
+ tags = {
+ support = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Poison",
+ tagString = "Chaos",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemMaimSupport"] = {
name = "Maim",
gameId = "Metadata/Items/Gems/SupportGemMaim",
@@ -2036,6 +2559,7 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Maim",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
@@ -2054,6 +2578,7 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Immolate",
tagString = "Fire, Payoff",
reqStr = 100,
reqDex = 0,
@@ -2071,15 +2596,16 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Lasting Shock",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBrutalitySupport"] = {
- name = "Brutality",
+ name = "Brutality I",
gameId = "Metadata/Items/Gems/SupportGemBrutality",
variantId = "BrutalitySupport",
grantedEffectId = "SupportBrutalityPlayer",
@@ -2088,6 +2614,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Brutality",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -2095,6 +2622,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemBrutalitySupportTwo"] = {
+ name = "Brutality II",
+ gameId = "Metadata/Items/Gems/SupportGemBrutalityTwo",
+ variantId = "BrutalitySupportTwo",
+ grantedEffectId = "SupportBrutalityPlayerTwo",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Brutality",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBrutalitySupportThree"] = {
+ name = "Brutality III",
+ gameId = "Metadata/Items/Gems/SupportGemBrutalityThree",
+ variantId = "BrutalitySupportThree",
+ grantedEffectId = "SupportBrutalityPlayerThree",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Brutality",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemMomentumSupport"] = {
name = "Momentum",
gameId = "Metadata/Items/Gems/SupportGemMomentum",
@@ -2104,6 +2667,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Momentum",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -2122,6 +2686,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Arcane Surge",
tagString = "Spell, Duration",
reqStr = 0,
reqDex = 0,
@@ -2138,15 +2703,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
physical = true,
duration = true,
curse = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Physical, Duration, Curse",
+ gemType = "Spell",
+ tagString = "AoE, Physical, Duration, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2164,6 +2728,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Withering Touch",
tagString = "Chaos, Duration",
reqStr = 0,
reqDex = 0,
@@ -2171,16 +2736,40 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemUnleashSupport"] = {
- name = "Unleash",
- gameId = "Metadata/Items/Gems/SupportGemUnleash",
- variantId = "UnleashSupport",
- grantedEffectId = "SupportUnleashPlayer",
+ ["Metadata/Items/Gems/SkillGemSoulrend"] = {
+ name = "Soulrend",
+ baseTypeName = "Soulrend",
+ gameId = "Metadata/Items/Gems/SkillGemSoulrend",
+ variantId = "Soulrend",
+ grantedEffectId = "SoulrendPlayer",
+ additionalStatSet1 = "SoulrendDotPlayer",
tags = {
- support = true,
+ intelligence = true,
+ grants_active_skill = true,
spell = true,
- },
- gemType = "Support",
+ projectile = true,
+ chaos = true,
+ duration = true,
+ },
+ gemType = "Spell",
+ tagString = "Projectile, Chaos, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemUnleashSupport"] = {
+ name = "Unleash",
+ gameId = "Metadata/Items/Gems/SupportGemUnleash",
+ variantId = "UnleashSupport",
+ grantedEffectId = "SupportUnleashPlayer",
+ tags = {
+ support = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Unleash",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -2189,7 +2778,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCloseCombatSupport"] = {
- name = "Close Combat",
+ name = "Close Combat I",
gameId = "Metadata/Items/Gems/SupportGemCloseCombat",
variantId = "CloseCombatSupport",
grantedEffectId = "SupportCloseCombatPlayer",
@@ -2198,15 +2787,34 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Close Combat",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCloseCombatSupportTwo"] = {
+ name = "Close Combat II",
+ gameId = "Metadata/Items/Gems/SupportGemCloseCombatTwo",
+ variantId = "CloseCombatSupportTwo",
+ grantedEffectId = "SupportCloseCombatPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Close Combat",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRageSupport"] = {
- name = "Rage",
+ name = "Rage I",
gameId = "Metadata/Items/Gems/SupportGemRage",
variantId = "RageSupport",
grantedEffectId = "SupportRagePlayer",
@@ -2216,6 +2824,7 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Rage",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
@@ -2223,6 +2832,44 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemRageSupportTwo"] = {
+ name = "Rage II",
+ gameId = "Metadata/Items/Gems/SupportGemRageTwo",
+ variantId = "RageSupportTwo",
+ grantedEffectId = "SupportRagePlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rage",
+ tagString = "Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRageSupportThree"] = {
+ name = "Rage III",
+ gameId = "Metadata/Items/Gems/SupportGemRageThree",
+ variantId = "RageSupportThree",
+ grantedEffectId = "SupportRagePlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rage",
+ tagString = "Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemPlagueBearer"] = {
name = "Plague Bearer",
baseTypeName = "Plague Bearer",
@@ -2249,7 +2896,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemFeedingFrenzySupport"] = {
- name = "Feeding Frenzy",
+ name = "Feeding Frenzy I",
gameId = "Metadata/Items/Gems/SupportGemFeedingFrenzy",
variantId = "FeedingFrenzySupport",
grantedEffectId = "SupportFeedingFrenzyPlayer",
@@ -2258,15 +2905,34 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Feeding Frenzy",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFeedingFrenzySupportTwo"] = {
+ name = "Feeding Frenzy II",
+ gameId = "Metadata/Items/Gems/SupportGemFeedingFrenzyTwo",
+ variantId = "FeedingFrenzySupportTwo",
+ grantedEffectId = "SupportFeedingFrenzyPlayerTwo",
+ tags = {
+ support = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Feeding Frenzy",
+ tagString = "Minion",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemMeatShieldSupport"] = {
- name = "Meat Shield",
+ name = "Meat Shield I",
gameId = "Metadata/Items/Gems/SupportGemMeatShield",
variantId = "MeatShieldSupport",
grantedEffectId = "SupportMeatShieldPlayer",
@@ -2275,6 +2941,7 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Meat Shield",
tagString = "Minion",
reqStr = 100,
reqDex = 0,
@@ -2282,8 +2949,45 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemMeatShieldSupportTwo"] = {
+ name = "Meat Shield II",
+ gameId = "Metadata/Items/Gems/SupportGemMeatShieldTwo",
+ variantId = "MeatShieldSupportTwo",
+ grantedEffectId = "SupportMeatShieldPlayerTwo",
+ tags = {
+ support = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Meat Shield",
+ tagString = "Minion",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBrutusBrainSupport"] = {
+ name = "Brutus' Brain",
+ gameId = "Metadata/Items/Gems/SupportGemBrutusBrain",
+ variantId = "BrutusBrainSupport",
+ grantedEffectId = "SupportBrutusBrainPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Meat Shield",
+ tagString = "Lineage, Minion",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemInfernalLegionSupport"] = {
- name = "Infernal Legion",
+ name = "Infernal Legion I",
gameId = "Metadata/Items/Gems/SupportGemInfernalLegion",
variantId = "InfernalLegionSupport",
grantedEffectId = "SupportInfernalLegionPlayer",
@@ -2294,6 +2998,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Infernal Legion",
tagString = "Minion, AoE, Fire",
reqStr = 100,
reqDex = 0,
@@ -2301,27 +3006,67 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemArtilleryBallista"] = {
- name = "Artillery Ballista",
- baseTypeName = "Artillery Ballista",
+ ["Metadata/Items/Gems/SkillGemInfernalLegionSupportTwo"] = {
+ name = "Infernal Legion II",
+ gameId = "Metadata/Items/Gems/SupportGemInfernalLegionTwo",
+ variantId = "InfernalLegionSupportTwo",
+ grantedEffectId = "SupportInfernalLegionPlayerTwo",
+ tags = {
+ support = true,
+ minion = true,
+ area = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Infernal Legion",
+ tagString = "Minion, AoE, Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemInfernalLegionSupportThree"] = {
+ name = "Infernal Legion III",
+ gameId = "Metadata/Items/Gems/SupportGemInfernalLegionThree",
+ variantId = "InfernalLegionSupportThree",
+ grantedEffectId = "SupportInfernalLegionPlayerThree",
+ tags = {
+ support = true,
+ minion = true,
+ area = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Infernal Legion",
+ tagString = "Minion, AoE, Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSiegeBallista"] = {
+ name = "Siege Ballista",
+ baseTypeName = "Siege Ballista",
gameId = "Metadata/Items/Gems/SkillGemArtilleryBallista",
- variantId = "ArtilleryBallista",
- grantedEffectId = "ArtilleryBallistaPlayer",
- additionalGrantedEffectId1 = "ArtilleryBallistaProjectilePlayer",
+ variantId = "SiegeBallista",
+ grantedEffectId = "SiegeBallistaPlayer",
+ additionalGrantedEffectId1 = "SiegeBallistaProjectilePlayer",
tags = {
strength = true,
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
totem = true,
area = true,
projectile = true,
fire = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, Totem, AoE, Projectile, Fire, Duration",
+ gemType = "Attack",
+ tagString = "Totem, AoE, Projectile, Fire, Duration, Barrageable",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -2330,7 +3075,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemSecondWindSupport"] = {
- name = "Second Wind",
+ name = "Second Wind I",
gameId = "Metadata/Items/Gems/SupportGemSecondWind",
variantId = "SecondWindSupport",
grantedEffectId = "SupportSecondWindPlayer",
@@ -2338,11 +3083,46 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Second Wind",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSecondWindSupportTwo"] = {
+ name = "Second Wind II",
+ gameId = "Metadata/Items/Gems/SupportGemSecondWindTwo",
+ variantId = "SecondWindSupportTwo",
+ grantedEffectId = "SupportSecondWindPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Second Wind",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSecondWindSupportThree"] = {
+ name = "Second Wind III",
+ gameId = "Metadata/Items/Gems/SupportGemSecondWindThree",
+ variantId = "SecondWindSupportThree",
+ grantedEffectId = "SupportSecondWindPlayerThree",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Second Wind",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSeismicCry"] = {
@@ -2357,10 +3137,10 @@ return {
warcry = true,
area = true,
physical = true,
- duration = true,
+ nova = true,
},
gemType = "Warcry",
- tagString = "AoE, Physical, Duration",
+ tagString = "AoE, Physical, Nova",
reqStr = 100,
reqDex = 0,
reqInt = 0,
@@ -2425,14 +3205,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
fire = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Fire, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Fire, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2454,6 +3233,7 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Impending Doom",
tagString = "Spell, AoE, Trigger, Chaos",
reqStr = 0,
reqDex = 0,
@@ -2470,14 +3250,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
chaos = true,
payoff = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Chaos, Payoff",
+ gemType = "Spell",
+ tagString = "AoE, Chaos, Payoff",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2492,20 +3271,18 @@ return {
grantedEffectId = "ExsanguinatePlayer",
additionalStatSet1 = "ExsanguinateDotPlayer",
tags = {
- strength = true,
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
physical = true,
duration = true,
chaining = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Physical, Duration, Chaining",
- reqStr = 50,
+ gemType = "Spell",
+ tagString = "Physical, Duration, Chaining",
+ reqStr = 0,
reqDex = 0,
- reqInt = 50,
+ reqInt = 100,
Tier = 0,
naturalMaxLevel = 20,
},
@@ -2516,21 +3293,18 @@ return {
variantId = "Reap",
grantedEffectId = "ReapPlayer",
tags = {
- strength = true,
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
physical = true,
duration = true,
- critical = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Physical, Duration, Critical",
- reqStr = 50,
+ gemType = "Spell",
+ tagString = "AoE, Physical, Duration",
+ reqStr = 0,
reqDex = 0,
- reqInt = 50,
+ reqInt = 100,
Tier = 0,
naturalMaxLevel = 20,
},
@@ -2543,15 +3317,35 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Lifetap",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAtaluiBloodlettingSupport"] = {
+ name = "Atalui's Bloodletting",
+ gameId = "Metadata/Items/Gems/SupportGemAtaluiBloodletting",
+ variantId = "AtaluiBloodlettingSupport",
+ grantedEffectId = "SupportAtaluiBloodlettingPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Lifetap",
+ tagString = "Lineage, Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBeheadSupport"] = {
- name = "Behead",
+ name = "Behead I",
gameId = "Metadata/Items/Gems/SupportGemBehead",
variantId = "BeheadSupport",
grantedEffectId = "SupportBeheadPlayer",
@@ -2562,6 +3356,27 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Behead",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBeheadSupportTwo"] = {
+ name = "Behead II",
+ gameId = "Metadata/Items/Gems/SupportGemBeheadTwo",
+ variantId = "BeheadSupportTwo",
+ grantedEffectId = "SupportBeheadPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Behead",
tagString = "Attack, Melee, Strike",
reqStr = 100,
reqDex = 0,
@@ -2569,8 +3384,29 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemEinharsBeastriteSupport"] = {
+ name = "Einhar's Beastrite",
+ gameId = "Metadata/Items/Gems/SupportGemEinharsBeastrite",
+ variantId = "EinharsBeastriteSupport",
+ grantedEffectId = "SupportEinharsBeastritePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Behead",
+ tagString = "Lineage, Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemExecuteSupport"] = {
- name = "Execute",
+ name = "Execute I",
gameId = "Metadata/Items/Gems/SupportGemExecute",
variantId = "ExecuteSupport",
grantedEffectId = "SupportExecutePlayer",
@@ -2578,6 +3414,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Execute",
tagString = "",
reqStr = 100,
reqDex = 0,
@@ -2585,6 +3422,40 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemExecuteSupportTwo"] = {
+ name = "Execute II",
+ gameId = "Metadata/Items/Gems/SupportGemExecuteTwo",
+ variantId = "ExecuteSupportTwo",
+ grantedEffectId = "SupportExecutePlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Execute",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemExecuteSupportThree"] = {
+ name = "Execute III",
+ gameId = "Metadata/Items/Gems/SupportGemExecuteThree",
+ variantId = "ExecuteSupportThree",
+ grantedEffectId = "SupportExecutePlayerThree",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Execute",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemBoneshatter"] = {
name = "Boneshatter",
baseTypeName = "Boneshatter",
@@ -2618,13 +3489,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
projectile = true,
cold = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Projectile, Cold",
+ gemType = "Spell",
+ tagString = "Projectile, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2641,11 +3511,12 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Overcharge",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLightningConduit"] = {
@@ -2657,14 +3528,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
lightning = true,
- payoff = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning, Payoff",
+ gemType = "Spell",
+ tagString = "AoE, Lightning",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2676,20 +3545,22 @@ return {
baseTypeName = "Galvanic Field",
gameId = "Metadata/Items/Gems/SkillGemGalvanicField",
variantId = "GalvanicField",
- grantedEffectId = "GalvanicFieldPlayer",
+ grantedEffectId = "GalvanicFieldBuffPlayer",
+ additionalStatSet1 = "GalvanicFieldOrbPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
spell = true,
buff = true,
area = true,
+ sustained = true,
lightning = true,
duration = true,
chaining = true,
orb = true,
},
gemType = "Spell",
- tagString = "Buff, AoE, Lightning, Duration, Chaining, Orb",
+ tagString = "Buff, AoE, Sustained, Lightning, Duration, Chaining, Orb",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -2719,7 +3590,7 @@ return {
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 9,
+ Tier = 7,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemRapidAssault"] = {
@@ -2861,14 +3732,14 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
lightning = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Lightning",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Lightning, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -2886,15 +3757,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
cold = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Cold, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Cold, Duration, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -2957,6 +3828,7 @@ return {
gameId = "Metadata/Items/Gems/SkillGemEscapeShot",
variantId = "EscapeShot",
grantedEffectId = "EscapeShotPlayer",
+ additionalGrantedEffectId1 = "EscapeShotIceFragmentPlayer",
tags = {
dexterity = true,
grants_active_skill = true,
@@ -3074,7 +3946,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemJaggedGroundSupport"] = {
- name = "Jagged Ground",
+ name = "Jagged Ground I",
gameId = "Metadata/Items/Gems/SupportGemJaggedGround",
variantId = "JaggedGroundSupport",
grantedEffectId = "SupportJaggedGroundPlayer",
@@ -3087,11 +3959,34 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Jagged Ground",
tagString = "Attack, AoE, Melee, Slam, Duration",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemJaggedGroundSupportTwo"] = {
+ name = "Jagged Ground II",
+ gameId = "Metadata/Items/Gems/SupportGemJaggedGroundTwo",
+ variantId = "JaggedGroundSupportTwo",
+ grantedEffectId = "SupportJaggedGroundPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ area = true,
+ melee = true,
+ slam = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Jagged Ground",
+ tagString = "Attack, AoE, Melee, Slam, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemInevitableCriticalsSupport"] = {
@@ -3101,14 +3996,14 @@ return {
grantedEffectId = "SupportInevitableCriticalsPlayer",
tags = {
support = true,
- critical = true,
},
gemType = "Support",
- tagString = "Critical",
+ gemFamily = "Inevitable Critical",
+ tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRuthlessSupport"] = {
@@ -3120,23 +4015,25 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Ruthless",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemLessDurationSupport"] = {
- name = "Fast Forward",
+ ["Metadata/Items/Gems/SkillGemCompressedDurationSupport"] = {
+ name = "Compressed Duration I",
gameId = "Metadata/Items/Gems/SupportGemFastForward",
- variantId = "LessDurationSupport",
- grantedEffectId = "LessDurationSupportPlayer",
+ variantId = "CompressedDurationSupport",
+ grantedEffectId = "CompressedDurationSupportPlayer",
tags = {
support = true,
duration = true,
},
gemType = "Support",
+ gemFamily = "Compressed Duration",
tagString = "Duration",
reqStr = 100,
reqDex = 0,
@@ -3144,8 +4041,26 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemCompressedDurationSupportTwo"] = {
+ name = "Compressed Duration II",
+ gameId = "Metadata/Items/Gems/SupportGemFastForwardTwo",
+ variantId = "CompressedDurationSupportTwo",
+ grantedEffectId = "CompressedDurationSupportPlayerTwo",
+ tags = {
+ support = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Compressed Duration",
+ tagString = "Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemFistOfWarSupport"] = {
- name = "Fist of War",
+ name = "Fist of War I",
gameId = "Metadata/Items/Gems/SupportGemFistOfWar",
variantId = "FistOfWarSupport",
grantedEffectId = "FistOfWarSupportPlayer",
@@ -3156,6 +4071,7 @@ return {
slam = true,
},
gemType = "Support",
+ gemFamily = "Fist of War",
tagString = "Attack, Melee, Slam",
reqStr = 100,
reqDex = 0,
@@ -3163,6 +4079,46 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemFistOfWarSupportTwo"] = {
+ name = "Fist of War II",
+ gameId = "Metadata/Items/Gems/SupportGemFistOfWarTwo",
+ variantId = "FistOfWarSupportTwo",
+ grantedEffectId = "FistOfWarSupportPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ slam = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fist of War",
+ tagString = "Attack, Melee, Slam",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFistOfWarSupportThree"] = {
+ name = "Fist of War III",
+ gameId = "Metadata/Items/Gems/SupportGemFistOfWarThree",
+ variantId = "FistOfWarSupportThree",
+ grantedEffectId = "FistOfWarSupportPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ slam = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fist of War",
+ tagString = "Attack, Melee, Slam",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemUnbreakableSupport"] = {
name = "Unbreakable",
gameId = "Metadata/Items/Gems/SupportGemUnbreakable",
@@ -3172,23 +4128,25 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Unbreakable",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemMoreDurationSupport"] = {
- name = "Persistence",
+ ["Metadata/Items/Gems/SkillGemProlongedDurationSupport"] = {
+ name = "Prolonged Duration I",
gameId = "Metadata/Items/Gems/SupportGemPersistence",
- variantId = "MoreDurationSupport",
- grantedEffectId = "MoreDurationSupportPlayer",
+ variantId = "ProlongedDurationSupport",
+ grantedEffectId = "ProlongedDurationSupportPlayer",
tags = {
support = true,
duration = true,
},
gemType = "Support",
+ gemFamily = "Prolonged Duration",
tagString = "Duration",
reqStr = 100,
reqDex = 0,
@@ -3196,6 +4154,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemProlongedDurationSupportTwo"] = {
+ name = "Prolonged Duration II",
+ gameId = "Metadata/Items/Gems/SupportGemPersistenceTwo",
+ variantId = "ProlongedDurationSupportTwo",
+ grantedEffectId = "ProlongedDurationSupportPlayerTwo",
+ tags = {
+ support = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Prolonged Duration",
+ tagString = "Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemProlongedDurationSupportThree"] = {
+ name = "Prolonged Duration III",
+ gameId = "Metadata/Items/Gems/SupportGemPersistenceThree",
+ variantId = "ProlongedDurationSupportThree",
+ grantedEffectId = "ProlongedDurationSupportPlayerThree",
+ tags = {
+ support = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Prolonged Duration",
+ tagString = "Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemImpactShockwaveSupport"] = {
name = "Impact Shockwave",
gameId = "Metadata/Items/Gems/SupportGemImpactShockwave",
@@ -3209,6 +4203,7 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Impact Shockwave",
tagString = "Attack, AoE, Melee, Strike",
reqStr = 100,
reqDex = 0,
@@ -3227,6 +4222,7 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Hex Bloom",
tagString = "AoE, Curse",
reqStr = 0,
reqDex = 0,
@@ -3266,16 +4262,16 @@ return {
gameId = "Metadata/Items/Gems/SkillGemComet",
variantId = "Comet",
grantedEffectId = "CometPlayer",
+ additionalStatSet1 = "CometFireInfusionPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
cold = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Cold",
+ gemType = "Spell",
+ tagString = "AoE, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -3305,25 +4301,26 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemRipwireBallista"] = {
- name = "Ripwire Ballista",
- baseTypeName = "Ripwire Ballista",
+ ["Metadata/Items/Gems/SkillGemArtilleryBallista"] = {
+ name = "Artillery Ballista",
+ baseTypeName = "Artillery Ballista",
gameId = "Metadata/Items/Gems/SkillGemRipwireBallista",
- variantId = "RipwireBallista",
- grantedEffectId = "RipwireBallistaPlayer",
- additionalGrantedEffectId1 = "RipwireBallistaProjectilePlayer",
+ variantId = "ArtilleryBallista",
+ grantedEffectId = "ArtilleryBallistaPlayer",
+ additionalGrantedEffectId1 = "ArtilleryBallistaProjectilePlayer",
tags = {
strength = true,
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
totem = true,
+ area = true,
projectile = true,
+ sustained = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Attack, Totem, Projectile, Duration",
+ gemType = "Attack",
+ tagString = "Totem, AoE, Projectile, Sustained, Duration",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -3349,7 +4346,7 @@ return {
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 9,
+ Tier = 7,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemKillingPalm"] = {
@@ -3370,7 +4367,7 @@ return {
},
gemType = "Attack",
tagString = "AoE, Melee, Strike, Physical",
- weaponRequirements = "Quarterstaff, Unarmed",
+ weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -3393,11 +4390,10 @@ return {
melee = true,
strike = true,
cold = true,
- nova = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Strike, Cold, Nova",
- weaponRequirements = "Quarterstaff, Unarmed",
+ tagString = "AoE, Melee, Strike, Cold",
+ weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -3415,11 +4411,12 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Frost Nexus",
tagString = "AoE, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 2,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSpiralVolley"] = {
@@ -3453,13 +4450,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
lightning = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning",
+ gemType = "Spell",
+ tagString = "AoE, Lightning",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -3476,6 +4472,7 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Shock Siphon",
tagString = "Lightning",
reqStr = 0,
reqDex = 0,
@@ -3502,19 +4499,20 @@ return {
reqDex = 0,
reqInt = 100,
Tier = 0,
- naturalMaxLevel = 1,
+ naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemCoursingCurrentSupport"] = {
- name = "Coursing Current",
+ ["Metadata/Items/Gems/SkillGemShockConductionSupport"] = {
+ name = "Shock Conduction",
gameId = "Metadata/Items/Gems/SupportGemCoursingCurrent",
- variantId = "CoursingCurrentSupport",
- grantedEffectId = "SupportCoursingCurrentPlayer",
+ variantId = "ShockConductionSupport",
+ grantedEffectId = "SupportShockConductionPlayer",
tags = {
support = true,
area = true,
lightning = true,
},
gemType = "Support",
+ gemFamily = "Shock Conduction",
tagString = "AoE, Lightning",
reqStr = 0,
reqDex = 0,
@@ -3532,6 +4530,7 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Deep Freeze",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
@@ -3539,16 +4538,17 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemChanceToIgniteSupport"] = {
- name = "Ignition",
+ ["Metadata/Items/Gems/SkillGemIgniteSupport"] = {
+ name = "Ignite I",
gameId = "Metadata/Items/Gems/SupportGemIgnition",
- variantId = "ChanceToIgniteSupport",
- grantedEffectId = "SupportChanceToIgnitePlayer",
+ variantId = "IgniteSupport",
+ grantedEffectId = "SupportIgnitePlayer",
tags = {
support = true,
fire = true,
},
gemType = "Support",
+ gemFamily = "Ignite",
tagString = "Fire",
reqStr = 100,
reqDex = 0,
@@ -3556,8 +4556,44 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemIgniteSupportTwo"] = {
+ name = "Ignite II",
+ gameId = "Metadata/Items/Gems/SupportGemIgnitionTwo",
+ variantId = "IgniteSupportTwo",
+ grantedEffectId = "SupportIgnitePlayerTwo",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ignite",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemIgniteSupportThree"] = {
+ name = "Ignite III",
+ gameId = "Metadata/Items/Gems/SupportGemIgnitionThree",
+ variantId = "IgniteSupportThree",
+ grantedEffectId = "SupportIgnitePlayerThree",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ignite",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemDeadlyIgnitesSupport"] = {
- name = "Searing Flame",
+ name = "Searing Flame I",
gameId = "Metadata/Items/Gems/SupportGemSearingFlame",
variantId = "DeadlyIgnitesSupport",
grantedEffectId = "SupportDeadlyIgnitesPlayer",
@@ -3566,6 +4602,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Searing Flame",
tagString = "Fire",
reqStr = 100,
reqDex = 0,
@@ -3573,8 +4610,26 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemDeadlyIgnitesSupportTwo"] = {
+ name = "Searing Flame II",
+ gameId = "Metadata/Items/Gems/SupportGemSearingFlameTwo",
+ variantId = "DeadlyIgnitesSupportTwo",
+ grantedEffectId = "SupportDeadlyIgnitesPlayerTwo",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Searing Flame",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemIgniteDurationSupport"] = {
- name = "Eternal Flame",
+ name = "Eternal Flame I",
gameId = "Metadata/Items/Gems/SupportGemEternalFlame",
variantId = "IgniteDurationSupport",
grantedEffectId = "SupportIgniteDurationPlayer",
@@ -3583,6 +4638,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Eternal Flame",
tagString = "Fire",
reqStr = 100,
reqDex = 0,
@@ -3590,6 +4646,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemIgniteDurationSupportTwo"] = {
+ name = "Eternal Flame II",
+ gameId = "Metadata/Items/Gems/SupportGemEternalFlameTwo",
+ variantId = "IgniteDurationSupportTwo",
+ grantedEffectId = "SupportIgniteDurationPlayerTwo",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Eternal Flame",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemIgniteDurationSupportThree"] = {
+ name = "Eternal Flame III",
+ gameId = "Metadata/Items/Gems/SupportGemEternalFlameThree",
+ variantId = "IgniteDurationSupportThree",
+ grantedEffectId = "SupportIgniteDurationPlayerThree",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Eternal Flame",
+ tagString = "Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemEssenceHarvestSupport"] = {
name = "Essence Harvest",
gameId = "Metadata/Items/Gems/SupportGemEssenceHarvest",
@@ -3601,20 +4693,21 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Essence Harvest",
tagString = "Minion, Persistent",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemCastOnShock"] = {
- name = "Cast on Shock",
- baseTypeName = "Cast on Shock",
- gameId = "Metadata/Items/Gems/SkillGemCastOnShock",
- variantId = "CastOnShock",
- grantedEffectId = "MetaCastOnShockPlayer",
- additionalGrantedEffectId1 = "SupportMetaCastOnShockPlayer",
+ ["Metadata/Items/Gems/SkillGemCastOnElementalAilment"] = {
+ name = "Cast on Elemental Ailment",
+ baseTypeName = "Cast on Elemental Ailment",
+ gameId = "Metadata/Items/Gems/SkillGemCastOnElementalAilment",
+ variantId = "CastOnElementalAilment",
+ grantedEffectId = "MetaCastOnElementalAilmentPlayer",
+ additionalGrantedEffectId1 = "SupportMetaCastOnElementalAilmentPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
@@ -3622,62 +4715,16 @@ return {
persistent = true,
trigger = true,
lightning = true,
- meta = true,
- },
- gemType = "Buff",
- tagString = "Persistent, Trigger, Lightning, Meta",
- reqStr = 0,
- reqDex = 0,
- reqInt = 100,
- Tier = 8,
- naturalMaxLevel = 20,
- },
- ["Metadata/Items/Gems/SkillGemCastOnFreeze"] = {
- name = "Cast on Freeze",
- baseTypeName = "Cast on Freeze",
- gameId = "Metadata/Items/Gems/SkillGemCastOnFreeze",
- variantId = "CastOnFreeze",
- grantedEffectId = "MetaCastOnFreezePlayer",
- additionalGrantedEffectId1 = "SupportMetaCastOnFreezePlayer",
- tags = {
- intelligence = true,
- grants_active_skill = true,
- buff = true,
- persistent = true,
- trigger = true,
cold = true,
- meta = true,
- },
- gemType = "Buff",
- tagString = "Persistent, Trigger, Cold, Meta",
- reqStr = 0,
- reqDex = 0,
- reqInt = 100,
- Tier = 8,
- naturalMaxLevel = 20,
- },
- ["Metadata/Items/Gems/SkillGemCastOnIgnite"] = {
- name = "Cast on Ignite",
- baseTypeName = "Cast on Ignite",
- gameId = "Metadata/Items/Gems/SkillGemCastOnIgnite",
- variantId = "CastOnIgnite",
- grantedEffectId = "MetaCastOnIgnitePlayer",
- additionalGrantedEffectId1 = "SupportMetaCastOnIgnitePlayer",
- tags = {
- intelligence = true,
- grants_active_skill = true,
- buff = true,
- persistent = true,
- trigger = true,
fire = true,
meta = true,
},
gemType = "Buff",
- tagString = "Persistent, Trigger, Fire, Meta",
+ tagString = "Persistent, Trigger, Lightning, Cold, Fire, Meta",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 8,
+ Tier = 14,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemCastOnMeleeKill"] = {
@@ -3737,6 +4784,7 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Exploit Weakness",
tagString = "Payoff",
reqStr = 100,
reqDex = 0,
@@ -3753,11 +4801,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Devastate",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBarrierInvocation"] = {
@@ -3774,10 +4823,11 @@ return {
buff = true,
persistent = true,
trigger = true,
+ invocation = true,
meta = true,
},
gemType = "Buff",
- tagString = "Persistent, Trigger, Meta",
+ tagString = "Persistent, Trigger, Invocation, Meta",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -3832,21 +4882,39 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemEnragedWarcrySupport"] = {
- name = "Enraged Warcry",
+ name = "Enraged Warcry I",
gameId = "Metadata/Items/Gems/SupportGemEnragedWarcry",
variantId = "EnragedWarcrySupport",
grantedEffectId = "SupportEnragedWarcryPlayer",
tags = {
support = true,
- attack = true,
warcry = true,
},
gemType = "Support",
- tagString = "Attack, Warcry",
+ gemFamily = "Enraged Warcry",
+ tagString = "Warcry",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemEnragedWarcrySupportTwo"] = {
+ name = "Enraged Warcry II",
+ gameId = "Metadata/Items/Gems/SupportGemEnragedWarcryTwo",
+ variantId = "EnragedWarcrySupportTwo",
+ grantedEffectId = "SupportEnragedWarcryPlayerTwo",
+ tags = {
+ support = true,
+ warcry = true,
+ },
+ gemType = "Support",
+ gemFamily = "Enraged Warcry",
+ tagString = "Warcry",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLingeringIllusion"] = {
@@ -3908,12 +4976,12 @@ return {
totem = true,
area = true,
melee = true,
- physical = true,
duration = true,
+ conditional = true,
meta = true,
},
gemType = "Attack",
- tagString = "Totem, AoE, Melee, Physical, Duration, Meta",
+ tagString = "Totem, AoE, Melee, Duration, Conditional, Meta",
weaponRequirements = "One Hand Mace, Two Hand Mace",
reqStr = 100,
reqDex = 0,
@@ -4041,9 +5109,10 @@ return {
projectile = true,
grenade = true,
lightning = true,
+ duration = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Grenade, Lightning",
+ tagString = "AoE, Projectile, Grenade, Lightning, Duration",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -4060,14 +5129,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
minion = true,
buff = true,
area = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Minion, Buff, AoE, Duration",
+ gemType = "Minion",
+ tagString = "Buff, AoE, Duration, Barrageable",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4108,7 +5177,6 @@ return {
variantId = "StaggeringPalm",
grantedEffectId = "StaggeringPalmPlayer",
additionalGrantedEffectId1 = "StaggeringPalmProjectilePlayer",
- additionalGrantedEffectId2 = "StaggeringPalmUnarmedProjectilePlayer",
tags = {
dexterity = true,
intelligence = true,
@@ -4124,7 +5192,7 @@ return {
},
gemType = "Attack",
tagString = "Buff, AoE, Melee, Strike, Projectile, Physical, Duration",
- weaponRequirements = "Quarterstaff, Unarmed",
+ weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -4202,11 +5270,10 @@ return {
melee = true,
sustained = true,
duration = true,
- nova = true,
conditional = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Sustained, Duration, Nova, Conditional",
+ tagString = "AoE, Melee, Sustained, Duration, Conditional",
weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
@@ -4223,13 +5290,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
projectile = true,
chaos = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Projectile, Chaos",
+ gemType = "Spell",
+ tagString = "Projectile, Chaos",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4243,7 +5309,7 @@ return {
variantId = "FrozenLocus",
grantedEffectId = "FrozenLocusPlayer",
additionalStatSet1 = "FrozenLocusGroundPlayer",
- additionalGrantedEffectId1 = "FrozenLocusExplodePlayer",
+ additionalStatSet2 = "FrozenLocusExplodePlayer",
tags = {
dexterity = true,
intelligence = true,
@@ -4253,10 +5319,9 @@ return {
melee = true,
cold = true,
duration = true,
- nova = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Cold, Duration, Nova",
+ tagString = "AoE, Melee, Cold, Duration",
weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
@@ -4298,15 +5363,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
physical = true,
duration = true,
nova = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Physical, Duration, Nova",
+ gemType = "Spell",
+ tagString = "AoE, Physical, Duration, Nova",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4323,6 +5387,7 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Electrocute",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
@@ -4337,10 +5402,10 @@ return {
grantedEffectId = "SupportPinpointCriticalPlayer",
tags = {
support = true,
- critical = true,
},
gemType = "Support",
- tagString = "Critical",
+ gemFamily = "Pinpoint Critical",
+ tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4356,6 +5421,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Perpetual Charge",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -4374,6 +5440,7 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Corrosion",
tagString = "Physical, Chaos",
reqStr = 0,
reqDex = 100,
@@ -4390,15 +5457,14 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
minion = true,
area = true,
physical = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Minion, AoE, Physical, Duration",
+ gemType = "Spell",
+ tagString = "Minion, AoE, Physical, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4415,7 +5481,6 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
@@ -4423,9 +5488,10 @@ return {
channelling = true,
detonator = true,
stages = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Fire, Channelling, Detonator, Staged",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Fire, Channelling, Detonator, Staged, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4443,15 +5509,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
chaos = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Chaos, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Chaos, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4469,14 +5535,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
projectile = true,
fire = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Projectile, Fire",
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4497,9 +5562,10 @@ return {
area = true,
projectile = true,
chaos = true,
+ barrageable = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Chaos",
+ tagString = "AoE, Projectile, Chaos, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4517,15 +5583,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
lightning = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Lightning, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Lightning, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4533,6 +5599,32 @@ return {
Tier = 3,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemPhantasmalArrowPlayer"] = {
+ name = "Phantasmal Arrow",
+ baseTypeName = "Phantasmal Arrow",
+ gameId = "Metadata/Items/Gem/SkillGemPhantasmalArrow",
+ variantId = "PhantasmalArrowPlayer",
+ grantedEffectId = "PhantasmalArrowPlayer",
+ additionalStatSet1 = "PhantasmalArrowExplosionPlayer",
+ tags = {
+ dexterity = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ projectile = true,
+ fire = true,
+ duration = true,
+ barrageable = true,
+ },
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Fire, Duration, Barrageable",
+ weaponRequirements = "Bow",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemLightningRod"] = {
name = "Lightning Rod",
baseTypeName = "Lightning Rod",
@@ -4542,16 +5634,16 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
sustained = true,
lightning = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Sustained, Lightning, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4566,17 +5658,21 @@ return {
variantId = "Snipe",
grantedEffectId = "SnipePlayer",
additionalStatSet1 = "SnipeExplosionPlayer",
+ additionalStatSet2 = "SnipeHeavyExplosionPlayer",
+ additionalStatSet3 = "SnipeFrozenExplosionPlayer",
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
+ cold = true,
channelling = true,
+ payoff = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Channelling",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Cold, Channelling, Payoff, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4595,16 +5691,16 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
fire = true,
chaos = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Fire, Chaos, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Fire, Chaos, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4634,7 +5730,7 @@ return {
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 5,
+ Tier = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemFireball"] = {
@@ -4648,18 +5744,17 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
projectile = true,
fire = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Projectile, Fire",
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 9,
+ Tier = 3,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemElectrocutingArrow"] = {
@@ -4672,12 +5767,14 @@ return {
dexterity = true,
grants_active_skill = true,
attack = true,
+ area = true,
projectile = true,
lightning = true,
duration = true,
+ barrageable = true,
},
gemType = "Attack",
- tagString = "Projectile, Lightning, Duration",
+ tagString = "AoE, Projectile, Lightning, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4685,23 +5782,27 @@ return {
Tier = 5,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemColdSnap"] = {
- name = "Cold Snap",
- baseTypeName = "Cold Snap",
+ ["Metadata/Items/Gems/SkillGemSnap"] = {
+ name = "Snap",
+ baseTypeName = "Snap",
gameId = "Metadata/Items/Gem/SkillGemColdSnap",
- variantId = "ColdSnap",
- grantedEffectId = "ColdSnapPlayer",
+ variantId = "Snap",
+ grantedEffectId = "SnapPlayer",
+ additionalStatSet1 = "SnapLightningPlayer",
+ additionalStatSet2 = "SnapFirePlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
+ lightning = true,
cold = true,
+ fire = true,
payoff = true,
+ remnant = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Cold, Payoff",
+ gemType = "Spell",
+ tagString = "AoE, Lightning, Cold, Fire, Payoff, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4723,11 +5824,10 @@ return {
melee = true,
strike = true,
fire = true,
- duration = true,
channelling = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Strike, Fire, Duration, Channelling",
+ tagString = "AoE, Melee, Strike, Fire, Channelling",
weaponRequirements = "One Hand Mace, Two Hand Mace",
reqStr = 100,
reqDex = 0,
@@ -4840,13 +5940,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
projectile = true,
cold = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Projectile, Cold",
+ gemType = "Spell",
+ tagString = "Projectile, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -4863,15 +5962,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
chaos = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Chaos, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Chaos, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -4916,11 +6015,12 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Bursting Plague",
tagString = "AoE, Trigger, Physical, Chaos",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCorpseCloud"] = {
@@ -4948,7 +6048,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemWallFortress"] = {
- name = "Fortress",
+ name = "Fortress I",
gameId = "Metadata/Items/Gems/SupportGemFortress",
variantId = "WallFortress",
grantedEffectId = "SupportWallFortressPlayer",
@@ -4956,6 +6056,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Fortress",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -4963,6 +6064,41 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemWallFortressTwo"] = {
+ name = "Fortress II",
+ gameId = "Metadata/Items/Gems/SupportGemFortressTwo",
+ variantId = "WallFortressTwo",
+ grantedEffectId = "SupportWallFortressPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fortress",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAhnsCitadelSupport"] = {
+ name = "Ahn's Citadel",
+ gameId = "Metadata/Items/Gems/SupportGemAhnsCitadel",
+ variantId = "AhnsCitadelSupport",
+ grantedEffectId = "SupportAhnsCitadelPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fortress",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemFrostfireSupport"] = {
name = "Frostfire",
gameId = "Metadata/Items/Gems/SupportGemFrostfire",
@@ -4975,6 +6111,7 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Frostfire",
tagString = "Cold, Fire, Payoff",
reqStr = 0,
reqDex = 0,
@@ -4993,6 +6130,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Stormfire",
tagString = "Lightning, Fire",
reqStr = 0,
reqDex = 0,
@@ -5001,7 +6139,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemIncreaseLimitSupport"] = {
- name = "Overabundance",
+ name = "Overabundance I",
gameId = "Metadata/Items/Gems/SupportGemOverabundance",
variantId = "IncreaseLimitSupport",
grantedEffectId = "SupportIncreaseLimitPlayer",
@@ -5009,6 +6147,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Overabundance",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -5016,6 +6155,41 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemIncreaseLimitSupportTwo"] = {
+ name = "Overabundance II",
+ gameId = "Metadata/Items/Gems/SupportGemOverabundanceTwo",
+ variantId = "IncreaseLimitSupportTwo",
+ grantedEffectId = "SupportIncreaseLimitPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Overabundance",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemIncreaseLimitSupportThree"] = {
+ name = "Overabundance III",
+ gameId = "Metadata/Items/Gems/SupportGemOverabundanceThree",
+ variantId = "IncreaseLimitSupportThree",
+ grantedEffectId = "SupportIncreaseLimitPlayerThree",
+ tags = {
+ support = true,
+ curse = true,
+ },
+ gemType = "Support",
+ gemFamily = "Overabundance",
+ tagString = "Curse",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemElectrocuteSupport"] = {
name = "Electrocute",
gameId = "Metadata/Items/Gems/SupportGemElectrocute",
@@ -5026,6 +6200,7 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Electrocute",
tagString = "Lightning",
reqStr = 0,
reqDex = 100,
@@ -5065,11 +6240,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Energy Barrier",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemKnockbackWaveSupport"] = {
@@ -5085,11 +6261,12 @@ return {
trigger = true,
},
gemType = "Support",
+ gemFamily = "Wind Wave",
tagString = "AoE, Trigger",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBitingFrostSupport"] = {
@@ -5103,6 +6280,7 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Biting Frost",
tagString = "Cold, Payoff",
reqStr = 0,
reqDex = 0,
@@ -5128,6 +6306,7 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Elemental Discharge",
tagString = "Spell, AoE, Trigger, Lightning, Cold, Fire, Payoff",
reqStr = 0,
reqDex = 0,
@@ -5144,6 +6323,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Grants Cooldown",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -5165,6 +6345,7 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Fiery Death",
tagString = "Spell, AoE, Fire",
reqStr = 0,
reqDex = 0,
@@ -5181,14 +6362,14 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Duration, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -5205,11 +6386,11 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- spell = true,
+ attack = true,
area = true,
fire = true,
},
- gemType = "Spell",
+ gemType = "Attack",
tagString = "AoE, Fire",
reqStr = 0,
reqDex = 100,
@@ -5228,16 +6409,16 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
fire = true,
duration = true,
detonator = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Fire, Duration, Detonator",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Fire, Duration, Detonator, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -5336,6 +6517,7 @@ return {
herald = true,
},
gemType = "Support",
+ gemFamily = "Deadly Heralds",
tagString = "Herald",
reqStr = 0,
reqDex = 100,
@@ -5356,10 +6538,10 @@ return {
area = true,
trigger = true,
fire = true,
- critical = true,
},
gemType = "Support",
- tagString = "Spell, AoE, Trigger, Fire, Critical",
+ gemFamily = "Mana Flare",
+ tagString = "Spell, AoE, Trigger, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -5375,27 +6557,63 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Lockdown",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemOverpowerSupport"] = {
- name = "Overpower",
+ ["Metadata/Items/Gems/SkillGemStunSupport"] = {
+ name = "Stun I",
gameId = "Metadata/Items/Gems/SupportGemOverpower",
- variantId = "OverpowerSupport",
- grantedEffectId = "SupportOverpowerPlayer",
+ variantId = "StunSupport",
+ grantedEffectId = "SupportStunPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Stun",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemStunSupportTwo"] = {
+ name = "Stun II",
+ gameId = "Metadata/Items/Gems/SupportGemOverpowerTwo",
+ variantId = "StunSupportTwo",
+ grantedEffectId = "SupportStunPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Stun",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemStunSupportThree"] = {
+ name = "Stun III",
+ gameId = "Metadata/Items/Gems/SupportGemOverpowerThree",
+ variantId = "StunSupportThree",
+ grantedEffectId = "SupportStunPlayerThree",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Stun",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemMobilitySupport"] = {
@@ -5407,6 +6625,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Mobility",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -5415,7 +6634,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPinSupport"] = {
- name = "Pin",
+ name = "Pin I",
gameId = "Metadata/Items/Gems/SupportGemPin",
variantId = "PinSupport",
grantedEffectId = "SupportPinPlayer",
@@ -5424,6 +6643,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Pin",
tagString = "Physical",
reqStr = 0,
reqDex = 100,
@@ -5431,6 +6651,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemPinSupportTwo"] = {
+ name = "Pin II",
+ gameId = "Metadata/Items/Gems/SupportGemPinTwo",
+ variantId = "PinSupportTwo",
+ grantedEffectId = "SupportPinPlayerTwo",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pin",
+ tagString = "Physical",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPinSupportThree"] = {
+ name = "Pin III",
+ gameId = "Metadata/Items/Gems/SupportGemPinThree",
+ variantId = "PinSupportThree",
+ grantedEffectId = "SupportPinPlayerThree",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pin",
+ tagString = "Physical",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemAmbushSupport"] = {
name = "Ambush",
gameId = "Metadata/Items/Gems/SupportGemAmbush",
@@ -5438,10 +6694,10 @@ return {
grantedEffectId = "SupportAmbushPlayer",
tags = {
support = true,
- critical = true,
},
gemType = "Support",
- tagString = "Critical",
+ gemFamily = "Ambush",
+ tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -5457,14 +6713,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
chaos = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Chaos, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Chaos, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -5517,6 +6772,40 @@ return {
Tier = 9,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemBountySupport"] = {
+ name = "Bounty I",
+ gameId = "Metadata/Items/Gems/SupportGemBounty",
+ variantId = "BountySupport",
+ grantedEffectId = "SupportBountyPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Bounty",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBountySupportTwo"] = {
+ name = "Bounty II",
+ gameId = "Metadata/Items/Gems/SupportGemBountyTwo",
+ variantId = "BountySupportTwo",
+ grantedEffectId = "SupportBountyPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Bounty",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemManaFlaskSupport"] = {
name = "Mana Bounty",
gameId = "Metadata/Items/Gems/SupportGemManaBounty",
@@ -5526,11 +6815,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Bounty",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLifeFlaskSupport"] = {
@@ -5542,11 +6832,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Bounty",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSkeletalWarrior"] = {
@@ -5581,11 +6872,12 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Minion Instability",
tagString = "Minion, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 2,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemEnduranceChargeOnArmourBreakSupport"] = {
@@ -5597,11 +6889,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Break Endurance",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCurseEffectSupport"] = {
@@ -5614,6 +6907,7 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Heightened Curse",
tagString = "Curse",
reqStr = 0,
reqDex = 0,
@@ -5630,11 +6924,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Corpse Conservation",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDecayingHexSupport"] = {
@@ -5648,11 +6943,12 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Decaying Hex",
tagString = "Chaos, Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFocusedCurseSupport"] = {
@@ -5665,6 +6961,7 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Focussed Curse",
tagString = "Curse",
reqStr = 0,
reqDex = 0,
@@ -5682,15 +6979,16 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Ritualistic Curse",
tagString = "Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemMinionPactSupport"] = {
- name = "Minion Pact",
+ name = "Minion Pact I",
gameId = "Metadata/Items/Gem/SupportGemMinionPact",
variantId = "MinionPactSupport",
grantedEffectId = "SupportMinionPactPlayer",
@@ -5699,6 +6997,7 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Minion Pact",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
@@ -5706,6 +7005,24 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemMinionPactSupportTwo"] = {
+ name = "Minion Pact II",
+ gameId = "Metadata/Items/Gem/SupportGemMinionPactTwo",
+ variantId = "MinionPactSupportTwo",
+ grantedEffectId = "SupportMinionPactPlayerTwo",
+ tags = {
+ support = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Minion Pact",
+ tagString = "Minion",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemLastGaspSupport"] = {
name = "Last Gasp",
gameId = "Metadata/Items/Gem/SupportGemLastGasp",
@@ -5718,6 +7035,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Last Gasp",
tagString = "Minion, Persistent, Duration",
reqStr = 0,
reqDex = 0,
@@ -5725,6 +7043,27 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemTecrodsRevengeSupport"] = {
+ name = "Tecrod's Revenge",
+ gameId = "Metadata/Items/Gem/SupportGemTecrodsRevenge",
+ variantId = "TecrodsRevengeSupport",
+ grantedEffectId = "SupportTecrodsRevengePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ minion = true,
+ persistent = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Last Gasp",
+ tagString = "Lineage, Minion, Persistent, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemLifeOnCullSupport"] = {
name = "Life Drain",
gameId = "Metadata/Items/Gems/SupportGemLifeDrain",
@@ -5734,6 +7073,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Life Drain",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -5750,6 +7090,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Soul Drain",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -5763,20 +7104,22 @@ return {
gameId = "Metadata/Items/Gem/SkillGemGrimFeast",
variantId = "GrimFeast",
grantedEffectId = "GrimFeastPlayer",
+ additionalGrantedEffectId1 = "GrimFeastResummonPlayer",
tags = {
buff = true,
intelligence = true,
grants_active_skill = true,
+ spell = true,
minion = true,
persistent = true,
remnant = true,
},
gemType = "Buff",
- tagString = "Minion, Persistent, Remnant",
+ tagString = "Spell, Minion, Persistent, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 0,
+ Tier = 4,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemInnervateSupport"] = {
@@ -5791,6 +7134,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Innervate",
tagString = "Attack, Lightning, Duration",
reqStr = 0,
reqDex = 100,
@@ -5822,16 +7166,17 @@ return {
Tier = 8,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemMultiplePoisonSupport"] = {
- name = "Comorbidity",
+ ["Metadata/Items/Gems/SkillGemEscalatingPoisonSupport"] = {
+ name = "Escalating Poison",
gameId = "Metadata/Items/Gems/SupportGemComorbidity",
- variantId = "MultiplePoisonSupport",
- grantedEffectId = "SupportMultiplePoisonPlayer",
+ variantId = "EscalatingPoisonSupport",
+ grantedEffectId = "SupportEscalatingPoisonPlayer",
tags = {
support = true,
chaos = true,
},
gemType = "Support",
+ gemFamily = "Escalating Poison",
tagString = "Chaos",
reqStr = 0,
reqDex = 100,
@@ -5839,15 +7184,16 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemMultipleChargesSupport"] = {
- name = "Profusion",
+ ["Metadata/Items/Gems/SkillGemChargeProfusionSupport"] = {
+ name = "Charge Profusion I",
gameId = "Metadata/Items/Gems/SupportGemProfusion",
- variantId = "MultipleChargesSupport",
- grantedEffectId = "SupportMultipleChargesPlayer",
+ variantId = "ChargeProfusionSupport",
+ grantedEffectId = "SupportChargeProfusionPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Charge Profusion",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -5855,6 +7201,23 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemChargeProfusionSupportTwo"] = {
+ name = "Charge Profusion II",
+ gameId = "Metadata/Items/Gems/SupportGemProfusionTwo",
+ variantId = "ChargeProfusionSupportTwo",
+ grantedEffectId = "SupportChargeProfusionPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Charge Profusion",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemEmpoweredDamageSupport"] = {
name = "Premeditation",
gameId = "Metadata/Items/Gems/SupportGemPremeditation",
@@ -5864,11 +7227,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Premeditation",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemEmpoweredCullSupport"] = {
@@ -5880,11 +7244,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Murderous Intent",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemScavengedPlating"] = {
@@ -5937,14 +7302,13 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
physical = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Physical, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Physical, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -5971,7 +7335,34 @@ return {
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 14,
+ Tier = 8,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemBlackPowderBlitzReservation"] = {
+ name = "Black Powder Blitz",
+ baseTypeName = "Black Powder Blitz",
+ gameId = "Metadata/Items/Gem/SkillGemBlackPowderBlitz",
+ variantId = "BlackPowderBlitzReservation",
+ grantedEffectId = "BlackPowderBlitzReservationPlayer",
+ additionalGrantedEffectId1 = "BlackPowderBlitzPlayer",
+ tags = {
+ buff = true,
+ strength = true,
+ dexterity = true,
+ grants_active_skill = true,
+ persistent = true,
+ area = true,
+ physical = true,
+ fire = true,
+ detonator = true,
+ travel = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, AoE, Physical, Fire, Detonator, Travel",
+ reqStr = 50,
+ reqDex = 50,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemMoltenBlast"] = {
@@ -6012,10 +7403,9 @@ return {
persistent = true,
aura = true,
duration = true,
- critical = true,
},
gemType = "Buff",
- tagString = "Persistent, Aura, Duration, Critical",
+ tagString = "Persistent, Aura, Duration",
reqStr = 25,
reqDex = 0,
reqInt = 75,
@@ -6060,13 +7450,14 @@ return {
area = true,
fire = true,
duration = true,
+ remnant = true,
},
gemType = "Spell",
- tagString = "AoE, Fire, Duration",
+ tagString = "AoE, Fire, Duration, Remnant",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 0,
+ Tier = 3,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemStampede"] = {
@@ -6120,29 +7511,57 @@ return {
Tier = 7,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemBlazingCluster"] = {
+ ["Metadata/Items/Gems/SkillGemFortifyingCry"] = {
+ name = "Fortifying Cry",
+ baseTypeName = "Fortifying Cry",
+ gameId = "Metadata/Items/Gem/SkillGemFortifyingCry",
+ variantId = "FortifyingCry",
+ grantedEffectId = "FortifyingCryPlayer",
+ additionalGrantedEffectId1 = "FortifyingCryShockwavePlayer",
+ tags = {
+ warcry = true,
+ strength = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ melee = true,
+ trigger = true,
+ physical = true,
+ duration = true,
+ nova = true,
+ },
+ gemType = "Warcry",
+ tagString = "Attack, AoE, Melee, Trigger, Physical, Duration, Nova",
+ weaponRequirements = "Armoured Shield",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 9,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemEmberFusillade"] = {
name = "Ember Fusillade",
baseTypeName = "Ember Fusillade",
gameId = "Metadata/Items/Gems/SkillGemEmberFusillade",
- variantId = "BlazingCluster",
- grantedEffectId = "BlazingClusterPlayer",
- additionalStatSet1 = "BlazingClusterExplosionPlayer",
+ variantId = "EmberFusillade",
+ grantedEffectId = "EmberFusilladePlayer",
+ additionalStatSet1 = "EmberFusilladeExplosionPlayer",
+ additionalStatSet2 = "EmberFusilladeBeamPlayer",
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
projectile = true,
fire = true,
duration = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Projectile, Fire, Duration",
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Fire, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemHighVelocityRounds"] = {
@@ -6160,10 +7579,11 @@ return {
ammunition = true,
projectile = true,
physical = true,
+ duration = true,
payoff = true,
},
gemType = "Attack",
- tagString = "Ammunition, Projectile, Physical, Payoff",
+ tagString = "Ammunition, Projectile, Physical, Duration, Payoff",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6183,12 +7603,14 @@ return {
dexterity = true,
grants_active_skill = true,
attack = true,
+ area = true,
ammunition = true,
projectile = true,
payoff = true,
+ merging = true,
},
gemType = "Attack",
- tagString = "Ammunition, Projectile, Payoff",
+ tagString = "AoE, Ammunition, Projectile, Payoff, Merging",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6212,11 +7634,9 @@ return {
ammunition = true,
projectile = true,
sustained = true,
- fire = true,
- payoff = true,
},
gemType = "Attack",
- tagString = "AoE, Ammunition, Projectile, Sustained, Fire, Payoff",
+ tagString = "AoE, Ammunition, Projectile, Sustained",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6292,9 +7712,10 @@ return {
ammunition = true,
projectile = true,
fire = true,
+ merging = true,
},
gemType = "Attack",
- tagString = "AoE, Ammunition, Projectile, Fire",
+ tagString = "AoE, Ammunition, Projectile, Fire, Merging",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6370,9 +7791,10 @@ return {
ammunition = true,
projectile = true,
cold = true,
+ merging = true,
},
gemType = "Attack",
- tagString = "AoE, Ammunition, Projectile, Cold",
+ tagString = "AoE, Ammunition, Projectile, Cold, Merging",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6478,9 +7900,10 @@ return {
projectile = true,
lightning = true,
chaining = true,
+ merging = true,
},
gemType = "Attack",
- tagString = "Ammunition, Projectile, Lightning, Chaining",
+ tagString = "Ammunition, Projectile, Lightning, Chaining, Merging",
weaponRequirements = "Crossbow",
reqStr = 50,
reqDex = 50,
@@ -6552,6 +7975,7 @@ return {
warcry = true,
},
gemType = "Support",
+ gemFamily = "Raging Cry",
tagString = "Warcry",
reqStr = 100,
reqDex = 0,
@@ -6559,25 +7983,63 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemIncreasedArmourBreakSupport"] = {
- name = "Demolisher",
+ ["Metadata/Items/Gems/SkillGemArmourDemolisherSupport"] = {
+ name = "Armour Demolisher I",
gameId = "Metadata/Items/Gems/SupportGemDemolisher",
- variantId = "IncreasedArmourBreakSupport",
- grantedEffectId = "SupportIncreasedArmourBreakPlayer",
+ variantId = "ArmourDemolisherSupport",
+ grantedEffectId = "SupportArmourDemolisherPlayer",
tags = {
support = true,
spell = true,
},
gemType = "Support",
+ gemFamily = "Armour Demolisher",
tagString = "Spell",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemArmourDemolisherSupportTwo"] = {
+ name = "Armour Demolisher II",
+ gameId = "Metadata/Items/Gems/SupportGemDemolisherTwo",
+ variantId = "ArmourDemolisherSupportTwo",
+ grantedEffectId = "SupportArmourDemolisherPlayerTwo",
+ tags = {
+ support = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Armour Demolisher",
+ tagString = "Spell",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUruksSmeltingSupport"] = {
+ name = "Uruk's Smelting",
+ gameId = "Metadata/Items/Gems/SupportGemUruksSmelting",
+ variantId = "UruksSmeltingSupport",
+ grantedEffectId = "SupportUruksSmeltingPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Armour Demolisher",
+ tagString = "Lineage, Spell",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRageforgedSupport"] = {
- name = "Rageforged",
+ name = "Rageforged I",
gameId = "Metadata/Items/Gem/SupportGemRageforged",
variantId = "RageforgedSupport",
grantedEffectId = "SupportRageforgedPlayer",
@@ -6585,11 +8047,29 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Rageforged",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRageforgedSupportTwo"] = {
+ name = "Rageforged II",
+ gameId = "Metadata/Items/Gem/SupportGemRageforgedTwo",
+ variantId = "RageforgedSupportTwo",
+ grantedEffectId = "SupportRageforgedPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rageforged",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPlayerDefaultQuarterstaff"] = {
@@ -6733,13 +8213,13 @@ return {
additionalStatSet1 = "SpearThrowFrenzyChargePlayer",
tags = {
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 0,
@@ -6755,12 +8235,12 @@ return {
grantedEffectId = "MeleeBowPlayer",
tags = {
grants_active_skill = true,
- barrageable = true,
attack = true,
projectile = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, Projectile",
+ gemType = "Attack",
+ tagString = "Projectile, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 0,
@@ -6817,16 +8297,16 @@ return {
gameId = "Metadata/Items/Gem/SkillGemAscendancyExplosiveConcoction",
variantId = "AscendancyExplosiveConcoction",
grantedEffectId = "ExplosiveConcoctionPlayer",
+ additionalStatSet1 = "ExplosiveConcoctionSecondPlayer",
tags = {
grants_active_skill = true,
attack = true,
area = true,
projectile = true,
fire = true,
- duration = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Fire, Duration",
+ tagString = "AoE, Projectile, Fire",
weaponRequirements = "Unarmed",
reqStr = 0,
reqDex = 0,
@@ -6846,10 +8326,9 @@ return {
area = true,
projectile = true,
lightning = true,
- duration = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Lightning, Duration",
+ tagString = "AoE, Projectile, Lightning",
weaponRequirements = "Unarmed",
reqStr = 0,
reqDex = 0,
@@ -6869,10 +8348,9 @@ return {
area = true,
projectile = true,
cold = true,
- duration = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Cold, Duration",
+ tagString = "AoE, Projectile, Cold",
weaponRequirements = "Unarmed",
reqStr = 0,
reqDex = 0,
@@ -6881,21 +8359,21 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemAscendancyPoisonousConcoction"] = {
- name = "Poisonous Concoction",
- baseTypeName = "Poisonous Concoction",
+ name = "Acidic Concoction",
+ baseTypeName = "Acidic Concoction",
gameId = "Metadata/Items/Gem/SkillGemAscendancyPoisonousConcoction",
variantId = "AscendancyPoisonousConcoction",
- grantedEffectId = "PoisonousConcoctionPlayer",
+ grantedEffectId = "AcidicConcoctionPlayer",
+ additionalStatSet1 = "AcidicConcoctionPoisonBurstPlayer",
tags = {
grants_active_skill = true,
attack = true,
area = true,
projectile = true,
physical = true,
- chaos = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Physical, Chaos",
+ tagString = "AoE, Projectile, Physical",
weaponRequirements = "Unarmed",
reqStr = 0,
reqDex = 0,
@@ -7105,10 +8583,9 @@ return {
grants_active_skill = true,
shapeshift = true,
buff = true,
- persistent = true,
},
gemType = "Shapeshift",
- tagString = "Buff, Persistent",
+ tagString = "Buff",
reqStr = 0,
reqDex = 0,
reqInt = 0,
@@ -7219,6 +8696,49 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemInevitableAgony"] = {
+ name = "Inevitable Agony",
+ baseTypeName = "Inevitable Agony",
+ gameId = "Metadata/Items/Gem/SkillGemAscendancyInevitableAgony",
+ variantId = "InevitableAgony",
+ grantedEffectId = "InevitableAgonyPlayer",
+ tags = {
+ grants_active_skill = true,
+ spell = true,
+ area = true,
+ duration = true,
+ curse = true,
+ },
+ gemType = "Spell",
+ tagString = "AoE, Duration, Curse",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemMetaDeadeyeMarks"] = {
+ name = "Called Shots",
+ baseTypeName = "Called Shots",
+ gameId = "Metadata/Items/Gem/SkillGemAscendanyMetaDeadeyeMarks",
+ variantId = "MetaDeadeyeMarks",
+ grantedEffectId = "MetaDeadeyeMarksPlayer",
+ additionalGrantedEffectId1 = "SupportMetaDeadeyeMarksPlayer",
+ tags = {
+ grants_active_skill = true,
+ buff = true,
+ persistent = true,
+ area = true,
+ meta = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, AoE, Meta",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemCastFireSpellOnHit"] = {
name = "Fire Spell on Hit",
baseTypeName = "Fire Spell on Melee Hit",
@@ -7309,6 +8829,30 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemVoidIllusion"] = {
+ name = "Void Illusion",
+ baseTypeName = "Void Illusion",
+ gameId = "Metadata/Items/Gem/SkillGemAscendancyVoidIllusion",
+ variantId = "VoidIllusion",
+ grantedEffectId = "VoidIllusionPlayer",
+ additionalGrantedEffectId1 = "VoidIllusionSpawnPlayer",
+ tags = {
+ grants_active_skill = true,
+ attack = true,
+ buff = true,
+ persistent = true,
+ area = true,
+ duration = true,
+ },
+ gemType = "Attack",
+ tagString = "Buff, Persistent, AoE, Duration",
+ weaponRequirements = "Any Martial Weapon, Unarmed",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemArmourExplosionSupport"] = {
name = "Armour Explosion",
gameId = "Metadata/Items/Gem/SupportGemArmourExplosion",
@@ -7325,11 +8869,12 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Armour Explosion",
tagString = "Attack, AoE, Trigger, Fire, Payoff",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 1,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemStompingGroundSupport"] = {
@@ -7344,10 +8889,10 @@ return {
attack = true,
area = true,
trigger = true,
- physical = true,
},
gemType = "Support",
- tagString = "Attack, AoE, Trigger, Physical",
+ gemFamily = "Stomping Ground",
+ tagString = "Attack, AoE, Trigger",
reqStr = 100,
reqDex = 0,
reqInt = 0,
@@ -7355,7 +8900,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCrescendoSupport"] = {
- name = "Crescendo",
+ name = "Crescendo I",
gameId = "Metadata/Items/Gems/SupportGemCrescendo",
variantId = "CrescendoSupport",
grantedEffectId = "SupportCrescendoPlayer",
@@ -7366,6 +8911,7 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Crescendo",
tagString = "Attack, Melee, Strike",
reqStr = 0,
reqDex = 100,
@@ -7373,6 +8919,46 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemCrescendoSupportTwo"] = {
+ name = "Crescendo II",
+ gameId = "Metadata/Items/Gems/SupportGemCrescendoTwo",
+ variantId = "CrescendoSupportTwo",
+ grantedEffectId = "SupportCrescendoPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Crescendo",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCrescendoSupportThree"] = {
+ name = "Crescendo III",
+ gameId = "Metadata/Items/Gems/SupportGemCrescendoThree",
+ variantId = "CrescendoSupportThree",
+ grantedEffectId = "SupportCrescendoPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Crescendo",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemFireExposureSupport"] = {
name = "Fire Exposure",
gameId = "Metadata/Items/Gems/SupportGemFireExposure",
@@ -7384,11 +8970,12 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Fire Exposure",
tagString = "Fire, Duration",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLightningExposureSupport"] = {
@@ -7402,11 +8989,12 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Lightning Exposure",
tagString = "Lightning, Duration",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemColdExposureSupport"] = {
@@ -7418,18 +9006,18 @@ return {
support = true,
cold = true,
duration = true,
- critical = true,
},
gemType = "Support",
- tagString = "Cold, Duration, Critical",
+ gemFamily = "Cold Exposure",
+ tagString = "Cold, Duration",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDeadlyPoisonSupport"] = {
- name = "Deadly Poison",
+ name = "Deadly Poison I",
gameId = "Metadata/Items/Gems/SupportGemDeadlyPoison",
variantId = "DeadlyPoisonSupport",
grantedEffectId = "SupportDeadlyPoisonPlayer",
@@ -7438,15 +9026,34 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Deadly Poison",
tagString = "Chaos",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDeadlyPoisonSupportTwo"] = {
+ name = "Deadly Poison II",
+ gameId = "Metadata/Items/Gems/SupportGemDeadlyPoisonTwo",
+ variantId = "DeadlyPoisonSupportTwo",
+ grantedEffectId = "SupportDeadlyPoisonPlayerTwo",
+ tags = {
+ support = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Deadly Poison",
+ tagString = "Chaos",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDeepCutsSupport"] = {
- name = "Deep Cuts",
+ name = "Deep Cuts I",
gameId = "Metadata/Items/Gems/SupportGemDeepCuts",
variantId = "DeepCutsSupport",
grantedEffectId = "SupportDeepCutsPlayer",
@@ -7455,6 +9062,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Deep Cuts",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -7462,8 +9070,26 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemDeepCutsSupportTwo"] = {
+ name = "Deep Cuts II",
+ gameId = "Metadata/Items/Gems/SupportGemDeepCutsTwo",
+ variantId = "DeepCutsSupportTwo",
+ grantedEffectId = "SupportDeepCutsPlayerTwo",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Deep Cuts",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemCorruptingCrySupport"] = {
- name = "Corrupting Cry",
+ name = "Corrupting Cry I",
gameId = "Metadata/Items/Gems/SupportGemCorruptingCry",
variantId = "CorruptingCrySupport",
grantedEffectId = "SupportCorruptingCryPlayer",
@@ -7474,15 +9100,57 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Corrupting Cry",
tagString = "Warcry, Physical, Duration",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCorruptingCrySupportTwo"] = {
+ name = "Corrupting Cry II",
+ gameId = "Metadata/Items/Gems/SupportGemCorruptingCryTwo",
+ variantId = "CorruptingCrySupportTwo",
+ grantedEffectId = "SupportCorruptingCryPlayerTwo",
+ tags = {
+ support = true,
+ warcry = true,
+ physical = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Corrupting Cry",
+ tagString = "Warcry, Physical, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCorruptingCrySupportThree"] = {
+ name = "Paquate's Pact",
+ gameId = "Metadata/Items/Gems/SupportGemCorruptingCryThree",
+ variantId = "CorruptingCrySupportThree",
+ grantedEffectId = "SupportCorruptingCryPlayerThree",
+ tags = {
+ support = true,
+ lineage = true,
+ warcry = true,
+ physical = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Corrupting Cry",
+ tagString = "Lineage, Warcry, Physical, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemWindowOfOpportunitySupport"] = {
- name = "Window of Opportunity",
+ name = "Window of Opportunity I",
gameId = "Metadata/Items/Gems/SupportGemWindowOfOpportunity",
variantId = "WindowOfOpportunitySupport",
grantedEffectId = "SupportWindowOfOpportunityPlayer",
@@ -7491,6 +9159,7 @@ return {
channelling = true,
},
gemType = "Support",
+ gemFamily = "Window of Opportunity",
tagString = "Channelling",
reqStr = 0,
reqDex = 100,
@@ -7498,21 +9167,40 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFireMasterySupport"] = {
- name = "Fire Mastery",
- gameId = "Metadata/Items/Gems/SupportGemFireMastery",
- variantId = "FireMasterySupport",
- grantedEffectId = "SupportFireMasteryPlayer",
+ ["Metadata/Items/Gems/SkillGemWindowOfOpportunitySupportTwo"] = {
+ name = "Window of Opportunity II",
+ gameId = "Metadata/Items/Gems/SupportGemWindowOfOpportunityTwo",
+ variantId = "WindowOfOpportunitySupportTwo",
+ grantedEffectId = "SupportWindowOfOpportunityPlayerTwo",
tags = {
support = true,
- fire = true,
+ channelling = true,
},
gemType = "Support",
- tagString = "Fire",
+ gemFamily = "Window of Opportunity",
+ tagString = "Channelling",
reqStr = 0,
- reqDex = 0,
- reqInt = 100,
- Tier = 3,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFireMasterySupport"] = {
+ name = "Fire Mastery",
+ gameId = "Metadata/Items/Gems/SupportGemFireMastery",
+ variantId = "FireMasterySupport",
+ grantedEffectId = "SupportFireMasteryPlayer",
+ tags = {
+ support = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Mastery",
+ tagString = "Fire",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemColdMasterySupport"] = {
@@ -7525,11 +9213,12 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Mastery",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLightningMasterySupport"] = {
@@ -7542,11 +9231,12 @@ return {
lightning = true,
},
gemType = "Support",
+ gemFamily = "Mastery",
tagString = "Lightning",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemChaosMasterySupport"] = {
@@ -7559,11 +9249,12 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Mastery",
tagString = "Chaos",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPhysicalMasterySupport"] = {
@@ -7576,11 +9267,12 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Mastery",
tagString = "Physical",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemMinionMasterySupport"] = {
@@ -7593,11 +9285,12 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Mastery",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemShockchainArrow"] = {
@@ -7611,16 +9304,16 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
lightning = true,
chaining = true,
payoff = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Lightning, Chaining, Payoff",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Lightning, Chaining, Payoff, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -7634,6 +9327,7 @@ return {
gameId = "Metadata/Items/Gem/SkillGemVaultingImpact",
variantId = "VaultingImpact",
grantedEffectId = "VaultingImpactPlayer",
+ additionalStatSet1 = "VaultingImpactDazedPlayer",
tags = {
dexterity = true,
intelligence = true,
@@ -7642,10 +9336,13 @@ return {
area = true,
melee = true,
slam = true,
+ physical = true,
+ duration = true,
travel = true,
+ payoff = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Slam, Travel",
+ tagString = "AoE, Melee, Slam, Physical, Duration, Travel, Payoff",
weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
@@ -7702,7 +9399,7 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemSwiftAfflictionSupport"] = {
- name = "Swift Affliction",
+ name = "Swift Affliction I",
gameId = "Metadata/Items/Gem/SupportGemSwiftAffliction",
variantId = "SwiftAfflictionSupport",
grantedEffectId = "SupportSwiftAfflictionPlayer",
@@ -7711,6 +9408,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Swift Affliction",
tagString = "Duration",
reqStr = 0,
reqDex = 100,
@@ -7718,6 +9416,42 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemSwiftAfflictionSupportTwo"] = {
+ name = "Swift Affliction II",
+ gameId = "Metadata/Items/Gem/SupportGemSwiftAfflictionTwo",
+ variantId = "SwiftAfflictionSupportTwo",
+ grantedEffectId = "SupportSwiftAfflictionPlayerTwo",
+ tags = {
+ support = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Swift Affliction",
+ tagString = "Duration",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSwiftAfflictionSupportThree"] = {
+ name = "Swift Affliction III",
+ gameId = "Metadata/Items/Gem/SupportGemSwiftAfflictionThree",
+ variantId = "SwiftAfflictionSupportThree",
+ grantedEffectId = "SupportSwiftAfflictionPlayerThree",
+ tags = {
+ support = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Swift Affliction",
+ tagString = "Duration",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemIntenseAgonySupport"] = {
name = "Intense Agony",
gameId = "Metadata/Items/Gem/SupportGemIntenseAgony",
@@ -7729,6 +9463,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Intense Agony",
tagString = "Spell, Duration",
reqStr = 0,
reqDex = 0,
@@ -7746,6 +9481,7 @@ return {
spell = true,
},
gemType = "Support",
+ gemFamily = "Drain Ailments",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -7764,6 +9500,7 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Chaotic Freeze",
tagString = "Spell, Chaos",
reqStr = 0,
reqDex = 0,
@@ -7782,15 +9519,16 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Hinder",
tagString = "Spell, Chaos",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemComboFinisherSupport"] = {
- name = "Combo Finisher",
+ name = "Combo Finisher I",
gameId = "Metadata/Items/Gems/SupportGemComboFinisher",
variantId = "ComboFinisherSupport",
grantedEffectId = "SupportComboFinisherPlayer",
@@ -7802,6 +9540,7 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Combo Finisher",
tagString = "Attack, Melee, Strike, Conditional",
reqStr = 0,
reqDex = 100,
@@ -7809,16 +9548,56 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemEncumberanceSupport"] = {
- name = "Encumbrance",
+ ["Metadata/Items/Gems/SkillGemComboFinisherSupportTwo"] = {
+ name = "Combo Finisher II",
+ gameId = "Metadata/Items/Gems/SupportGemComboFinisherTwo",
+ variantId = "ComboFinisherSupportTwo",
+ grantedEffectId = "SupportComboFinisherPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ conditional = true,
+ },
+ gemType = "Support",
+ gemFamily = "Combo Finisher",
+ tagString = "Attack, Melee, Strike, Conditional",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAilithLineageSupport"] = {
+ name = "Ailith's Chimes",
+ gameId = "Metadata/Items/Gems/SupportGemAilithLineage",
+ variantId = "AilithLineageSupport",
+ grantedEffectId = "SupportAilithLineagePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ailith's Chimes",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSlowPotencySupport"] = {
+ name = "Slow Potency",
gameId = "Metadata/Items/Gems/SupportGemEncumbrance",
- variantId = "EncumberanceSupport",
- grantedEffectId = "SupportEncumberancePlayer",
+ variantId = "SlowPotencySupport",
+ grantedEffectId = "SupportSlowPotencyPlayer",
tags = {
support = true,
spell = true,
},
gemType = "Support",
+ gemFamily = "Encumbrance",
tagString = "Spell",
reqStr = 0,
reqDex = 100,
@@ -7827,7 +9606,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPrecisionSupport"] = {
- name = "Precision",
+ name = "Precision I",
gameId = "Metadata/Items/Gems/SupportGemPrecision",
variantId = "PrecisionSupport",
grantedEffectId = "SupportPrecisionPlayer",
@@ -7837,6 +9616,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Precision",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 100,
@@ -7844,8 +9624,27 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemPrecisionSupportTwo"] = {
+ name = "Precision II",
+ gameId = "Metadata/Items/Gems/SupportGemPrecisionTwo",
+ variantId = "PrecisionSupportTwo",
+ grantedEffectId = "SupportPrecisionPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Precision",
+ tagString = "Buff, Persistent",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemClaritySupport"] = {
- name = "Clarity",
+ name = "Clarity I",
gameId = "Metadata/Items/Gems/SupportGemClarity",
variantId = "ClaritySupport",
grantedEffectId = "SupportClarityPlayer",
@@ -7855,6 +9654,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Clarity",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 0,
@@ -7862,8 +9662,27 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemClaritySupportTwo"] = {
+ name = "Clarity II",
+ gameId = "Metadata/Items/Gems/SupportGemClarityTwo",
+ variantId = "ClaritySupportTwo",
+ grantedEffectId = "SupportClarityPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Clarity",
+ tagString = "Buff, Persistent",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemVitalitySupport"] = {
- name = "Vitality",
+ name = "Vitality I",
gameId = "Metadata/Items/Gems/SupportGemVitality",
variantId = "VitalitySupport",
grantedEffectId = "SupportVitalityPlayer",
@@ -7873,6 +9692,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Vitality",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -7880,8 +9700,27 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemVitalitySupportTwo"] = {
+ name = "Vitality II",
+ gameId = "Metadata/Items/Gems/SupportGemVitalityTwo",
+ variantId = "VitalitySupportTwo",
+ grantedEffectId = "SupportVitalityPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Vitality",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemHerbalismSupport"] = {
- name = "Herbalism",
+ name = "Herbalism I",
gameId = "Metadata/Items/Gems/SupportGemHerbalism",
variantId = "HerbalismSupport",
grantedEffectId = "SupportHerbalismPlayer",
@@ -7891,6 +9730,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Herbalism",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -7898,8 +9738,27 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemHerbalismSupportTwo"] = {
+ name = "Herbalism II",
+ gameId = "Metadata/Items/Gems/SupportGemHerbalismTwo",
+ variantId = "HerbalismSupportTwo",
+ grantedEffectId = "SupportHerbalismPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Herbalism",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemCannibalismSupport"] = {
- name = "Cannibalism",
+ name = "Cannibalism I",
gameId = "Metadata/Items/Gems/SupportGemCannibalism",
variantId = "CannibalismSupport",
grantedEffectId = "SupportCannibalismPlayer",
@@ -7909,6 +9768,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Cannibalism",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -7916,6 +9776,25 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemCannibalismSupportTwo"] = {
+ name = "Cannibalism II",
+ gameId = "Metadata/Items/Gems/SupportGemCannibalismTwo",
+ variantId = "CannibalismSupportTwo",
+ grantedEffectId = "SupportCannibalismPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Cannibalism",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemRuptureSupport"] = {
name = "Rupture",
gameId = "Metadata/Items/Gem/SupportGemRupture",
@@ -7926,6 +9805,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Rupture",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -7934,7 +9814,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCullingStrikeSupport"] = {
- name = "Culling Strike",
+ name = "Culling Strike I",
gameId = "Metadata/Items/Gem/SupportGemCullingStrike",
variantId = "CullingStrikeSupport",
grantedEffectId = "SupportCullingStrikePlayer",
@@ -7943,11 +9823,30 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Culling Strike",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCullingStrikeSupportTwo"] = {
+ name = "Culling Strike II",
+ gameId = "Metadata/Items/Gem/SupportGemCullingStrikeTwo",
+ variantId = "CullingStrikeSupportTwo",
+ grantedEffectId = "SupportCullingStrikePlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Culling Strike",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSpellCascadeSupport"] = {
@@ -7959,6 +9858,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Spell Cascade",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -7967,7 +9867,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemArmourBreakSupport"] = {
- name = "Splinter",
+ name = "Armour Break I",
gameId = "Metadata/Items/Gems/SupportGemSplinter",
variantId = "ArmourBreakSupport",
grantedEffectId = "SupportArmourBreakPlayer",
@@ -7976,6 +9876,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Armour Break",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -7983,8 +9884,44 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemArmourBreakSupportTwo"] = {
+ name = "Armour Break II",
+ gameId = "Metadata/Items/Gems/SupportGemSplinterTwo",
+ variantId = "ArmourBreakSupportTwo",
+ grantedEffectId = "SupportArmourBreakPlayerTwo",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Armour Break",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemArmourBreakSupportThree"] = {
+ name = "Armour Break III",
+ gameId = "Metadata/Items/Gems/SupportGemSplinterThree",
+ variantId = "ArmourBreakSupportThree",
+ grantedEffectId = "SupportArmourBreakPlayerThree",
+ tags = {
+ support = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Armour Break",
+ tagString = "Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemFarCombatSupport"] = {
- name = "Longshot",
+ name = "Longshot I",
gameId = "Metadata/Items/Gems/SupportGemLongshot",
variantId = "FarCombatSupport",
grantedEffectId = "SupportFarCombatPlayer",
@@ -7993,6 +9930,7 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Longshot",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
@@ -8000,22 +9938,41 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemDazingSupport"] = {
- name = "Discombobulate",
+ ["Metadata/Items/Gems/SkillGemFarCombatSupportTwo"] = {
+ name = "Longshot II",
+ gameId = "Metadata/Items/Gems/SupportGemLongshotTwo",
+ variantId = "FarCombatSupportTwo",
+ grantedEffectId = "SupportFarCombatPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Longshot",
+ tagString = "Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDazeSupport"] = {
+ name = "Daze",
gameId = "Metadata/Items/Gems/SupportGemDiscombobulate",
- variantId = "DazingSupport",
- grantedEffectId = "SupportDazingPlayer",
+ variantId = "DazeSupport",
+ grantedEffectId = "SupportDazePlayer",
tags = {
support = true,
attack = true,
physical = true,
},
gemType = "Support",
+ gemFamily = "Discombobulate",
tagString = "Attack, Physical",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDazedBreakSupport"] = {
@@ -8028,11 +9985,12 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Break Posture",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDazingCrySupport"] = {
@@ -8045,11 +10003,12 @@ return {
warcry = true,
},
gemType = "Support",
+ gemFamily = "Dazing Cry",
tagString = "Warcry",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCursedGroundSupport"] = {
@@ -8059,25 +10018,70 @@ return {
grantedEffectId = "SupportCursedGroundPlayer",
tags = {
support = true,
+ curse = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Cursed Ground",
+ tagString = "Curse",
reqStr = 0,
reqDex = 0,
reqInt = 100,
Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemWeaponElementalDamageSupport"] = {
- name = "Primal Armament",
+ ["Metadata/Items/Gems/SkillGemDoedresUndoingSupport"] = {
+ name = "Doedre's Undoing",
+ gameId = "Metadata/Items/Gem/SupportGemDoedresUndoing",
+ variantId = "DoedresUndoingSupport",
+ grantedEffectId = "SupportDoedresUndoingPlayer",
+ additionalGrantedEffectId1 = "TriggeredCurseZoneHazardExplosionPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ lineage = true,
+ area = true,
+ chaos = true,
+ curse = true,
+ hazard = true,
+ },
+ gemType = "Support",
+ gemFamily = "Cursed Ground",
+ tagString = "Lineage, AoE, Chaos, Curse, Hazard",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemElementalArmamentSupport"] = {
+ name = "Elemental Armament I",
gameId = "Metadata/Items/Gems/SupportGemPrimalArmament",
- variantId = "WeaponElementalDamageSupport",
- grantedEffectId = "SupportWeaponElementalDamagePlayer",
+ variantId = "ElementalArmamentSupport",
+ grantedEffectId = "SupportElementalArmamentPlayer",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Elemental Armament",
+ tagString = "Attack",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemElementalArmamentSupportTwo"] = {
+ name = "Elemental Armament II",
+ gameId = "Metadata/Items/Gems/SupportGemPrimalArmamentTwo",
+ variantId = "ElementalArmamentSupportTwo",
+ grantedEffectId = "SupportElementalArmamentPlayerTwo",
tags = {
support = true,
attack = true,
},
gemType = "Support",
+ gemFamily = "Elemental Armament",
tagString = "Attack",
reqStr = 100,
reqDex = 0,
@@ -8085,25 +10089,61 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemCooldownReductionSupport"] = {
- name = "Ingenuity",
+ ["Metadata/Items/Gems/SkillGemElementalArmamentSupportThree"] = {
+ name = "Elemental Armament III",
+ gameId = "Metadata/Items/Gems/SupportGemPrimalArmamentThree",
+ variantId = "ElementalArmamentSupportThree",
+ grantedEffectId = "SupportElementalArmamentPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Elemental Armament",
+ tagString = "Attack",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCooldownRecoverySupport"] = {
+ name = "Cooldown Recovery I",
gameId = "Metadata/Items/Gems/SupportGemIngenuity",
- variantId = "CooldownReductionSupport",
- grantedEffectId = "SupportCooldownReductionPlayer",
+ variantId = "CooldownRecoverySupport",
+ grantedEffectId = "SupportCooldownRecoveryPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Cooldown Recovery",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemAscendancyElementalExpression"] = {
- name = "Elemental Expression",
- baseTypeName = "Elemental Expression",
+ ["Metadata/Items/Gems/SkillGemCooldownRecoverySupportTwo"] = {
+ name = "Cooldown Recovery II",
+ gameId = "Metadata/Items/Gems/SupportGemIngenuityTwo",
+ variantId = "CooldownRecoverySupportTwo",
+ grantedEffectId = "SupportCooldownRecoveryPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Cooldown Recovery",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAscendancyElementalExpression"] = {
+ name = "Elemental Expression",
+ baseTypeName = "Elemental Expression",
gameId = "Metadata/Items/Gem/SkillGemAscendancyElementalExpression",
variantId = "AscendancyElementalExpression",
grantedEffectId = "ElementalExpressionTriggeredPlayer",
@@ -8139,13 +10179,13 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
projectile = true,
cold = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, Projectile, Cold",
+ gemType = "Attack",
+ tagString = "Projectile, Cold, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -8170,9 +10210,10 @@ return {
area = true,
aura = true,
duration = true,
+ conditional = true,
},
gemType = "Banner",
- tagString = "Buff, Persistent, AoE, Aura, Duration",
+ tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional",
reqStr = 50,
reqDex = 50,
reqInt = 0,
@@ -8196,9 +10237,10 @@ return {
area = true,
aura = true,
duration = true,
+ conditional = true,
},
gemType = "Banner",
- tagString = "Buff, Persistent, AoE, Aura, Duration",
+ tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional",
reqStr = 50,
reqDex = 50,
reqInt = 0,
@@ -8222,9 +10264,10 @@ return {
area = true,
aura = true,
duration = true,
+ conditional = true,
},
gemType = "Banner",
- tagString = "Buff, Persistent, AoE, Aura, Duration",
+ tagString = "Buff, Persistent, AoE, Aura, Duration, Conditional",
reqStr = 50,
reqDex = 50,
reqInt = 0,
@@ -8239,20 +10282,17 @@ return {
grantedEffectId = "FreezingMarkPlayer",
additionalGrantedEffectId1 = "TriggeredFreezingMarkNovaPlayer",
tags = {
+ mark = true,
dexterity = true,
intelligence = true,
grants_active_skill = true,
- barrageable = true,
- spell = true,
attack = true,
area = true,
- mark = true,
cold = true,
duration = true,
- nova = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Attack, AoE, Mark, Cold, Duration, Nova",
+ gemType = "Mark",
+ tagString = "Attack, AoE, Cold, Duration",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -8267,19 +10307,16 @@ return {
grantedEffectId = "VoltaicMarkPlayer",
additionalGrantedEffectId1 = "TriggeredVoltaicMarkNovaPlayer",
tags = {
+ mark = true,
dexterity = true,
grants_active_skill = true,
- barrageable = true,
- spell = true,
attack = true,
area = true,
- mark = true,
lightning = true,
duration = true,
- nova = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Attack, AoE, Mark, Lightning, Duration, Nova",
+ gemType = "Mark",
+ tagString = "Attack, AoE, Lightning, Duration",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -8306,7 +10343,7 @@ return {
},
gemType = "Attack",
tagString = "AoE, Melee, Strike, Chaos, Meta",
- weaponRequirements = "Quarterstaff, Unarmed",
+ weaponRequirements = "Quarterstaff",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -8321,6 +10358,7 @@ return {
grantedEffectId = "TimeOfNeedPlayer",
tags = {
strength = true,
+ intelligence = true,
grants_active_skill = true,
buff = true,
persistent = true,
@@ -8328,9 +10366,9 @@ return {
},
gemType = "Buff",
tagString = "Persistent, Duration",
- reqStr = 100,
+ reqStr = 75,
reqDex = 0,
- reqInt = 0,
+ reqInt = 25,
Tier = 8,
naturalMaxLevel = 20,
},
@@ -8351,10 +10389,11 @@ return {
lightning = true,
cold = true,
fire = true,
+ invocation = true,
meta = true,
},
gemType = "Buff",
- tagString = "Persistent, Trigger, Lightning, Cold, Fire, Meta",
+ tagString = "Persistent, Trigger, Lightning, Cold, Fire, Invocation, Meta",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -8438,6 +10477,7 @@ return {
totem = true,
},
gemType = "Support",
+ gemFamily = "Font",
tagString = "Totem",
reqStr = 100,
reqDex = 0,
@@ -8455,6 +10495,7 @@ return {
totem = true,
},
gemType = "Support",
+ gemFamily = "Font",
tagString = "Totem",
reqStr = 0,
reqDex = 0,
@@ -8472,6 +10513,7 @@ return {
totem = true,
},
gemType = "Support",
+ gemFamily = "Font",
tagString = "Totem",
reqStr = 100,
reqDex = 0,
@@ -8480,7 +10522,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAftershockChanceSupport"] = {
- name = "Aftershock",
+ name = "Aftershock I",
gameId = "Metadata/Items/Gems/SupportGemAftershock",
variantId = "AftershockChanceSupport",
grantedEffectId = "SupportAftershockChancePlayer",
@@ -8491,6 +10533,7 @@ return {
slam = true,
},
gemType = "Support",
+ gemFamily = "Aftershock",
tagString = "Attack, Melee, Slam",
reqStr = 100,
reqDex = 0,
@@ -8498,13 +10541,53 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemAftershockChanceSupportTwo"] = {
+ name = "Aftershock II",
+ gameId = "Metadata/Items/Gems/SupportGemAftershockTwo",
+ variantId = "AftershockChanceSupportTwo",
+ grantedEffectId = "SupportAftershockChancePlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ slam = true,
+ },
+ gemType = "Support",
+ gemFamily = "Aftershock",
+ tagString = "Attack, Melee, Slam",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAftershockChanceSupportThree"] = {
+ name = "Aftershock III",
+ gameId = "Metadata/Items/Gems/SupportGemAftershockThree",
+ variantId = "AftershockChanceSupportThree",
+ grantedEffectId = "SupportAftershockChancePlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ slam = true,
+ },
+ gemType = "Support",
+ gemFamily = "Aftershock",
+ tagString = "Attack, Melee, Slam",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemClusterGrenade"] = {
name = "Cluster Grenade",
baseTypeName = "Cluster Grenade",
gameId = "Metadata/Items/Gem/SkillGemClusterGrenade",
variantId = "ClusterGrenade",
grantedEffectId = "ClusterGrenadePlayer",
- additionalGrantedEffectId1 = "ClusterGrenadeMiniPlayer",
+ additionalStatSet1 = "ClusterGrenadeMiniPlayer",
tags = {
strength = true,
dexterity = true,
@@ -8534,15 +10617,15 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
physical = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Physical, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Physical, Duration, Barrageable",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -8550,12 +10633,12 @@ return {
Tier = 11,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemChargeInfusion"] = {
- name = "Charge Infusion",
+ ["Metadata/Items/Gems/SkillGemChargeRegulation"] = {
+ name = "Charge Regulation",
baseTypeName = "Charge Infusion",
gameId = "Metadata/Items/Gem/SkillGemChargeInfusion",
- variantId = "ChargeInfusion",
- grantedEffectId = "ChargeInfusionPlayer",
+ variantId = "ChargeRegulation",
+ grantedEffectId = "ChargeRegulationPlayer",
tags = {
dexterity = true,
intelligence = true,
@@ -8582,11 +10665,12 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Holy Descent",
tagString = "AoE, Duration",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBurningRunesSupport"] = {
@@ -8604,11 +10688,12 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Burning Inscription",
tagString = "AoE, Trigger, Fire",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemShardScavenger"] = {
@@ -8639,21 +10724,82 @@ return {
naturalMaxLevel = 20,
},
["Metadata/Items/Gems/SkillGemDoubleBarrelSupport"] = {
- name = "Double Barrel",
+ name = "Double Barrel I",
gameId = "Metadata/Items/Gem/SupportGemDoubleBarrel",
variantId = "DoubleBarrelSupport",
grantedEffectId = "SupportDoubleBarrelPlayer",
tags = {
support = true,
+ ammunition = true,
+ projectile = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Double Barrel",
+ tagString = "Ammunition, Projectile",
reqStr = 100,
reqDex = 0,
reqInt = 0,
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemDoubleBarrelSupportTwo"] = {
+ name = "Double Barrel II",
+ gameId = "Metadata/Items/Gem/SupportGemDoubleBarrelTwo",
+ variantId = "DoubleBarrelSupportTwo",
+ grantedEffectId = "SupportDoubleBarrelPlayerTwo",
+ tags = {
+ support = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Double Barrel",
+ tagString = "Ammunition, Projectile",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDoubleBarrelSupportThree"] = {
+ name = "Double Barrel III",
+ gameId = "Metadata/Items/Gem/SupportGemDoubleBarrelThree",
+ variantId = "DoubleBarrelSupportThree",
+ grantedEffectId = "SupportDoubleBarrelPlayerThree",
+ tags = {
+ support = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Double Barrel",
+ tagString = "Ammunition, Projectile",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCombatReloadSupport"] = {
+ name = "Ratha's Assault",
+ gameId = "Metadata/Items/Gem/SupportGemCombatReload",
+ variantId = "CombatReloadSupport",
+ grantedEffectId = "SupportCombatReloadPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Double Barrel",
+ tagString = "Lineage, Ammunition, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemAutoReloadSupport"] = {
name = "Auto Reload",
gameId = "Metadata/Items/Gem/SupportGemAutoReload",
@@ -8661,29 +10807,93 @@ return {
grantedEffectId = "SupportAutoReloadPlayer",
tags = {
support = true,
+ ammunition = true,
+ projectile = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Auto Reload",
+ tagString = "Ammunition, Projectile",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAmmoConservationSupport"] = {
- name = "Ammo Conservation",
+ name = "Ammo Conservation I",
gameId = "Metadata/Items/Gem/SupportGemAmmoConservation",
variantId = "AmmoConservationSupport",
grantedEffectId = "SupportAmmoConservationPlayer",
tags = {
support = true,
+ ammunition = true,
+ projectile = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Ammo Conservation",
+ tagString = "Ammunition, Projectile",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAmmoConservationSupportTwo"] = {
+ name = "Ammo Conservation II",
+ gameId = "Metadata/Items/Gem/SupportGemAmmoConservationTwo",
+ variantId = "AmmoConservationSupportTwo",
+ grantedEffectId = "SupportAmmoConservationPlayerTwo",
+ tags = {
+ support = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ammo Conservation",
+ tagString = "Ammunition, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAmmoConservationSupportThree"] = {
+ name = "Ammo Conservation III",
+ gameId = "Metadata/Items/Gem/SupportGemAmmoConservationThree",
+ variantId = "AmmoConservationSupportThree",
+ grantedEffectId = "SupportAmmoConservationPlayerThree",
+ tags = {
+ support = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ammo Conservation",
+ tagString = "Ammunition, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAmmoConservationSupportFour"] = {
+ name = "Arjun's Medal",
+ gameId = "Metadata/Items/Gem/SupportGemAmmoConservationFour",
+ variantId = "AmmoConservationSupportFour",
+ grantedEffectId = "SupportAmmoConservationPlayerFour",
+ tags = {
+ support = true,
+ lineage = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ammo Conservation",
+ tagString = "Lineage, Ammunition, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemNimbleReloadSupport"] = {
@@ -8693,17 +10903,20 @@ return {
grantedEffectId = "SupportNimbleReloadPlayer",
tags = {
support = true,
+ ammunition = true,
+ projectile = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Nimble Reload",
+ tagString = "Ammunition, Projectile",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFreshClipSupport"] = {
- name = "Fresh Clip",
+ name = "Fresh Clip I",
gameId = "Metadata/Items/Gem/SupportGemFreshClip",
variantId = "FreshClipSupport",
grantedEffectId = "SupportFreshClipPlayer",
@@ -8711,6 +10924,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Fresh Clip",
tagString = "",
reqStr = 100,
reqDex = 0,
@@ -8718,6 +10932,59 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemFreshClipSupportTwo"] = {
+ name = "Fresh Clip II",
+ gameId = "Metadata/Items/Gem/SupportGemFreshClipTwo",
+ variantId = "FreshClipSupportTwo",
+ grantedEffectId = "SupportFreshClipPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fresh Clip",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSacrificialLambSupport"] = {
+ name = "Sacrificial Lamb I",
+ gameId = "Metadata/Items/Gem/SupportGemSacrificialLamb",
+ variantId = "SacrificialLambSupport",
+ grantedEffectId = "SupportSacrificialLambPlayer",
+ tags = {
+ support = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Sacrificial Lamb",
+ tagString = "Minion",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSacrificialLambSupportTwo"] = {
+ name = "Sacrificial Lamb II",
+ gameId = "Metadata/Items/Gem/SupportGemSacrificialLambTwo",
+ variantId = "SacrificialLambSupportTwo",
+ grantedEffectId = "SupportSacrificialLambPlayerTwo",
+ tags = {
+ support = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Sacrificial Lamb",
+ tagString = "Minion",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemOverwhelmingPresence"] = {
name = "Overwhelming Presence",
baseTypeName = "Overwhelming Presence",
@@ -8774,10 +11041,11 @@ return {
buff = true,
persistent = true,
trigger = true,
+ invocation = true,
meta = true,
},
gemType = "Buff",
- tagString = "Persistent, Trigger, Meta",
+ tagString = "Persistent, Trigger, Invocation, Meta",
reqStr = 0,
reqDex = 50,
reqInt = 50,
@@ -8863,10 +11131,9 @@ return {
area = true,
projectile = true,
cold = true,
- stages = true,
},
gemType = "Attack",
- tagString = "AoE, Projectile, Cold, Staged",
+ tagString = "AoE, Projectile, Cold",
weaponRequirements = "Bow",
reqStr = 0,
reqDex = 100,
@@ -8968,6 +11235,56 @@ return {
Tier = 4,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemRavenousSwarm"] = {
+ name = "Ravenous Swarm",
+ baseTypeName = "Ravenous Swarm",
+ gameId = "Metadata/Items/Gem/SkillGemRavenousSwarm",
+ variantId = "RavenousSwarm",
+ grantedEffectId = "RavenousSwarmPlayer",
+ tags = {
+ buff = true,
+ intelligence = true,
+ grants_active_skill = true,
+ minion = true,
+ persistent = true,
+ physical = true,
+ chaos = true,
+ duration = true,
+ },
+ gemType = "Buff",
+ tagString = "Minion, Persistent, Physical, Chaos, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemMirageArcher"] = {
+ name = "Mirage Archer",
+ baseTypeName = "Mirage Archer",
+ gameId = "Metadata/Items/Gem/SkillGemMirageArcher",
+ variantId = "MirageArcher",
+ grantedEffectId = "MetaMirageArcherPlayer",
+ additionalGrantedEffectId1 = "SupportMirageArcherPlayer",
+ additionalGrantedEffectId2 = "MirageArcherSpawnPlayer",
+ tags = {
+ buff = true,
+ dexterity = true,
+ grants_active_skill = true,
+ persistent = true,
+ trigger = true,
+ duration = true,
+ meta = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, Trigger, Duration, Meta",
+ weaponRequirements = "Spear, Bow, Crossbow",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 8,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemCombatFrenzy"] = {
name = "Combat Frenzy",
baseTypeName = "Combat Frenzy",
@@ -9012,6 +11329,30 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemCastCurseOnBlock"] = {
+ name = "Curse on Block",
+ baseTypeName = "Curse on Block",
+ gameId = "Metadata/Items/Gems/SkillGemCastCurseOnBlock",
+ variantId = "CastCurseOnBlock",
+ grantedEffectId = "MetaCastCurseOnBlockPlayer",
+ additionalGrantedEffectId1 = "SupportMetaCastCurseOnBlockPlayer",
+ tags = {
+ buff = true,
+ dexterity = true,
+ intelligence = true,
+ grants_active_skill = true,
+ persistent = true,
+ trigger = true,
+ meta = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, Trigger, Meta",
+ reqStr = 0,
+ reqDex = 50,
+ reqInt = 50,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemGatheringStorm"] = {
name = "Gathering Storm",
baseTypeName = "Gathering Storm",
@@ -9041,17 +11382,18 @@ return {
Tier = 13,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemUpheavalSupport"] = {
- name = "Upheaval",
- gameId = "Metadata/Items/Gem/SupportGemUpheaval",
- variantId = "UpheavalSupport",
- grantedEffectId = "SupportUpheavalPlayer",
+ ["Metadata/Items/Gems/SkillGemBranchingFissuresSupport"] = {
+ name = "Branching Fissures I",
+ gameId = "Metadata/Items/Gem/SupportGemBranchingFissures",
+ variantId = "BranchingFissuresSupport",
+ grantedEffectId = "SupportBranchingFissuresPlayer",
tags = {
support = true,
attack = true,
melee = true,
},
gemType = "Support",
+ gemFamily = "Fissures",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
@@ -9059,25 +11401,102 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemGroundEffectDurationSupport"] = {
- name = "Despoiler",
- gameId = "Metadata/Items/Gems/SupportGemDespoiler",
- variantId = "GroundEffectDurationSupport",
- grantedEffectId = "SupportGroundEffectDurationPlayer",
+ ["Metadata/Items/Gems/SkillGemBranchingFissuresSupportTwo"] = {
+ name = "Branching Fissures II",
+ gameId = "Metadata/Items/Gem/SupportGemBranchingFissuresTwo",
+ variantId = "BranchingFissuresSupportTwo",
+ grantedEffectId = "SupportBranchingFissuresPlayerTwo",
tags = {
support = true,
- duration = true,
+ attack = true,
+ melee = true,
},
gemType = "Support",
- tagString = "Duration",
+ gemFamily = "Fissures",
+ tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUpheavalSupport"] = {
+ name = "Upheaval I",
+ gameId = "Metadata/Items/Gem/SupportGemUpheaval",
+ variantId = "UpheavalSupport",
+ grantedEffectId = "SupportUpheavalPlayer",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fissures",
+ tagString = "Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUpheavalSupportTwo"] = {
+ name = "Upheaval II",
+ gameId = "Metadata/Items/Gem/SupportGemUpheavalTwo",
+ variantId = "UpheavalSupportTwo",
+ grantedEffectId = "SupportUpheavalPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fissures",
+ tagString = "Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemKaomsMadnessSupport"] = {
+ name = "Kaom's Madness",
+ gameId = "Metadata/Items/Gem/SupportGemKaomsMadness",
+ variantId = "KaomsMadnessSupport",
+ grantedEffectId = "SupportKaomsMadnessPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fissures",
+ tagString = "Lineage, Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemLastingGroundSupport"] = {
+ name = "Lasting Ground",
+ gameId = "Metadata/Items/Gems/SupportGemDespoiler",
+ variantId = "LastingGroundSupport",
+ grantedEffectId = "SupportLastingGroundPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Lasting Ground",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemTerrainChainSupport"] = {
- name = "Ricochet",
+ name = "Ricochet I",
gameId = "Metadata/Items/Gem/SupportGemRicochet",
variantId = "TerrainChainSupport",
grantedEffectId = "SupportRicochetPlayer",
@@ -9086,6 +11505,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Ricochet",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -9093,16 +11513,53 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemTotemPlacementSpeedSupport"] = {
- name = "Ancestral Urgency",
+ ["Metadata/Items/Gems/SkillGemTerrainChainSupportTwo"] = {
+ name = "Ricochet II",
+ gameId = "Metadata/Items/Gem/SupportGemRicochetTwo",
+ variantId = "TerrainChainSupportTwo",
+ grantedEffectId = "SupportRicochetPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ricochet",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemTerrainChainSupportThree"] = {
+ name = "Ricochet III",
+ gameId = "Metadata/Items/Gem/SupportGemRicochetThree",
+ variantId = "TerrainChainSupportThree",
+ grantedEffectId = "SupportRicochetPlayerThree",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ricochet",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUrgentTotemsSupport"] = {
+ name = "Urgent Totems I",
gameId = "Metadata/Items/Gem/SupportGemAncestralUrgency",
- variantId = "TotemPlacementSpeedSupport",
- grantedEffectId = "SupportAncestralUrgencyPlayer",
+ variantId = "UrgentTotemsSupport",
+ grantedEffectId = "SupportUrgentTotemsPlayer",
tags = {
support = true,
totem = true,
},
gemType = "Support",
+ gemFamily = "Urgent Totems",
tagString = "Totem",
reqStr = 100,
reqDex = 0,
@@ -9110,21 +11567,74 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemUrgentTotemsSupportTwo"] = {
+ name = "Urgent Totems II",
+ gameId = "Metadata/Items/Gem/SupportGemAncestralUrgencyTwo",
+ variantId = "UrgentTotemsSupportTwo",
+ grantedEffectId = "SupportUrgentTotemsPlayerTwo",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Urgent Totems",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUrgentTotemsSupportThree"] = {
+ name = "Urgent Totems III",
+ gameId = "Metadata/Items/Gem/SupportGemAncestralUrgencyThree",
+ variantId = "UrgentTotemsSupportThree",
+ grantedEffectId = "SupportUrgentTotemsPlayerThree",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Urgent Totems",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemLongFuseSupport"] = {
- name = "Long Fuse",
+ name = "Long Fuse I",
gameId = "Metadata/Items/Gem/SupportGemLongFuse",
variantId = "LongFuseSupport",
grantedEffectId = "SupportLongFusePlayer",
tags = {
support = true,
- grenade = true,
},
gemType = "Support",
- tagString = "Grenade",
+ gemFamily = "Long Fuse",
+ tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemLongFuseSupportTwo"] = {
+ name = "Long Fuse II",
+ gameId = "Metadata/Items/Gem/SupportGemLongFuseTwo",
+ variantId = "LongFuseSupportTwo",
+ grantedEffectId = "SupportLongFusePlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Long Fuse",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPayloadSupport"] = {
@@ -9137,23 +11647,25 @@ return {
grenade = true,
},
gemType = "Support",
+ gemFamily = "Payload",
tagString = "Grenade",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemStripAwaySupport"] = {
- name = "Strip Away",
+ ["Metadata/Items/Gems/SkillGemPotentExposureSupport"] = {
+ name = "Potent Exposure",
gameId = "Metadata/Items/Gem/SupportGemStripAway",
- variantId = "StripAwaySupport",
- grantedEffectId = "SupportStripAwayPlayer",
+ variantId = "PotentExposureSupport",
+ grantedEffectId = "SupportPotentExposurePlayer",
tags = {
support = true,
spell = true,
},
gemType = "Support",
+ gemFamily = "Potent Exposure",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -9161,21 +11673,40 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemIronwoodSupport"] = {
- name = "Ironwood",
+ ["Metadata/Items/Gems/SkillGemReinforcedTotemsSupport"] = {
+ name = "Reinforced Totems I",
gameId = "Metadata/Items/Gem/SupportGemIronwood",
- variantId = "IronwoodSupport",
- grantedEffectId = "SupportIronwoodPlayer",
+ variantId = "ReinforcedTotemsSupport",
+ grantedEffectId = "SupportReinforcedTotemsPlayer",
tags = {
support = true,
totem = true,
},
gemType = "Support",
+ gemFamily = "Reinforced Totems",
tagString = "Totem",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemReinforcedTotemsSupportTwo"] = {
+ name = "Reinforced Totems II",
+ gameId = "Metadata/Items/Gem/SupportGemIronwoodTwo",
+ variantId = "ReinforcedTotemsSupportTwo",
+ grantedEffectId = "SupportReinforcedTotemsPlayerTwo",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Reinforced Totems",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemConsideredCastingSupport"] = {
@@ -9188,6 +11719,7 @@ return {
spell = true,
},
gemType = "Support",
+ gemFamily = "Considered Casting",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -9196,7 +11728,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemWildshardsSupport"] = {
- name = "Wildshards",
+ name = "Wildshards I",
gameId = "Metadata/Items/Gem/SupportGemWildshards",
variantId = "WildshardsSupport",
grantedEffectId = "SupportWildshardsPlayer",
@@ -9206,6 +11738,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Additional Projectiles",
tagString = "Spell, Projectile",
reqStr = 0,
reqDex = 0,
@@ -9213,6 +11746,45 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemWildshardsSupportTwo"] = {
+ name = "Wildshards II",
+ gameId = "Metadata/Items/Gem/SupportGemWildshardsTwo",
+ variantId = "WildshardsSupportTwo",
+ grantedEffectId = "SupportWildshardsPlayerTwo",
+ tags = {
+ support = true,
+ spell = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Additional Projectiles",
+ tagString = "Spell, Projectile",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemWildshardsSupportThree"] = {
+ name = "Sione's Temper",
+ gameId = "Metadata/Items/Gem/SupportGemWildshardsThree",
+ variantId = "WildshardsSupportThree",
+ grantedEffectId = "SupportWildshardsPlayerThree",
+ tags = {
+ support = true,
+ lineage = true,
+ spell = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Additional Projectiles",
+ tagString = "Lineage, Spell, Projectile",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemIcicleSupport"] = {
name = "Icicle",
gameId = "Metadata/Items/Gem/SupportGemIcicle",
@@ -9222,6 +11794,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Icicle",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9238,6 +11811,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Glacier",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9255,11 +11829,12 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Heft",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemTempestuousTempoSupport"] = {
@@ -9271,6 +11846,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Rising Tempest",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9288,6 +11864,7 @@ return {
spell = true,
},
gemType = "Support",
+ gemFamily = "Extraction",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -9304,6 +11881,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Astral Projection",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9323,11 +11901,12 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Practiced Combo",
tagString = "Attack, Melee, Strike",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemLeverageSupport"] = {
@@ -9339,15 +11918,16 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Leverage",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCulminationSupport"] = {
- name = "Culmination",
+ name = "Culmination I",
gameId = "Metadata/Items/Gem/SupportGemCulmination",
variantId = "CulminationSupport",
grantedEffectId = "SupportCulminationPlayer",
@@ -9358,6 +11938,7 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Culmination",
tagString = "Attack, Melee, Conditional",
reqStr = 0,
reqDex = 100,
@@ -9365,6 +11946,26 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemCulminationSupportTwo"] = {
+ name = "Culmination II",
+ gameId = "Metadata/Items/Gem/SupportGemCulminationTwo",
+ variantId = "CulminationSupportTwo",
+ grantedEffectId = "SupportCulminationPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ conditional = true,
+ },
+ gemType = "Support",
+ gemFamily = "Culmination",
+ tagString = "Attack, Melee, Conditional",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemPotentialSupport"] = {
name = "Potential",
gameId = "Metadata/Items/Gem/SupportGemPotential",
@@ -9374,11 +11975,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Potential",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemExpanseSupport"] = {
@@ -9391,6 +11993,7 @@ return {
area = true,
},
gemType = "Support",
+ gemFamily = "Grants Cooldown",
tagString = "AoE",
reqStr = 0,
reqDex = 0,
@@ -9407,6 +12010,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Grants Cooldown",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9423,6 +12027,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Grants Cooldown",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9440,6 +12045,7 @@ return {
trigger = true,
},
gemType = "Support",
+ gemFamily = "Energy Retention",
tagString = "Trigger",
reqStr = 0,
reqDex = 0,
@@ -9456,22 +12062,24 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Ferocity",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemAblationSupport"] = {
- name = "Ablation",
+ ["Metadata/Items/Gems/SkillGemSacrificialOfferingSupport"] = {
+ name = "Sacrificial Offering",
gameId = "Metadata/Items/Gem/SupportGemAblation",
- variantId = "AblationSupport",
- grantedEffectId = "SupportAblationPlayer",
+ variantId = "SacrificialOfferingSupport",
+ grantedEffectId = "SupportSacrificalOfferingPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Sacrificial Offering",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9488,22 +12096,24 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Danse Macabre",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemCapacitorSupport"] = {
- name = "Capacitor",
+ ["Metadata/Items/Gems/SkillGemEnergyCapacitorSupport"] = {
+ name = "Energy Capacitor",
gameId = "Metadata/Items/Gem/SupportGemCapacitor",
- variantId = "CapacitorSupport",
- grantedEffectId = "SupportCapacitorPlayer",
+ variantId = "EnergyCapacitorSupport",
+ grantedEffectId = "SupportEnergyCapacitorPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Energy Capacitor",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9511,15 +12121,16 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemImpetusSupport"] = {
- name = "Impetus",
+ ["Metadata/Items/Gems/SkillGemBoundlessEnergySupport"] = {
+ name = "Boundless Energy I",
gameId = "Metadata/Items/Gem/SupportGemImpetus",
- variantId = "ImpetusSupport",
- grantedEffectId = "SupportImpetusPlayer",
+ variantId = "BoundlessEnergySupport",
+ grantedEffectId = "SupportBoundlessEnergyPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Boundless Energy",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -9527,16 +12138,34 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemDissipateSupport"] = {
- name = "Dissipate",
+ ["Metadata/Items/Gems/SkillGemBoundlessEnergySupportTwo"] = {
+ name = "Boundless Energy II",
+ gameId = "Metadata/Items/Gem/SupportGemImpetusTwo",
+ variantId = "BoundlessEnergySupportTwo",
+ grantedEffectId = "SupportBoundlessEnergyPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Boundless Energy",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFleetingRemnantsSupport"] = {
+ name = "Harmonic Remnants I",
gameId = "Metadata/Items/Gem/SupportGemDissipate",
- variantId = "DissipateSupport",
- grantedEffectId = "SupportDissipatePlayer",
+ variantId = "FleetingRemnantsSupport",
+ grantedEffectId = "SupportFleetingRemnantsPlayer",
tags = {
support = true,
remnant = true,
},
gemType = "Support",
+ gemFamily = "Harmonic Remnants",
tagString = "Remnant",
reqStr = 0,
reqDex = 0,
@@ -9544,6 +12173,24 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemFleetingRemnantsSupportTwo"] = {
+ name = "Harmonic Remnants II",
+ gameId = "Metadata/Items/Gem/SupportGemDissipateTwo",
+ variantId = "FleetingRemnantsSupportTwo",
+ grantedEffectId = "SupportFleetingRemnantsPlayerTwo",
+ tags = {
+ support = true,
+ remnant = true,
+ },
+ gemType = "Support",
+ gemFamily = "Harmonic Remnants",
+ tagString = "Remnant",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemFlukeSupport"] = {
name = "Fluke",
gameId = "Metadata/Items/Gem/SupportGemFluke",
@@ -9554,6 +12201,7 @@ return {
trigger = true,
},
gemType = "Support",
+ gemFamily = "Fluke",
tagString = "Trigger",
reqStr = 0,
reqDex = 0,
@@ -9561,8 +12209,27 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemFlukeSupportTwo"] = {
+ name = "Ixchel's Torment",
+ gameId = "Metadata/Items/Gem/SupportGemFlukeTwo",
+ variantId = "FlukeSupportTwo",
+ grantedEffectId = "SupportFlukePlayerTwo",
+ tags = {
+ support = true,
+ lineage = true,
+ trigger = true,
+ },
+ gemType = "Support",
+ gemFamily = "Fluke",
+ tagString = "Lineage, Trigger",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemZenithSupport"] = {
- name = "Zenith",
+ name = "Zenith I",
gameId = "Metadata/Items/Gem/SupportGemZenith",
variantId = "ZenithSupport",
grantedEffectId = "SupportZenithPlayer",
@@ -9571,6 +12238,7 @@ return {
spell = true,
},
gemType = "Support",
+ gemFamily = "Zenith",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
@@ -9578,8 +12246,26 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemZenithSupportTwo"] = {
+ name = "Zenith II",
+ gameId = "Metadata/Items/Gem/SupportGemZenithTwo",
+ variantId = "ZenithSupportTwo",
+ grantedEffectId = "SupportZenithPlayerTwo",
+ tags = {
+ support = true,
+ spell = true,
+ },
+ gemType = "Support",
+ gemFamily = "Zenith",
+ tagString = "Spell",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemBiddingSupport"] = {
- name = "Bidding",
+ name = "Bidding I",
gameId = "Metadata/Items/Gem/SupportGemBidding",
variantId = "BiddingSupport",
grantedEffectId = "SupportBiddingPlayer",
@@ -9589,6 +12275,7 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Bidding",
tagString = "Command, Minion",
reqStr = 0,
reqDex = 0,
@@ -9596,59 +12283,136 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemCommandmentSupport"] = {
- name = "Commandment",
- gameId = "Metadata/Items/Gem/SupportGemCommandment",
- variantId = "CommandmentSupport",
- grantedEffectId = "SupportCommandment",
+ ["Metadata/Items/Gems/SkillGemBiddingSupportTwo"] = {
+ name = "Bidding II",
+ gameId = "Metadata/Items/Gem/SupportGemBiddingTwo",
+ variantId = "BiddingSupportTwo",
+ grantedEffectId = "SupportBiddingPlayerTwo",
tags = {
support = true,
command = true,
minion = true,
},
gemType = "Support",
+ gemFamily = "Bidding",
tagString = "Command, Minion",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 4,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFlowSupport"] = {
- name = "Flow",
- gameId = "Metadata/Items/Gem/SupportGemFlow",
- variantId = "FlowSupport",
- grantedEffectId = "SupportFlowPlayer",
+ ["Metadata/Items/Gems/SkillGemBiddingSupportThree"] = {
+ name = "Bidding III",
+ gameId = "Metadata/Items/Gem/SupportGemBiddingThree",
+ variantId = "BiddingSupportThree",
+ grantedEffectId = "SupportBiddingPlayerThree",
tags = {
support = true,
+ command = true,
+ minion = true,
},
gemType = "Support",
- tagString = "",
+ gemFamily = "Bidding",
+ tagString = "Command, Minion",
reqStr = 0,
- reqDex = 100,
- reqInt = 0,
- Tier = 2,
- naturalMaxLevel = 1,
- },
- ["Metadata/Items/Gems/SkillGemAdhereSupport"] = {
- name = "Adhere",
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCommandmentSupport"] = {
+ name = "Commandment",
+ gameId = "Metadata/Items/Gem/SupportGemCommandment",
+ variantId = "CommandmentSupport",
+ grantedEffectId = "SupportCommandment",
+ tags = {
+ support = true,
+ command = true,
+ minion = true,
+ },
+ gemType = "Support",
+ gemFamily = "Commandment",
+ tagString = "Command, Minion",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFlowSupport"] = {
+ name = "Flow",
+ gameId = "Metadata/Items/Gem/SupportGemFlow",
+ variantId = "FlowSupport",
+ grantedEffectId = "SupportFlowPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Flow",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupport"] = {
+ name = "Adhesive Grenades I",
gameId = "Metadata/Items/Gem/SupportGemAdhere",
- variantId = "AdhereSupport",
- grantedEffectId = "SupportAdherePlayer",
+ variantId = "AdhesiveGrenadesSupport",
+ grantedEffectId = "SupportAdhesiveGrenadesPlayer",
tags = {
support = true,
grenade = true,
},
gemType = "Support",
+ gemFamily = "Adhesive Grenades",
tagString = "Grenade",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupportTwo"] = {
+ name = "Adhesive Grenades II",
+ gameId = "Metadata/Items/Gem/SupportGemAdhereTwo",
+ variantId = "AdhesiveGrenadesSupportTwo",
+ grantedEffectId = "SupportAdhesiveGrenadesPlayerTwo",
+ tags = {
+ support = true,
+ grenade = true,
+ },
+ gemType = "Support",
+ gemFamily = "Adhesive Grenades",
+ tagString = "Grenade",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAdhesiveGrenadesSupportThree"] = {
+ name = "Adhesive Grenades III",
+ gameId = "Metadata/Items/Gem/SupportGemAdhereThree",
+ variantId = "AdhesiveGrenadesSupportThree",
+ grantedEffectId = "SupportAdhesiveGrenadesPlayerThree",
+ tags = {
+ support = true,
+ grenade = true,
+ },
+ gemType = "Support",
+ gemFamily = "Adhesive Grenades",
+ tagString = "Grenade",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRetaliateSupport"] = {
- name = "Retaliate",
+ name = "Retaliate I",
gameId = "Metadata/Items/Gem/SupportGemRetaliate",
variantId = "RetaliateSupport",
grantedEffectId = "SupportRetaliatePlayer",
@@ -9658,11 +12422,31 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Retaliate",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRetaliateSupportTwo"] = {
+ name = "Retaliate II",
+ gameId = "Metadata/Items/Gem/SupportGemRetaliateTwo",
+ variantId = "RetaliateSupportTwo",
+ grantedEffectId = "SupportRetaliatePlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Retaliate",
+ tagString = "Attack, Melee",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemTremorsSupport"] = {
@@ -9677,11 +12461,12 @@ return {
slam = true,
},
gemType = "Support",
+ gemFamily = "Tremors",
tagString = "Attack, Melee, Slam",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSalvoSupport"] = {
@@ -9695,6 +12480,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Additional Projectiles",
tagString = "Attack, Projectile",
reqStr = 0,
reqDex = 100,
@@ -9712,6 +12498,7 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Cadence",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
@@ -9732,6 +12519,7 @@ return {
chaining = true,
},
gemType = "Support",
+ gemFamily = "Volt",
tagString = "Attack, Projectile, Lightning, Chaining",
reqStr = 0,
reqDex = 100,
@@ -9754,6 +12542,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Bone Shrapnel",
tagString = "AoE, Trigger, Physical",
reqStr = 0,
reqDex = 0,
@@ -9762,7 +12551,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAlignmentSupport"] = {
- name = "Alignment",
+ name = "Alignment I",
gameId = "Metadata/Items/Gem/SupportGemAlignment",
variantId = "AlignmentSupport",
grantedEffectId = "SupportAlignmentPlayer",
@@ -9772,6 +12561,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Alignment",
tagString = "Attack, Projectile",
reqStr = 0,
reqDex = 100,
@@ -9779,6 +12569,44 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemAlignmentSupportTwo"] = {
+ name = "Alignment II",
+ gameId = "Metadata/Items/Gem/SupportGemAlignmentTwo",
+ variantId = "AlignmentSupportTwo",
+ grantedEffectId = "SupportAlignmentPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Alignment",
+ tagString = "Attack, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAlignmentSupportThree"] = {
+ name = "Alignment III",
+ gameId = "Metadata/Items/Gem/SupportGemAlignmentThree",
+ variantId = "AlignmentSupportThree",
+ grantedEffectId = "SupportAlignmentPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Alignment, Additional Projectiles",
+ tagString = "Attack, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemDerangeSupport"] = {
name = "Derange",
gameId = "Metadata/Items/Gem/SupportGemDerange",
@@ -9788,15 +12616,16 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Derange",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemChargedShotsSupport"] = {
- name = "Charged Shots",
+ name = "Charged Shots I",
gameId = "Metadata/Items/Gem/SupportGemChargedShots",
variantId = "ChargedShotsSupport",
grantedEffectId = "SupportChargedShotsPlayer",
@@ -9806,6 +12635,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Charged Shots",
tagString = "Attack, Projectile",
reqStr = 0,
reqDex = 100,
@@ -9813,8 +12643,27 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemChargedShotsSupportTwo"] = {
+ name = "Charged Shots II",
+ gameId = "Metadata/Items/Gem/SupportGemChargedShotsTwo",
+ variantId = "ChargedShotsSupportTwo",
+ grantedEffectId = "SupportChargedShotsPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Charged Shots",
+ tagString = "Attack, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemProfanitySupport"] = {
- name = "Profanity",
+ name = "Profanity I",
gameId = "Metadata/Items/Gem/SupportGemProfanity",
variantId = "ProfanitySupport",
grantedEffectId = "SupportProfanityPlayer",
@@ -9823,6 +12672,7 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Profanity",
tagString = "Chaos",
reqStr = 0,
reqDex = 0,
@@ -9830,8 +12680,26 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemProfanitySupportTwo"] = {
+ name = "Profanity II",
+ gameId = "Metadata/Items/Gem/SupportGemProfanityTwo",
+ variantId = "ProfanitySupportTwo",
+ grantedEffectId = "SupportProfanityPlayerTwo",
+ tags = {
+ support = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Profanity",
+ tagString = "Chaos",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemBurgeonSupport"] = {
- name = "Burgeon",
+ name = "Burgeon I",
gameId = "Metadata/Items/Gem/SupportGemBurgeon",
variantId = "BurgeonSupport",
grantedEffectId = "SupportBurgeonPlayer",
@@ -9840,6 +12708,7 @@ return {
channelling = true,
},
gemType = "Support",
+ gemFamily = "Burgeon",
tagString = "Channelling",
reqStr = 0,
reqDex = 0,
@@ -9847,8 +12716,26 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemBurgeonSupportTwo"] = {
+ name = "Burgeon II",
+ gameId = "Metadata/Items/Gem/SupportGemBurgeonTwo",
+ variantId = "BurgeonSupportTwo",
+ grantedEffectId = "SupportBurgeonPlayerTwo",
+ tags = {
+ support = true,
+ channelling = true,
+ },
+ gemType = "Support",
+ gemFamily = "Burgeon",
+ tagString = "Channelling",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemSteadfastSupport"] = {
- name = "Steadfast",
+ name = "Steadfast I",
gameId = "Metadata/Items/Gem/SupportGemSteadfast",
variantId = "SteadfastSupport",
grantedEffectId = "SupportSteadfastPlayer",
@@ -9857,11 +12744,30 @@ return {
channelling = true,
},
gemType = "Support",
+ gemFamily = "Steadfast",
tagString = "Channelling",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSteadfastSupportTwo"] = {
+ name = "Steadfast II",
+ gameId = "Metadata/Items/Gem/SupportGemSteadfastTwo",
+ variantId = "SteadfastSupportTwo",
+ grantedEffectId = "SupportSteadfastPlayerTwo",
+ tags = {
+ support = true,
+ channelling = true,
+ },
+ gemType = "Support",
+ gemFamily = "Steadfast",
+ tagString = "Channelling",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFlamepierceSupport"] = {
@@ -9875,11 +12781,12 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Flamepierce",
tagString = "Projectile, Fire",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFreezeForkSupport"] = {
@@ -9893,11 +12800,12 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Freezefork",
tagString = "Projectile, Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemStormchainSupport"] = {
@@ -9912,11 +12820,12 @@ return {
chaining = true,
},
gemType = "Support",
+ gemFamily = "Stormchain",
tagString = "Projectile, Lightning, Chaining",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemVerglasSupport"] = {
@@ -9929,6 +12838,7 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Verglas",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
@@ -9946,6 +12856,7 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Embitter",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
@@ -9969,11 +12880,12 @@ return {
payoff = true,
},
gemType = "Support",
+ gemFamily = "Battershout",
tagString = "Warcry, AoE, Trigger, Physical, Payoff",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 1,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemNadirSupport"] = {
@@ -9986,6 +12898,7 @@ return {
stages = true,
},
gemType = "Support",
+ gemFamily = "Nadir",
tagString = "Staged",
reqStr = 0,
reqDex = 0,
@@ -10003,6 +12916,7 @@ return {
curse = true,
},
gemType = "Support",
+ gemFamily = "Abiding Hex",
tagString = "Curse",
reqStr = 0,
reqDex = 0,
@@ -10019,11 +12933,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Rusted Spikes",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCrazedMinionsSupport"] = {
@@ -10037,11 +12952,12 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Crazed Minions",
tagString = "Minion, Persistent",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSpectralVolleySupport"] = {
@@ -10055,11 +12971,12 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Spectral Volley",
tagString = "Attack, Projectile",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRallySupport"] = {
@@ -10073,11 +12990,12 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Rally",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDeathmarchSupport"] = {
@@ -10091,6 +13009,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Deathmarch",
tagString = "Minion, Persistent",
reqStr = 0,
reqDex = 0,
@@ -10107,6 +13026,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Acrimony",
tagString = "",
reqStr = 0,
reqDex = 0,
@@ -10115,7 +13035,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemConcoctSupport"] = {
- name = "Concoct",
+ name = "Concoct I",
gameId = "Metadata/Items/Gem/SupportGemConcoct",
variantId = "ConcoctSupport",
grantedEffectId = "SupportConcoctPlayer",
@@ -10123,6 +13043,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Concoct",
tagString = "",
reqStr = 100,
reqDex = 0,
@@ -10130,6 +13051,23 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemConcoctSupportTwo"] = {
+ name = "Concoct II",
+ gameId = "Metadata/Items/Gem/SupportGemConcoctTwo",
+ variantId = "ConcoctSupportTwo",
+ grantedEffectId = "SupportConcoctPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Concoct",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemAmbrosiaSupport"] = {
name = "Ambrosia",
gameId = "Metadata/Items/Gem/SupportGemAmbrosia",
@@ -10139,22 +13077,24 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Ambrosia",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemDomainSupport"] = {
- name = "Domain",
+ ["Metadata/Items/Gems/SkillGemPersistentGroundSupport"] = {
+ name = "Persistent Ground I",
gameId = "Metadata/Items/Gem/SupportGemDomain",
- variantId = "DomainSupport",
- grantedEffectId = "SupportDomainPlayer",
+ variantId = "PersistentGroundSupport",
+ grantedEffectId = "SupportPersistentGroundPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Persistent Ground",
tagString = "",
reqStr = 100,
reqDex = 0,
@@ -10162,16 +13102,51 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemFigureheadSupport"] = {
- name = "Figurehead",
+ ["Metadata/Items/Gems/SkillGemPersistentGroundSupportTwo"] = {
+ name = "Persistent Ground II",
+ gameId = "Metadata/Items/Gem/SupportGemDomainTwo",
+ variantId = "PersistentGroundSupportTwo",
+ grantedEffectId = "SupportPersistentGroundPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Persistent Ground",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPersistentGroundSupportThree"] = {
+ name = "Persistent Ground III",
+ gameId = "Metadata/Items/Gem/SupportGemDomainThree",
+ variantId = "PersistentGroundSupportThree",
+ grantedEffectId = "SupportPersistentGroundPlayerThree",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Persistent Ground",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSelflessRemnantsSupport"] = {
+ name = "Selfless Remnants",
gameId = "Metadata/Items/Gem/SupportGemFigurehead",
- variantId = "FigureheadSupport",
- grantedEffectId = "SupportFigureheadPlayer",
+ variantId = "SelflessRemnantsSupport",
+ grantedEffectId = "SupportSelflessRemnantsPlayer",
tags = {
support = true,
remnant = true,
},
gemType = "Support",
+ gemFamily = "Selfless Remnants",
tagString = "Remnant",
reqStr = 100,
reqDex = 0,
@@ -10179,16 +13154,35 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemInterludeSupport"] = {
- name = "Interlude",
+ ["Metadata/Items/Gems/SkillGemRemnantPotencySupport"] = {
+ name = "Remnant Potency I",
gameId = "Metadata/Items/Gem/SupportGemInterlude",
- variantId = "InterludeSupport",
+ variantId = "RemnantPotencySupport",
grantedEffectId = "SupportInterludePlayer",
tags = {
support = true,
remnant = true,
},
gemType = "Support",
+ gemFamily = "Remnant Potency",
+ tagString = "Remnant",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRemnantPotencySupportTwo"] = {
+ name = "Remnant Potency II",
+ gameId = "Metadata/Items/Gem/SupportGemInterludeTwo",
+ variantId = "RemnantPotencySupportTwo",
+ grantedEffectId = "SupportInterludePlayerTwo",
+ tags = {
+ support = true,
+ remnant = true,
+ },
+ gemType = "Support",
+ gemFamily = "Remnant Potency",
tagString = "Remnant",
reqStr = 100,
reqDex = 0,
@@ -10196,6 +13190,24 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemRemnantPotencySupportThree"] = {
+ name = "Remnant Potency III",
+ gameId = "Metadata/Items/Gem/SupportGemInterludeThree",
+ variantId = "RemnantPotencySupportThree",
+ grantedEffectId = "SupportInterludePlayerThree",
+ tags = {
+ support = true,
+ remnant = true,
+ },
+ gemType = "Support",
+ gemFamily = "Remnant Potency",
+ tagString = "Remnant",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemReverberateSupport"] = {
name = "Reverberate",
gameId = "Metadata/Items/Gem/SupportGemReverberate",
@@ -10208,11 +13220,12 @@ return {
slam = true,
},
gemType = "Support",
+ gemFamily = "Reverberate",
tagString = "Attack, Melee, Slam",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemClashSupport"] = {
@@ -10226,6 +13239,7 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Clash",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
@@ -10242,11 +13256,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Malady",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDazzleSupport"] = {
@@ -10259,11 +13274,12 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Dazzle",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemSyzygySupport"] = {
@@ -10279,11 +13295,12 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Syzygy",
tagString = "Attack, Melee, Slam, Fire",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemUnyieldingSupport"] = {
@@ -10297,11 +13314,12 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Unyielding",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDesperationSupport"] = {
@@ -10315,11 +13333,12 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Desperation",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemOverextendSupport"] = {
@@ -10330,10 +13349,10 @@ return {
tags = {
support = true,
attack = true,
- critical = true,
},
gemType = "Support",
- tagString = "Attack, Critical",
+ gemFamily = "Overextend",
+ tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -10351,11 +13370,12 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Excoriate",
tagString = "Attack, Melee",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemUnbendingSupport"] = {
@@ -10368,15 +13388,16 @@ return {
spell = true,
},
gemType = "Support",
+ gemFamily = "Unbending",
tagString = "Spell",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRetreatSupport"] = {
- name = "Retreat",
+ name = "Retreat I",
gameId = "Metadata/Items/Gem/SupportGemRetreat",
variantId = "RetreatSupport",
grantedEffectId = "SupportRetreatPlayer",
@@ -10385,6 +13406,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Retreat",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -10392,10 +13414,46 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemPursuitSupport"] = {
- name = "Pursuit",
- gameId = "Metadata/Items/Gem/SupportGemPursuit",
- variantId = "PursuitSupport",
+ ["Metadata/Items/Gems/SkillGemRetreatSupportTwo"] = {
+ name = "Retreat II",
+ gameId = "Metadata/Items/Gem/SupportGemRetreatTwo",
+ variantId = "RetreatSupportTwo",
+ grantedEffectId = "SupportRetreatPlayerTwo",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Retreat",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRetreatSupportThree"] = {
+ name = "Retreat III",
+ gameId = "Metadata/Items/Gem/SupportGemRetreatThree",
+ variantId = "RetreatSupportThree",
+ grantedEffectId = "SupportRetreatPlayerThree",
+ tags = {
+ support = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Retreat",
+ tagString = "Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPursuitSupport"] = {
+ name = "Pursuit I",
+ gameId = "Metadata/Items/Gem/SupportGemPursuit",
+ variantId = "PursuitSupport",
grantedEffectId = "SupportPursuitPlayer",
tags = {
support = true,
@@ -10403,6 +13461,7 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Pursuit",
tagString = "Attack, Melee",
reqStr = 0,
reqDex = 100,
@@ -10410,17 +13469,56 @@ return {
Tier = 1,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemReachSupport"] = {
- name = "Reach",
+ ["Metadata/Items/Gems/SkillGemPursuitSupportTwo"] = {
+ name = "Pursuit II",
+ gameId = "Metadata/Items/Gem/SupportGemPursuitTwo",
+ variantId = "PursuitSupportTwo",
+ grantedEffectId = "SupportPursuitPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pursuit",
+ tagString = "Attack, Melee",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPursuitSupportThree"] = {
+ name = "Pursuit III",
+ gameId = "Metadata/Items/Gem/SupportGemPursuitThree",
+ variantId = "PursuitSupportThree",
+ grantedEffectId = "SupportPursuitPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ },
+ gemType = "Support",
+ gemFamily = "Pursuit",
+ tagString = "Attack, Melee",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemOverreachSupport"] = {
+ name = "Overreach",
gameId = "Metadata/Items/Gem/SupportGemReach",
- variantId = "ReachSupport",
- grantedEffectId = "SupportReachPlayer",
+ variantId = "OverreachSupport",
+ grantedEffectId = "SupportOverreachPlayer",
tags = {
support = true,
attack = true,
area = true,
},
gemType = "Support",
+ gemFamily = "Increased Area of Effect",
tagString = "Attack, AoE",
reqStr = 0,
reqDex = 100,
@@ -10437,6 +13535,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Commiserate",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -10451,10 +13550,10 @@ return {
grantedEffectId = "SupportBlindsidePlayer",
tags = {
support = true,
- critical = true,
},
gemType = "Support",
- tagString = "Critical",
+ gemFamily = "Blindside",
+ tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -10472,11 +13571,12 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Hit and Run",
tagString = "Attack, Conditional",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCracklingBarrierSupport"] = {
@@ -10490,6 +13590,7 @@ return {
channelling = true,
},
gemType = "Support",
+ gemFamily = "Crackling Barrier",
tagString = "Lightning, Channelling",
reqStr = 0,
reqDex = 0,
@@ -10498,7 +13599,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDefySupport"] = {
- name = "Defy",
+ name = "Defy I",
gameId = "Metadata/Items/Gem/SupportGemDefy",
variantId = "DefySupport",
grantedEffectId = "SupportDefyPlayer",
@@ -10507,11 +13608,30 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Defy",
tagString = "Attack",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDefySupportTwo"] = {
+ name = "Defy II",
+ gameId = "Metadata/Items/Gem/SupportGemDefyTwo",
+ variantId = "DefySupportTwo",
+ grantedEffectId = "SupportDefyPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Defy",
+ tagString = "Attack",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemVolatilitySupport"] = {
@@ -10523,10 +13643,10 @@ return {
support = true,
physical = true,
chaos = true,
- critical = true,
},
gemType = "Support",
- tagString = "Physical, Chaos, Critical",
+ gemFamily = "Volatility",
+ tagString = "Physical, Chaos",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -10543,29 +13663,31 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Muster",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemEnormitySupport"] = {
- name = "Enormity",
+ ["Metadata/Items/Gems/SkillGemHulkingMinionsSupport"] = {
+ name = "Hulking Minions",
gameId = "Metadata/Items/Gem/SupportGemEnormity",
- variantId = "EnormitySupport",
- grantedEffectId = "SupportEnormityPlayer",
+ variantId = "HulkingMinionsSupport",
+ grantedEffectId = "SupportHulkingMinionsPlayer",
tags = {
support = true,
minion = true,
persistent = true,
},
gemType = "Support",
+ gemFamily = "Hulking Minions",
tagString = "Minion, Persistent",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCaltropsSupport"] = {
@@ -10581,12 +13703,12 @@ return {
area = true,
projectile = true,
trigger = true,
- physical = true,
duration = true,
hazard = true,
},
gemType = "Support",
- tagString = "Attack, AoE, Projectile, Trigger, Physical, Duration, Hazard",
+ gemFamily = "Caltrops",
+ tagString = "Attack, AoE, Projectile, Trigger, Duration, Hazard",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -10607,6 +13729,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Haemocrystals",
tagString = "Attack, AoE, Physical",
reqStr = 100,
reqDex = 0,
@@ -10625,11 +13748,12 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Spar",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDauntlessSupport"] = {
@@ -10642,31 +13766,33 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Dauntless",
tagString = "Conditional",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemMagnetismSupport"] = {
- name = "Magnetism",
+ ["Metadata/Items/Gems/SkillGemMagneticRemnantsSupport"] = {
+ name = "Magnetic Remnants",
gameId = "Metadata/Items/Gem/SupportGemMagnetism",
- variantId = "MagnetismSupport",
- grantedEffectId = "SupportMagnetismPlayer",
+ variantId = "MagneticRemnantsSupport",
+ grantedEffectId = "SupportMagneticRemnantsPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Magnetism",
tagString = "",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAncestralCallSupport"] = {
- name = "Ancestral Call",
+ name = "Ancestral Call I",
gameId = "Metadata/Items/Gem/SupportGemAncestralCall",
variantId = "AncestralCallSupport",
grantedEffectId = "SupportAncestralCallPlayer",
@@ -10677,11 +13803,52 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Ancestral Call",
tagString = "Attack, Melee, Strike",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAncestralCallSupportTwo"] = {
+ name = "Ancestral Call II",
+ gameId = "Metadata/Items/Gem/SupportGemAncestralCallTwo",
+ variantId = "AncestralCallSupportTwo",
+ grantedEffectId = "SupportAncestralCallPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ancestral Call",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAncestralCallSupportThree"] = {
+ name = "Ancestral Call III",
+ gameId = "Metadata/Items/Gem/SupportGemAncestralCallThree",
+ variantId = "AncestralCallSupportThree",
+ grantedEffectId = "SupportAncestralCallPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Ancestral Call",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemQuillburstSupport"] = {
@@ -10700,6 +13867,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Quill Burst",
tagString = "Attack, AoE, Melee, Trigger, Physical",
reqStr = 100,
reqDex = 0,
@@ -10716,14 +13884,14 @@ return {
support = true,
attack = true,
melee = true,
- critical = true,
},
gemType = "Support",
- tagString = "Attack, Melee, Critical",
+ gemFamily = "Unsteady Tempo",
+ tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemAncestralAidSupport"] = {
@@ -10739,11 +13907,12 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Ancestral Call",
tagString = "Attack, Melee, Strike, Conditional",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemShockingLeapSupport"] = {
@@ -10757,6 +13926,7 @@ return {
duration = true,
},
gemType = "Support",
+ gemFamily = "Shocking Leap",
tagString = "AoE, Duration",
reqStr = 0,
reqDex = 100,
@@ -10765,7 +13935,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBarbsSupport"] = {
- name = "Barbs",
+ name = "Barbs I",
gameId = "Metadata/Items/Gem/SupportGemBarbs",
variantId = "BarbsSupport",
grantedEffectId = "SupportBarbsPlayer",
@@ -10776,6 +13946,7 @@ return {
strike = true,
},
gemType = "Support",
+ gemFamily = "Barbs",
tagString = "Attack, Melee, Strike",
reqStr = 100,
reqDex = 0,
@@ -10783,6 +13954,46 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemBarbsSupportTwo"] = {
+ name = "Barbs II",
+ gameId = "Metadata/Items/Gem/SupportGemBarbsTwo",
+ variantId = "BarbsSupportTwo",
+ grantedEffectId = "SupportBarbsPlayerTwo",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Barbs",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBarbsSupportThree"] = {
+ name = "Barbs III",
+ gameId = "Metadata/Items/Gem/SupportGemBarbsThree",
+ variantId = "BarbsSupportThree",
+ grantedEffectId = "SupportBarbsPlayerThree",
+ tags = {
+ support = true,
+ attack = true,
+ melee = true,
+ strike = true,
+ },
+ gemType = "Support",
+ gemFamily = "Barbs",
+ tagString = "Attack, Melee, Strike",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemRimeSupport"] = {
name = "Rime",
gameId = "Metadata/Items/Gem/SupportGemRime",
@@ -10793,11 +14004,12 @@ return {
cold = true,
},
gemType = "Support",
+ gemFamily = "Rime",
tagString = "Cold",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemArmsLengthSupport"] = {
@@ -10809,11 +14021,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Arms' Length",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCharmBountySupport"] = {
@@ -10825,15 +14038,16 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Bounty",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemThornskinSupport"] = {
- name = "Thornskin",
+ name = "Thornskin I",
gameId = "Metadata/Items/Gem/SupportGemThornskin",
variantId = "ThornskinSupport",
grantedEffectId = "SupportThornskinPlayer",
@@ -10843,6 +14057,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Thornskin",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -10850,8 +14065,27 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemThornskinSupportTwo"] = {
+ name = "Thornskin II",
+ gameId = "Metadata/Items/Gem/SupportGemThornskinTwo",
+ variantId = "ThornskinSupportTwo",
+ grantedEffectId = "SupportThornskinPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Thornskin",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemMysticismSupport"] = {
- name = "Mysticism",
+ name = "Mysticism I",
gameId = "Metadata/Items/Gem/SupportGemMysticism",
variantId = "MysticismSupport",
grantedEffectId = "SupportMysticismPlayer",
@@ -10861,6 +14095,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Mysticism",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 0,
@@ -10868,8 +14103,27 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemMysticismSupportTwo"] = {
+ name = "Mysticism II",
+ gameId = "Metadata/Items/Gem/SupportGemMysticismTwo",
+ variantId = "MysticismSupportTwo",
+ grantedEffectId = "SupportMysticismPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Mysticism",
+ tagString = "Buff, Persistent",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemDirestrikeSupport"] = {
- name = "Direstrike",
+ name = "Direstrike I",
gameId = "Metadata/Items/Gem/SupportGemDireStrike",
variantId = "DirestrikeSupport",
grantedEffectId = "SupportDirestrikePlayer",
@@ -10879,6 +14133,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Direstrike",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -10886,8 +14141,27 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemDirestrikeSupportTwo"] = {
+ name = "Direstrike II",
+ gameId = "Metadata/Items/Gem/SupportGemDireStrikeTwo",
+ variantId = "DirestrikeSupportTwo",
+ grantedEffectId = "SupportDirestrikePlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Direstrike",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemUpwellingSupport"] = {
- name = "Upwelling",
+ name = "Upwelling I",
gameId = "Metadata/Items/Gem/SupportGemUpwelling",
variantId = "UpwellingSupport",
grantedEffectId = "SupportUpwellingPlayer",
@@ -10897,6 +14171,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Upwellling",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 0,
@@ -10904,6 +14179,25 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemUpwellingSupportTwo"] = {
+ name = "Upwelling II",
+ gameId = "Metadata/Items/Gem/SupportGemUpwellingTwo",
+ variantId = "UpwellingSupportTwo",
+ grantedEffectId = "SupportUpwellingPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Upwellling",
+ tagString = "Buff, Persistent",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemWarmBloodedSupport"] = {
name = "Warm Blooded",
gameId = "Metadata/Items/Gem/SupportGemWarmBlooded",
@@ -10915,6 +14209,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Warm Blooded",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 100,
@@ -10933,6 +14228,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Cool Headed",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -10951,6 +14247,7 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Strong Hearted",
tagString = "Buff, Persistent",
reqStr = 0,
reqDex = 0,
@@ -10968,15 +14265,16 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Untouchable",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRefractionSupport"] = {
- name = "Refraction",
+ name = "Refraction I",
gameId = "Metadata/Items/Gem/SupportGemRefraction",
variantId = "RefractionSupport",
grantedEffectId = "SupportRefractionPlayer",
@@ -10986,6 +14284,26 @@ return {
persistent = true,
},
gemType = "Support",
+ gemFamily = "Refraction",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRefractionSupportTwo"] = {
+ name = "Refraction II",
+ gameId = "Metadata/Items/Gem/SupportGemRefractionTwo",
+ variantId = "RefractionSupportTwo",
+ grantedEffectId = "SupportRefractionPlayerTwo",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Refraction",
tagString = "Buff, Persistent",
reqStr = 100,
reqDex = 0,
@@ -10993,8 +14311,27 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemRefractionSupportThree"] = {
+ name = "Refraction III",
+ gameId = "Metadata/Items/Gem/SupportGemRefractionThree",
+ variantId = "RefractionSupportThree",
+ grantedEffectId = "SupportRefractionPlayerThree",
+ tags = {
+ support = true,
+ buff = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Refraction",
+ tagString = "Buff, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemGreatwoodSupport"] = {
- name = "Greatwood",
+ name = "Greatwood I",
gameId = "Metadata/Items/Gem/SupportGemGreatwood",
variantId = "GreatwoodSupport",
grantedEffectId = "SupportGreatwoodPlayer",
@@ -11003,6 +14340,7 @@ return {
totem = true,
},
gemType = "Support",
+ gemFamily = "Greatwood",
tagString = "Totem",
reqStr = 100,
reqDex = 0,
@@ -11010,6 +14348,24 @@ return {
Tier = 3,
naturalMaxLevel = 1,
},
+ ["Metadata/Items/Gems/SkillGemGreatwoodSupportTwo"] = {
+ name = "Greatwood II",
+ gameId = "Metadata/Items/Gem/SupportGemGreatwoodTwo",
+ variantId = "GreatwoodSupportTwo",
+ grantedEffectId = "SupportGreatwoodPlayerTwo",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Greatwood",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
["Metadata/Items/Gems/SkillGemUnabatingSupport"] = {
name = "Unabating",
gameId = "Metadata/Items/Gem/SupportGemUnabating",
@@ -11020,11 +14376,12 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Unabating",
tagString = "Attack",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPunchThroughSupport"] = {
@@ -11038,6 +14395,7 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Punch Through",
tagString = "Attack, Melee",
reqStr = 0,
reqDex = 100,
@@ -11059,6 +14417,7 @@ return {
remnant = true,
},
gemType = "Support",
+ gemFamily = "Rip",
tagString = "Attack, Melee, Physical, Duration, Remnant",
reqStr = 100,
reqDex = 0,
@@ -11078,6 +14437,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Tear",
tagString = "Attack, Melee, Physical",
reqStr = 100,
reqDex = 0,
@@ -11086,7 +14446,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemBrinkSupport"] = {
- name = "Brink",
+ name = "Brink I",
gameId = "Metadata/Items/Gem/SupportGemBrink",
variantId = "BrinkSupport",
grantedEffectId = "SupportBrinkPlayer",
@@ -11096,6 +14456,7 @@ return {
melee = true,
},
gemType = "Support",
+ gemFamily = "Brink",
tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
@@ -11103,21 +14464,41 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemTirelessSupport"] = {
- name = "Tireless",
- gameId = "Metadata/Items/Gem/SupportGemTireless",
- variantId = "TirelessSupport",
- grantedEffectId = "SupportTirelessPlayer",
+ ["Metadata/Items/Gems/SkillGemBrinkSupportTwo"] = {
+ name = "Brink II",
+ gameId = "Metadata/Items/Gem/SupportGemBrinkTwo",
+ variantId = "BrinkSupportTwo",
+ grantedEffectId = "SupportBrinkPlayerTwo",
tags = {
support = true,
- warcry = true,
+ attack = true,
+ melee = true,
},
gemType = "Support",
- tagString = "Warcry",
+ gemFamily = "Brink",
+ tagString = "Attack, Melee",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemTirelessSupport"] = {
+ name = "Tireless",
+ gameId = "Metadata/Items/Gem/SupportGemTireless",
+ variantId = "TirelessSupport",
+ grantedEffectId = "SupportTirelessPlayer",
+ tags = {
+ support = true,
+ warcry = true,
+ },
+ gemType = "Support",
+ gemFamily = "Tireless",
+ tagString = "Warcry",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 1,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemVolcanicEruptionSupport"] = {
@@ -11138,11 +14519,12 @@ return {
fire = true,
},
gemType = "Support",
+ gemFamily = "Volcanic Eruption",
tagString = "Attack, AoE, Melee, Strike, Projectile, Trigger, Fire",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 2,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemFirstBloodSupport"] = {
@@ -11156,23 +14538,25 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "First Blood",
tagString = "Attack, Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemRetortSupport"] = {
- name = "Retort",
+ ["Metadata/Items/Gems/SkillGemFrenziedRiposteSupport"] = {
+ name = "Frenzied Riposte",
gameId = "Metadata/Items/Gem/SupportGemRetort",
- variantId = "RetortSupport",
- grantedEffectId = "SupportRetortPlayer",
+ variantId = "FrenziedRiposteSupport",
+ grantedEffectId = "SupportFrenziedRipostePlayer",
tags = {
support = true,
attack = true,
},
gemType = "Support",
+ gemFamily = "Retort",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
@@ -11180,32 +14564,34 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemBloodInTheEyesSupport"] = {
- name = "Blood in the Eyes",
+ ["Metadata/Items/Gems/SkillGemHobbleSupport"] = {
+ name = "Hobble",
gameId = "Metadata/Items/Gem/SupportGemBloodintheEyes",
- variantId = "BloodInTheEyesSupport",
- grantedEffectId = "SupportBloodInTheEyesPlayer",
+ variantId = "HobbleSupport",
+ grantedEffectId = "SupportHobblePlayer",
tags = {
support = true,
physical = true,
},
gemType = "Support",
+ gemFamily = "Hobble",
tagString = "Physical",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemTwofoldSupport"] = {
- name = "Twofold",
+ ["Metadata/Items/Gems/SkillGemHeightenedChargesSupport"] = {
+ name = "Heightened Charges",
gameId = "Metadata/Items/Gem/SupportGemTwofold",
- variantId = "TwofoldSupport",
- grantedEffectId = "SupportTwofoldPlayer",
+ variantId = "HeightenedChargesSupport",
+ grantedEffectId = "SupportHeightenedChargesPlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Twofold",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -11224,11 +14610,12 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Incision",
tagString = "Attack, Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemCatharsisSupport"] = {
@@ -11243,6 +14630,7 @@ return {
conditional = true,
},
gemType = "Support",
+ gemFamily = "Catharsis",
tagString = "Physical, Chaos, Conditional",
reqStr = 0,
reqDex = 0,
@@ -11259,6 +14647,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Delayed Gratification",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -11276,6 +14665,7 @@ return {
minion = true,
},
gemType = "Support",
+ gemFamily = "Loyalty",
tagString = "Minion",
reqStr = 0,
reqDex = 0,
@@ -11284,7 +14674,7 @@ return {
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemRearmSupport"] = {
- name = "Rearm",
+ name = "Rearm I",
gameId = "Metadata/Items/Gem/SupportGemRearm",
variantId = "RearmSupport",
grantedEffectId = "SupportRearmPlayer",
@@ -11293,11 +14683,30 @@ return {
hazard = true,
},
gemType = "Support",
+ gemFamily = "Rearm",
tagString = "Hazard",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRearmSupportTwo"] = {
+ name = "Rearm II",
+ gameId = "Metadata/Items/Gem/SupportGemRearmTwo",
+ variantId = "RearmSupportTwo",
+ grantedEffectId = "SupportRearmPlayerTwo",
+ tags = {
+ support = true,
+ hazard = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rearm",
+ tagString = "Hazard",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDelayedReactionSupport"] = {
@@ -11310,11 +14719,12 @@ return {
hazard = true,
},
gemType = "Support",
+ gemFamily = "Delayed Reaction",
tagString = "Hazard",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemVolatilePowerSupport"] = {
@@ -11328,11 +14738,12 @@ return {
chaos = true,
},
gemType = "Support",
+ gemFamily = "Volatile Power",
tagString = "Physical, Chaos",
reqStr = 0,
reqDex = 0,
reqInt = 100,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemGambleshotSupport"] = {
@@ -11345,6 +14756,7 @@ return {
projectile = true,
},
gemType = "Support",
+ gemFamily = "Gambleshot",
tagString = "Projectile",
reqStr = 0,
reqDex = 100,
@@ -11362,11 +14774,12 @@ return {
attack = true,
},
gemType = "Support",
+ gemFamily = "Unerring Power",
tagString = "Attack",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 2,
+ Tier = 0,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemImpaleSupport"] = {
@@ -11380,11 +14793,12 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Impale",
tagString = "Attack, Physical",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemPerfectionSupport"] = {
@@ -11396,11 +14810,12 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Perfection",
tagString = "",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 3,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemDeliberationSupport"] = {
@@ -11412,6 +14827,7 @@ return {
support = true,
},
gemType = "Support",
+ gemFamily = "Deliberation",
tagString = "",
reqStr = 0,
reqDex = 100,
@@ -11430,27 +14846,46 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "See Red",
tagString = "Attack, Physical",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 3,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemExpediteSupport"] = {
- name = "Expedite",
+ ["Metadata/Items/Gems/SkillGemShortFuseSupport"] = {
+ name = "Short Fuse I",
gameId = "Metadata/Items/Gem/SupportGemExpedite",
- variantId = "ExpediteSupport",
- grantedEffectId = "SupportExpeditePlayer",
+ variantId = "ShortFuseSupport",
+ grantedEffectId = "SupportShortFusePlayer",
tags = {
support = true,
},
gemType = "Support",
+ gemFamily = "Short Fuse",
tagString = "",
reqStr = 100,
reqDex = 0,
reqInt = 0,
- Tier = 1,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemShortFuseSupportTwo"] = {
+ name = "Short Fuse II",
+ gameId = "Metadata/Items/Gem/SupportGemExpediteTwo",
+ variantId = "ShortFuseSupportTwo",
+ grantedEffectId = "SupportShortFusePlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Short Fuse",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
naturalMaxLevel = 1,
},
["Metadata/Items/Gems/SkillGemUndermineSupport"] = {
@@ -11463,6 +14898,7 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Undermine",
tagString = "Physical",
reqStr = 100,
reqDex = 0,
@@ -11480,24 +14916,26 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Outmaneuver",
tagString = "Physical",
reqStr = 0,
reqDex = 100,
reqInt = 0,
- Tier = 1,
+ Tier = 0,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemSingleOutSupport"] = {
- name = "Single Out",
+ ["Metadata/Items/Gems/SkillGemMarkForDeathSupport"] = {
+ name = "Mark for Death",
gameId = "Metadata/Items/Gem/SupportGemSingleOut",
- variantId = "SingleOutSupport",
- grantedEffectId = "SupportSingleOutPlayer",
+ variantId = "MarkForDeathSupport",
+ grantedEffectId = "SupportMarkForDeathPlayer",
tags = {
support = true,
mark = true,
physical = true,
},
gemType = "Support",
+ gemFamily = "Single Out",
tagString = "Mark, Physical",
reqStr = 0,
reqDex = 100,
@@ -11515,23 +14953,120 @@ return {
physical = true,
},
gemType = "Support",
+ gemFamily = "Tumult",
tagString = "Physical",
reqStr = 0,
reqDex = 100,
reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAdmixtureSupport"] = {
+ name = "Admixture",
+ gameId = "Metadata/Items/Gem/SupportGemAdmixture",
+ variantId = "AdmixtureSupport",
+ grantedEffectId = "SupportAdmixturePlayer",
+ tags = {
+ support = true,
+ physical = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Admixture",
+ tagString = "Physical, Chaos",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemStoicismSupport"] = {
+ name = "Stoicism I",
+ gameId = "Metadata/Items/Gem/SupportGemStoicism",
+ variantId = "StoicismSupport",
+ grantedEffectId = "SupportStoicismPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Stoicism",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
Tier = 3,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemInhibitorSupport"] = {
+ ["Metadata/Items/Gems/SkillGemStoicismSupportTwo"] = {
+ name = "Stoicism II",
+ gameId = "Metadata/Items/Gem/SupportGemStoicismTwo",
+ variantId = "StoicismSupportTwo",
+ grantedEffectId = "SupportStoicismPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Stoicism",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRelentlessRageSupport"] = {
+ name = "Relentless Rage",
+ gameId = "Metadata/Items/Gem/SupportGemGrudge",
+ variantId = "RelentlessRageSupport",
+ grantedEffectId = "SupportRelentlessRagePlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Grudge",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemBrambleslamSupport"] = {
+ name = "Brambleslam",
+ gameId = "Metadata/Items/Gem/SupportGemBrambleslam",
+ variantId = "BrambleslamSupport",
+ grantedEffectId = "SupportBrambleslamPlayer",
+ additionalGrantedEffectId1 = "TriggeredBrambleslamPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ melee = true,
+ slam = true,
+ physical = true,
+ hazard = true,
+ },
+ gemType = "Support",
+ gemFamily = "Brambleslam",
+ tagString = "Attack, AoE, Melee, Slam, Physical, Hazard",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 5,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemChargeInhibitionSupport"] = {
name = "Inhibitor",
gameId = "Metadata/Items/Gem/SupportGemInhibitor",
- variantId = "InhibitorSupport",
- grantedEffectId = "SupportInhibitorPlayer",
+ variantId = "ChargeInhibitionSupport",
+ grantedEffectId = "SupportChargeInhibitionPlayer",
tags = {
support = true,
spell = true,
},
gemType = "Support",
+ gemFamily = "Inhibitor",
tagString = "Spell",
reqStr = 0,
reqDex = 100,
@@ -11539,16 +15074,76 @@ return {
Tier = 2,
naturalMaxLevel = 1,
},
- ["Metadata/Items/Gems/SkillGemSuffuseSupport"] = {
- name = "Suffuse",
+ ["Metadata/Items/Gems/SkillGemHardyTotemsSupport"] = {
+ name = "Hardy Totems I",
+ gameId = "Metadata/Items/Gem/SupportGemHardyTotems",
+ variantId = "HardyTotemsSupport",
+ grantedEffectId = "SupportHardyTotemsPlayer",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Hardy Totems",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemHardyTotemsSupportTwo"] = {
+ name = "Hardy Totems II",
+ gameId = "Metadata/Items/Gem/SupportGemHardyTotemsTwo",
+ variantId = "HardyTotemsSupportTwo",
+ grantedEffectId = "SupportHardyTotemsPlayerTwo",
+ tags = {
+ support = true,
+ totem = true,
+ },
+ gemType = "Support",
+ gemFamily = "Hardy Totems",
+ tagString = "Totem",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemHardyTotemsSupportThree"] = {
+ name = "Tawhoa's Tending",
+ gameId = "Metadata/Items/Gem/SupportGemHardyTotemsThree",
+ variantId = "HardyTotemsSupportThree",
+ grantedEffectId = "SupportHardyTotemsPlayerThree",
+ additionalGrantedEffectId1 = "TriggeredSplinterExplosionHardyTotems",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ lineage = true,
+ totem = true,
+ area = true,
+ physical = true,
+ },
+ gemType = "Support",
+ gemFamily = "Hardy Totems",
+ tagString = "Lineage, Totem, AoE, Physical",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemEncroachingGroundSupport"] = {
+ name = "Encroaching Ground",
gameId = "Metadata/Items/Gem/SupportGemSuffuse",
- variantId = "SuffuseSupport",
- grantedEffectId = "SupportSuffusePlayer",
+ variantId = "EncroachingGroundSupport",
+ grantedEffectId = "SupportEncroachingGroundPlayer",
tags = {
support = true,
area = true,
},
gemType = "Support",
+ gemFamily = "Encroaching Ground",
tagString = "AoE",
reqStr = 0,
reqDex = 0,
@@ -11565,13 +15160,12 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
lightning = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Lightning",
+ gemType = "Spell",
+ tagString = "AoE, Lightning",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -11588,14 +15182,14 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Duration, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -11686,7 +15280,6 @@ return {
variantId = "WindSerpentsFury",
grantedEffectId = "WindSerpentsFuryPlayer",
additionalStatSet1 = "WindSerpentsFurySnakePlayer",
- additionalStatSet2 = "WindSerpentsFuryKnockbackExplosionPlayer",
tags = {
dexterity = true,
grants_active_skill = true,
@@ -11719,10 +15312,9 @@ return {
melee = true,
strike = true,
physical = true,
- travel = true,
},
gemType = "Attack",
- tagString = "AoE, Melee, Strike, Physical, Travel",
+ tagString = "AoE, Melee, Strike, Physical",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -11738,20 +15330,17 @@ return {
grantedEffectId = "BloodhoundsMarkPlayer",
additionalGrantedEffectId1 = "BloodhoundsMarkExplosionPlayer",
tags = {
+ mark = true,
dexterity = true,
grants_active_skill = true,
- barrageable = true,
- spell = true,
attack = true,
area = true,
- mark = true,
physical = true,
duration = true,
- nova = true,
payoff = true,
},
- gemType = "Barrageable",
- tagString = "Spell, Attack, AoE, Mark, Physical, Duration, Nova, Payoff",
+ gemType = "Mark",
+ tagString = "Attack, AoE, Physical, Duration, Payoff",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -11819,16 +15408,16 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
attack = true,
area = true,
projectile = true,
sustained = true,
lightning = true,
duration = true,
+ barrageable = true,
},
- gemType = "Barrageable",
- tagString = "Attack, AoE, Projectile, Sustained, Lightning, Duration",
+ gemType = "Attack",
+ tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable",
weaponRequirements = "Spear",
reqStr = 0,
reqDex = 100,
@@ -11897,13 +15486,12 @@ return {
tags = {
dexterity = true,
grants_active_skill = true,
- barrageable = true,
minion = true,
companion = true,
persistent = true,
},
- gemType = "Barrageable",
- tagString = "Minion, Companion, Persistent",
+ gemType = "Minion",
+ tagString = "Companion, Persistent",
reqStr = 0,
reqDex = 100,
reqInt = 0,
@@ -11940,6 +15528,7 @@ return {
grantedEffectId = "TrinityPlayer",
tags = {
dexterity = true,
+ intelligence = true,
grants_active_skill = true,
buff = true,
persistent = true,
@@ -11950,8 +15539,8 @@ return {
gemType = "Buff",
tagString = "Persistent, Lightning, Cold, Fire",
reqStr = 0,
- reqDex = 100,
- reqInt = 0,
+ reqDex = 50,
+ reqInt = 50,
Tier = 14,
naturalMaxLevel = 20,
},
@@ -11982,14 +15571,14 @@ return {
Tier = 8,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemAscendancyTriggerElementalInfusion"] = {
- name = "Infuse Weapon",
- baseTypeName = "Infuse Weapon",
+ ["Metadata/Items/Gems/SkillGemAscendancyTriggerElementalSurge"] = {
+ name = "Elemental Surge",
+ baseTypeName = "Elemental Surge",
gameId = "Metadata/Items/Gem/SkillGemAscendancyInfuseWeapon",
- variantId = "AscendancyTriggerElementalInfusion",
- grantedEffectId = "AmazonTriggerElementalInfusionPlayer",
- additionalStatSet1 = "AmazonTriggerFireInfusionPlayer",
- additionalStatSet2 = "AmazonTriggerLightningInfusionPlayer",
+ variantId = "AscendancyTriggerElementalSurge",
+ grantedEffectId = "AmazonTriggerElementalSurgePlayer",
+ additionalStatSet1 = "AmazonTriggerFireSurgePlayer",
+ additionalStatSet2 = "AmazonTriggerLightningSurgePlayer",
tags = {
grants_active_skill = true,
attack = true,
@@ -12006,26 +15595,6 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
- ["Metadata/Items/Gems/SkillGemChaosSpearTriggerChaosInfusion"] = {
- name = "Chaotic Infusion",
- baseTypeName = "Chaotic Infusion",
- gameId = "Metadata/Items/Gem/SkillGemChaoticInfusion",
- variantId = "ChaosSpearTriggerChaosInfusion",
- grantedEffectId = "ChaosSpearTriggerChaosInfusionPlayer",
- tags = {
- grants_active_skill = true,
- attack = true,
- area = true,
- chaos = true,
- },
- gemType = "Attack",
- tagString = "AoE, Chaos",
- reqStr = 0,
- reqDex = 0,
- reqInt = 0,
- Tier = 0,
- naturalMaxLevel = 20,
- },
["Metadata/Items/Gems/SkillGemCastLightningSpellOnHit"] = {
name = "Thundergod's Wrath",
baseTypeName = "Thundergod's Wrath",
@@ -12074,6 +15643,30 @@ return {
Tier = 4,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemGeminiSurge"] = {
+ name = "Gemini Surge",
+ baseTypeName = "Gemini Surge",
+ gameId = "Metadata/Items/Gem/SkillGemGeminiSurge",
+ variantId = "GeminiSurge",
+ grantedEffectId = "GeminiSurgePlayer",
+ additionalStatSet1 = "GeminiSurgeFirePlayer",
+ tags = {
+ strength = true,
+ dexterity = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ cold = true,
+ fire = true,
+ },
+ gemType = "Attack",
+ tagString = "AoE, Cold, Fire",
+ reqStr = 50,
+ reqDex = 50,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemExplodingPoisonToad"] = {
name = "Bursting Fen Toad",
baseTypeName = "Bursting Fen Toad",
@@ -12095,6 +15688,30 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemIronWard"] = {
+ name = "Iron Ward",
+ baseTypeName = "Iron Ward",
+ gameId = "Metadata/Items/Gem/SkillGemIronWard",
+ variantId = "IronWard",
+ grantedEffectId = "IronWardPlayer",
+ additionalGrantedEffectId1 = "IronWardNovaPlayer",
+ tags = {
+ strength = true,
+ grants_active_skill = true,
+ buff = true,
+ persistent = true,
+ area = true,
+ physical = true,
+ nova = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, AoE, Physical, Nova",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 20,
+ },
["Metadata/Items/Gems/SkillGemIcestorm"] = {
name = "Icestorm",
baseTypeName = "Icestorm",
@@ -12105,7 +15722,6 @@ return {
tags = {
intelligence = true,
grants_active_skill = true,
- barrageable = true,
spell = true,
area = true,
sustained = true,
@@ -12113,8 +15729,8 @@ return {
duration = true,
payoff = true,
},
- gemType = "Barrageable",
- tagString = "Spell, AoE, Sustained, Cold, Duration, Payoff",
+ gemType = "Spell",
+ tagString = "AoE, Sustained, Cold, Duration, Payoff",
reqStr = 0,
reqDex = 0,
reqInt = 100,
@@ -12195,4 +15811,1001 @@ return {
Tier = 0,
naturalMaxLevel = 20,
},
+ ["Metadata/Items/Gems/SkillGemLivingLightningSupport"] = {
+ name = "Living Lightning",
+ gameId = "Metadata/Items/Gem/SupportGemLivingLightning",
+ variantId = "LivingLightningSupport",
+ grantedEffectId = "SupportLivingLightningPlayer",
+ additionalGrantedEffectId1 = "TriggeredLivingLightningPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ minion = true,
+ lightning = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Living Lightning",
+ tagString = "Minion, Lightning, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemLivingLightningSupportTwo"] = {
+ name = "Living Lightning II",
+ gameId = "Metadata/Items/Gem/SupportGemLivingLightningTwo",
+ variantId = "LivingLightningSupportTwo",
+ grantedEffectId = "SupportLivingLightningPlayerTwo",
+ additionalGrantedEffectId1 = "TriggeredLivingLightningPlayerTwo",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ minion = true,
+ lightning = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Living Lightning",
+ tagString = "Minion, Lightning, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFrozenSpiteSupport"] = {
+ name = "Frozen Spite",
+ gameId = "Metadata/Items/Gem/SupportGemFrozenSpite",
+ variantId = "FrozenSpiteSupport",
+ grantedEffectId = "SupportFrozenSpitePlayer",
+ additionalGrantedEffectId1 = "TriggeredSupportFrozenSpiteIceFragmentPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ area = true,
+ projectile = true,
+ cold = true,
+ },
+ gemType = "Support",
+ gemFamily = "Frozen Spite",
+ tagString = "AoE, Projectile, Cold",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPietysMercySupport"] = {
+ name = "Piety's Mercy",
+ gameId = "Metadata/Items/Gem/SupportGemPietysMercy",
+ variantId = "PietysMercySupport",
+ grantedEffectId = "SupportPietysMercyPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Piety's Mercy",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemFlamePillarSupport"] = {
+ name = "Flame Pillar",
+ gameId = "Metadata/Items/Gem/SupportGemFlamePillar",
+ variantId = "FlamePillarSupport",
+ grantedEffectId = "SupportFlamePillarPlayer",
+ additionalGrantedEffectId1 = "TriggeredFlamePillarPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ area = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Flame Pillar",
+ tagString = "AoE, Fire",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemStreamlinedRoundsSupport"] = {
+ name = "Streamlined Rounds",
+ gameId = "Metadata/Items/Gem/SupportGemStreamlinedRounds",
+ variantId = "StreamlinedRoundsSupport",
+ grantedEffectId = "SupportStreamlinedRoundsPlayer",
+ tags = {
+ support = true,
+ ammunition = true,
+ projectile = true,
+ },
+ gemType = "Support",
+ gemFamily = "Streamlined Rounds",
+ tagString = "Ammunition, Projectile",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemPerfectEnduranceSupport"] = {
+ name = "Perfected Endurance",
+ gameId = "Metadata/Items/Gem/SupportGemPerfectedEndurance",
+ variantId = "PerfectEnduranceSupport",
+ grantedEffectId = "SupportPerfectEndurancePlayer",
+ tags = {
+ support = true,
+ channelling = true,
+ },
+ gemType = "Support",
+ gemFamily = "Perfected Endurance",
+ tagString = "Channelling",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemHeavyStunEnduranceSupportOne"] = {
+ name = "Enduring Impact I",
+ gameId = "Metadata/Items/Gem/SupportGemEnduringImpact",
+ variantId = "HeavyStunEnduranceSupportOne",
+ grantedEffectId = "SupportHeavyStunEndurancePlayerOne",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Enduring Impact",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemHeavyStunEnduranceSupportTwo"] = {
+ name = "Enduring Impact II",
+ gameId = "Metadata/Items/Gem/SupportGemEnduringImpactTwo",
+ variantId = "HeavyStunEnduranceSupportTwo",
+ grantedEffectId = "SupportHeavyStunEndurancePlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Enduring Impact",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCraterSupport"] = {
+ name = "Crater",
+ gameId = "Metadata/Items/Gem/SupportGemCrater",
+ variantId = "CraterSupport",
+ grantedEffectId = "SupportCraterPlayer",
+ additionalGrantedEffectId1 = "TriggeredCraterPlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ melee = true,
+ fire = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Crater",
+ tagString = "Attack, AoE, Melee, Fire, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemVanguardSupport"] = {
+ name = "Vanguard I",
+ gameId = "Metadata/Items/Gem/SupportGemVanguard",
+ variantId = "VanguardSupport",
+ grantedEffectId = "SupportVanguardPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Vanguard",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemVanguardSupportTwo"] = {
+ name = "Vanguard II",
+ gameId = "Metadata/Items/Gem/SupportGemVanguardTwo",
+ variantId = "VanguardSupportTwo",
+ grantedEffectId = "SupportVanguardPlayerTwo",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Vanguard",
+ tagString = "",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemCrystallineShardsSupport"] = {
+ name = "Crystalline Shards",
+ gameId = "Metadata/Items/Gem/SupportGemCrystallineShards",
+ variantId = "CrystallineShardsSupport",
+ grantedEffectId = "SupportCrystallineShardsPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Crystalline Shards",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 1,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSkitteringStoneSupport"] = {
+ name = "Skittering Stone I",
+ gameId = "Metadata/Items/Gem/SupportGemSkitteringStone",
+ variantId = "SkitteringStoneSupport",
+ grantedEffectId = "SupportSkitteringStonePlayer",
+ additionalGrantedEffectId1 = "TriggeredSkitteringStonePlayer",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ minion = true,
+ physical = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Skittering Stone",
+ tagString = "Minion, Physical, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemSkitteringStoneSupportTwo"] = {
+ name = "Skittering Stone II",
+ gameId = "Metadata/Items/Gem/SupportGemSkitteringStoneTwo",
+ variantId = "SkitteringStoneSupportTwo",
+ grantedEffectId = "SupportSkitteringStonePlayerTwo",
+ additionalGrantedEffectId1 = "TriggeredSkitteringStonePlayerTwo",
+ tags = {
+ support = true,
+ grants_active_skill = true,
+ minion = true,
+ physical = true,
+ duration = true,
+ },
+ gemType = "Support",
+ gemFamily = "Skittering Stone",
+ tagString = "Minion, Physical, Duration",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 4,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDiallasDesireSupport"] = {
+ name = "Dialla's Desire",
+ gameId = "Metadata/Items/Gem/SupportGemDiallasDesire",
+ variantId = "DiallasDesireSupport",
+ grantedEffectId = "SupportDiallasDesirePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Dialla's Desire",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemKalisasCrescendoSupport"] = {
+ name = "Kalisa's Crescendo",
+ gameId = "Metadata/Items/Gem/SupportGemKalisasCrescendo",
+ variantId = "KalisasCrescendoSupport",
+ grantedEffectId = "SupportKalisasCrescendoPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Kalisa's Crescendo",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDurabilitySupport"] = {
+ name = "Durability",
+ gameId = "Metadata/Items/Gem/SupportGemDurability",
+ variantId = "DurabilitySupport",
+ grantedEffectId = "SupportDurabilityPlayer",
+ tags = {
+ support = true,
+ },
+ gemType = "Support",
+ gemFamily = "Durability",
+ tagString = "",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 2,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemXophsPyreSupport"] = {
+ name = "Xoph's Pyre",
+ gameId = "Metadata/Items/Gem/SupportGemXophsPyre",
+ variantId = "XophsPyreSupport",
+ grantedEffectId = "SupportXophsPyrePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Breachlord",
+ tagString = "Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemEshsRadianceSupport"] = {
+ name = "Esh's Radiance",
+ gameId = "Metadata/Items/Gem/SupportGemEshsRadiance",
+ variantId = "EshsRadianceSupport",
+ grantedEffectId = "SupportEshsRadiancePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Breachlord",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemTulsStillnessSupport"] = {
+ name = "Tul's Stillness",
+ gameId = "Metadata/Items/Gem/SupportGemTulsStillness",
+ variantId = "TulsStillnessSupport",
+ grantedEffectId = "SupportTulsStillnessPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Breachlord",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUulNetolsEmbraceSupport"] = {
+ name = "Uul-Netol's Embrace",
+ gameId = "Metadata/Items/Gem/SupportGemUulNetolsEmbrace",
+ variantId = "UulNetolsEmbraceSupport",
+ grantedEffectId = "SupportUulNetolsEmbracePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Breachlord",
+ tagString = "Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRakiatasFlowSupport"] = {
+ name = "Rakiata's Flow",
+ gameId = "Metadata/Items/Gem/SupportGemRakiatasFlow",
+ variantId = "RakiatasFlowSupport",
+ grantedEffectId = "SupportRakiatasFlowPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rakiata's Flow",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemRigwaldsFerocitySupport"] = {
+ name = "Rigwald's Ferocity",
+ gameId = "Metadata/Items/Gem/SupportGemRigwaldsFerocity",
+ variantId = "RigwaldsFerocitySupport",
+ grantedEffectId = "SupportRigwaldsFerocityPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ attack = true,
+ },
+ gemType = "Support",
+ gemFamily = "Rigwald's Ferocity",
+ tagString = "Lineage, Attack",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUhtredExodusSupport"] = {
+ name = "Uhtred's Exodus",
+ gameId = "Metadata/Items/Gem/SupportGemUhtredsExodus",
+ variantId = "UhtredExodusSupport",
+ grantedEffectId = "SupportUhtredExodusPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Uhtred of Kalguur",
+ tagString = "Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUhtredOmenSupport"] = {
+ name = "Uhtred's Omen",
+ gameId = "Metadata/Items/Gem/SupportGemUhtredsOmen",
+ variantId = "UhtredOmenSupport",
+ grantedEffectId = "SupportUhtredOmenPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Uhtred of Kalguur",
+ tagString = "Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemUhtredAugurySupport"] = {
+ name = "Uhtred's Augury",
+ gameId = "Metadata/Items/Gem/SupportGemUhtredsAugury",
+ variantId = "UhtredAugurySupport",
+ grantedEffectId = "SupportUhtredAuguryPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Uhtred of Kalguur",
+ tagString = "Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemDaressosPassionSupport"] = {
+ name = "Daresso's Passion",
+ gameId = "Metadata/Items/Gem/SupportGemDaressosPassion",
+ variantId = "DaressosPassionSupport",
+ grantedEffectId = "SupportDaressosPassionPlayer",
+ tags = {
+ support = true,
+ banner = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Daresso's Passion",
+ tagString = "Banner, Lineage",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAtzirisAllureSupport"] = {
+ name = "Atziri's Allure",
+ gameId = "Metadata/Items/Gem/SupportGemAtzirisAllure",
+ variantId = "AtzirisAllureSupport",
+ grantedEffectId = "SupportAtzirisAllurePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ curse = true,
+ },
+ gemType = "Support",
+ gemFamily = "Atziri's Allure",
+ tagString = "Lineage, Curse",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemTacatisIreSupport"] = {
+ name = "Tacati's Ire",
+ gameId = "Metadata/Items/Gem/SupportGemTacatisIre",
+ variantId = "TacatisIreSupport",
+ grantedEffectId = "SupportTacatisIrePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ chaos = true,
+ },
+ gemType = "Support",
+ gemFamily = "Tacati's Ire",
+ tagString = "Lineage, Chaos",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemZarokhsRefrainSupport"] = {
+ name = "Zarokh's Refrain",
+ gameId = "Metadata/Items/Gem/SupportGemZarokhsRefrain",
+ variantId = "ZarokhsRefrainSupport",
+ grantedEffectId = "SupportZarokhsRefrainPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ spell = true,
+ area = true,
+ },
+ gemType = "Support",
+ gemFamily = "Spell Echo",
+ tagString = "Lineage, Spell, AoE",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemGarukhansResolveSupport"] = {
+ name = "Garukhan's Resolve",
+ gameId = "Metadata/Items/Gem/SupportGemGarukhansResolve",
+ variantId = "GarukhansResolveSupport",
+ grantedEffectId = "SupportGarukhansResolvePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ attack = true,
+ conditional = true,
+ },
+ gemType = "Support",
+ gemFamily = "Hit and Run",
+ tagString = "Lineage, Attack, Conditional",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemKurgalsLeashSupport"] = {
+ name = "Kurgal's Leash",
+ gameId = "Metadata/Items/Gem/SupportGemKurgalsLeash",
+ variantId = "KurgalsLeashSupport",
+ grantedEffectId = "SupportKurgalsLeashPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Blackblood",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemKulemaksDominionSupport"] = {
+ name = "Kulemak's Dominion",
+ gameId = "Metadata/Items/Gem/SupportGemKulemaksDominion",
+ variantId = "KulemaksDominionSupport",
+ grantedEffectId = "SupportKulemaksDominionPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Kulemak's Dominion",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemAmanamusTitheSupport"] = {
+ name = "Amanamu's Tithe",
+ gameId = "Metadata/Items/Gem/SupportGemAmanamusTithe",
+ variantId = "AmanamusTitheSupport",
+ grantedEffectId = "SupportAmanamusTithePlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ minion = true,
+ persistent = true,
+ },
+ gemType = "Support",
+ gemFamily = "Amanamu's Tithe",
+ tagString = "Lineage, Minion, Persistent",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemVarashtasBlessingSupport"] = {
+ name = "Varashta's Blessing",
+ gameId = "Metadata/Items/Gem/SupportGemVarashtasBlessing",
+ variantId = "VarashtasBlessingSupport",
+ grantedEffectId = "SupportVarashtasBlessingPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Varashta's Blessing",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemArbitersIngitionSupport"] = {
+ name = "Arbiter's Ignition",
+ gameId = "Metadata/Items/Gem/SupportGemArbitersIgnition",
+ variantId = "ArbitersIngitionSupport",
+ grantedEffectId = "SupportArbitersIgnitionPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ spell = true,
+ fire = true,
+ },
+ gemType = "Support",
+ gemFamily = "Arbiter's Ignition",
+ tagString = "Lineage, Spell, Fire",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemArakaalisLustSupport"] = {
+ name = "Arakaali's Lust",
+ gameId = "Metadata/Items/Gem/SupportGemArakaalisLust",
+ variantId = "ArakaalisLustSupport",
+ grantedEffectId = "SupportArakaalisLustPlayer",
+ tags = {
+ support = true,
+ lineage = true,
+ },
+ gemType = "Support",
+ gemFamily = "Arakaali's Lust",
+ tagString = "Lineage",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 1,
+ },
+ ["Metadata/Items/Gems/SkillGemForgeHammer"] = {
+ name = "Forge Hammer",
+ baseTypeName = "Forge Hammer",
+ gameId = "Metadata/Items/Gem/SkillGemForgeHammer",
+ variantId = "ForgeHammer",
+ grantedEffectId = "ForgeHammerPlayer",
+ additionalStatSet1 = "ForgeHammerFissurePlayer",
+ additionalStatSet2 = "ForgeHammerRecallPlayer",
+ tags = {
+ strength = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ melee = true,
+ slam = true,
+ sustained = true,
+ fire = true,
+ duration = true,
+ },
+ gemType = "Attack",
+ tagString = "AoE, Melee, Slam, Sustained, Fire, Duration",
+ weaponRequirements = "One Hand Mace, Two Hand Mace",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 9,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemFulmination"] = {
+ name = "Fulmination",
+ baseTypeName = "Fulmination",
+ gameId = "Metadata/Items/Gem/SkillGemFulmination",
+ variantId = "Fulmination",
+ grantedEffectId = "FulminationPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ buff = true,
+ persistent = true,
+ aura = true,
+ lightning = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, Aura, Lightning",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemMortarCannon"] = {
+ name = "Mortar Cannon",
+ baseTypeName = "Mortar Cannon",
+ gameId = "Metadata/Items/Gem/SkillGemMortarCannon",
+ variantId = "MortarCannon",
+ grantedEffectId = "MetaMortarCannonPlayer",
+ additionalGrantedEffectId1 = "SupportMortarCannonPlayer",
+ tags = {
+ strength = true,
+ dexterity = true,
+ grants_active_skill = true,
+ totem = true,
+ grenade = true,
+ duration = true,
+ meta = true,
+ },
+ gemType = "Totem",
+ tagString = "Grenade, Duration, Meta",
+ weaponRequirements = "Crossbow",
+ reqStr = 50,
+ reqDex = 50,
+ reqInt = 0,
+ Tier = 11,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemAncestralCry"] = {
+ name = "Ancestral Cry",
+ baseTypeName = "Ancestral Cry",
+ gameId = "Metadata/Items/Gem/SkillGemAncestralCry",
+ variantId = "AncestralCry",
+ grantedEffectId = "AncestralCryPlayer",
+ additionalGrantedEffectId1 = "AncestralCryShockwavePlayer",
+ additionalGrantedEffectId2 = "AncestralCryProjectilePlayer",
+ tags = {
+ warcry = true,
+ strength = true,
+ grants_active_skill = true,
+ attack = true,
+ buff = true,
+ area = true,
+ melee = true,
+ slam = true,
+ projectile = true,
+ trigger = true,
+ fire = true,
+ duration = true,
+ nova = true,
+ conditional = true,
+ },
+ gemType = "Warcry",
+ tagString = "Attack, Buff, AoE, Melee, Slam, Projectile, Trigger, Fire, Duration, Nova, Conditional",
+ weaponRequirements = "Any Melee Martial Weapon or Unarmed",
+ reqStr = 100,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 13,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemFeastOfFlesh"] = {
+ name = "Feast of Flesh",
+ baseTypeName = "Feast of Flesh",
+ gameId = "Metadata/Items/Gem/SkillGemFeastOfFlesh",
+ variantId = "FeastOfFlesh",
+ grantedEffectId = "FeastOfFleshPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ spell = true,
+ buff = true,
+ area = true,
+ nova = true,
+ },
+ gemType = "Spell",
+ tagString = "Buff, AoE, Nova",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemToxicDomain"] = {
+ name = "Toxic Domain",
+ baseTypeName = "Toxic Domain",
+ gameId = "Metadata/Items/Gem/SkillGemToxicDomain",
+ variantId = "ToxicDomain",
+ grantedEffectId = "ToxicDomainPlayer",
+ additionalStatSet1 = "ToxicDomainPustuleExplosion",
+ tags = {
+ buff = true,
+ dexterity = true,
+ grants_active_skill = true,
+ attack = true,
+ area = true,
+ physical = true,
+ chaos = true,
+ duration = true,
+ },
+ gemType = "Buff",
+ tagString = "Attack, AoE, Physical, Chaos, Duration",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 13,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemIceTippedArrows"] = {
+ name = "Ice-Tipped Arrows",
+ baseTypeName = "Ice-Tipped Arrows",
+ gameId = "Metadata/Items/Gem/SkillGemIceTippedArrows",
+ variantId = "IceTippedArrows",
+ grantedEffectId = "IceTippedArrowsPlayer",
+ additionalGrantedEffectId1 = "IceTippedArrowsIceFragmentPlayer",
+ tags = {
+ dexterity = true,
+ grants_active_skill = true,
+ spell = true,
+ attack = true,
+ buff = true,
+ area = true,
+ projectile = true,
+ cold = true,
+ duration = true,
+ },
+ gemType = "Spell",
+ tagString = "Attack, Buff, AoE, Projectile, Cold, Duration",
+ weaponRequirements = "Spear, Bow",
+ reqStr = 0,
+ reqDex = 100,
+ reqInt = 0,
+ Tier = 3,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemCracklingPalm"] = {
+ name = "Crackling Palm",
+ baseTypeName = "Crackling Palm",
+ gameId = "Metadata/Items/Gems/SkillGemCracklingPalm",
+ variantId = "CracklingPalm",
+ grantedEffectId = "CracklingPalmPlayer",
+ additionalStatSet1 = "CracklingPalmBoltPlayer",
+ tags = {
+ buff = true,
+ dexterity = true,
+ intelligence = true,
+ grants_active_skill = true,
+ attack = true,
+ persistent = true,
+ area = true,
+ lightning = true,
+ },
+ gemType = "Buff",
+ tagString = "Attack, Persistent, AoE, Lightning",
+ weaponRequirements = "Unarmed",
+ reqStr = 0,
+ reqDex = 50,
+ reqInt = 50,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemFuturePast"] = {
+ name = "Future-Past",
+ baseTypeName = "Future-Past",
+ gameId = "Metadata/Items/Gems/SkillGemFuturePast",
+ variantId = "FuturePast",
+ grantedEffectId = "FuturePastPlayer",
+ tags = {
+ buff = true,
+ grants_active_skill = true,
+ persistent = true,
+ duration = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, Duration",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 0,
+ Tier = 0,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemSiphonElements"] = {
+ name = "Siphon Elements",
+ baseTypeName = "Siphon Elements",
+ gameId = "Metadata/Items/Gem/SkillGemSiphonElements",
+ variantId = "SiphonElements",
+ grantedEffectId = "SiphonElementsPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ buff = true,
+ persistent = true,
+ lightning = true,
+ cold = true,
+ fire = true,
+ remnant = true,
+ },
+ gemType = "Buff",
+ tagString = "Persistent, Lightning, Cold, Fire, Remnant",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 8,
+ naturalMaxLevel = 20,
+ },
+ ["Metadata/Items/Gems/SkillGemFrostDarts"] = {
+ name = "Frost Darts",
+ baseTypeName = "Frost Darts",
+ gameId = "Metadata/Items/Gem/SkillGemFrostDarts",
+ variantId = "FrostDarts",
+ grantedEffectId = "FrostDartsPlayer",
+ additionalStatSet1 = "FrostDartsExplodePlayer",
+ additionalStatSet2 = "FrostDartsIceMortarPlayer",
+ tags = {
+ intelligence = true,
+ grants_active_skill = true,
+ spell = true,
+ area = true,
+ projectile = true,
+ cold = true,
+ payoff = true,
+ },
+ gemType = "Spell",
+ tagString = "AoE, Projectile, Cold, Payoff",
+ reqStr = 0,
+ reqDex = 0,
+ reqInt = 100,
+ Tier = 3,
+ naturalMaxLevel = 20,
+ },
}
\ No newline at end of file
diff --git a/src/Data/Global.lua b/src/Data/Global.lua
index 533222ffea..3f38587f27 100644
--- a/src/Data/Global.lua
+++ b/src/Data/Global.lua
@@ -376,7 +376,7 @@ SkillType = {
NonHitChill = 67,
ChillingArea = 68,
AppliesCurse = 69,
- CanRapidFire = 70,
+ Barrageable = 70,
AuraDuration = 71,
AreaSpell = 72,
OR = 73,
@@ -530,6 +530,30 @@ SkillType = {
SupportedByTumult = 221,
RequiresCharges = 222,
CannotConsumeCharges = 223,
+ ConsumesRage = 224,
+ NonDamageArmourBreak = 225,
+ Necrotic = 226,
+ Nature = 227,
+ NoAttackInPlace = 228,
+ DodgeReplacement = 229,
+ SupportedByDurationThree = 230,
+ ToggleSpawnedObjectTargetable_DefaultOn = 231,
+ ToggleSpawnedObjectTargetable_DefaultOff = 232,
+ ReserveInAllSets = 233,
+ Unleashable = 234,
+ CannotCreateJaggedGround = 235,
+ SingleLevelSkill = 236,
+ SupportedByZarokh = 237,
+ SupportedByGarukhan = 238,
+ FrozenSpite = 239,
+ ObjectDurability = 240,
+ Detonator = 241,
+ SupportedByOverabundanceThree = 242,
+ UnlimitedTotems = 243,
+ SupportedByHaemoCrystals = 244,
+ SupportedByFlamePillar = 245,
+ CanCreateStoneElementals = 246,
+ RemnantCannotBeShared = 247,
}
GlobalCache = {
diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua
index a7acf17d0d..be8b73a6f2 100644
--- a/src/Data/Minions.lua
+++ b/src/Data/Minions.lua
@@ -33,6 +33,8 @@ minions["RaisedZombie"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
},
}
@@ -62,6 +64,9 @@ minions["SummonedRagingSpirit"] = {
},
modList = {
mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
},
}
@@ -93,6 +98,9 @@ minions["RaisedSkeletonSniper"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
},
}
@@ -122,9 +130,15 @@ minions["RaisedSkeletonBrute"] = {
skillList = {
"MinionMeleeStep",
"BoneshatterBruteMinion",
+ "ShatteringRoarSkeletalBruteMinion",
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
+ -- melee_conditional_step_distance [melee_conditional_step_distance = 14]
+ -- active_skill_hit_damage_stun_multiplier_+%_final [active_skill_hit_damage_stun_multiplier_+%_final = 50]
},
}
@@ -157,6 +171,9 @@ minions["RaisedSkeletonStormMage"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
},
}
@@ -185,10 +202,13 @@ minions["RaisedSkeletonFrostMage"] = {
},
skillList = {
"FrostBoltSkeletonMageMinion",
- "IceBombSkeletonMageMinion",
+ "IceArmourSkeletonMageMinion",
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
},
}
@@ -222,6 +242,9 @@ minions["RaisedSkeletonCleric"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
},
}
@@ -254,6 +277,10 @@ minions["RaisedSkeletonArsonist"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
+ -- strafe_distance_+% [strafe_distance_+% = -40]
},
}
@@ -287,6 +314,10 @@ minions["RaisedSkeletonReaver"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
+ -- attack_speed_+%_per_2_rage [attack_speed_+%_per_2_rage = 6]
},
}
@@ -321,6 +352,9 @@ minions["RaisedSkeletonWarriors"] = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
mod("BlockChance", "BASE", 30, 0, 0), -- SkeletonWarriorPlayerMinionBlockChance [monster_base_block_% = 30]
mod("BlockChanceMax", "BASE", 0, 0, 0), -- SkeletonWarriorPlayerMinionBlockChance [additional_maximum_block_% = 0]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- is_skeleton_minion [is_skeleton_minion = 1]
},
}
@@ -351,6 +385,8 @@ minions["SummonedHellhound"] = {
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
},
}
@@ -505,9 +541,14 @@ minions["UnearthBoneConstruct"] = {
},
skillList = {
"MinionMelee",
+ "DATTBoneConstructPlayerSummoned",
+ "GABoneConstructPlayerSummoned",
},
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- set_base_heavy_stun_duration_ms [set_base_heavy_stun_duration_ms = 2930]
},
}
@@ -539,6 +580,11 @@ minions["SummonedRhoa"] = {
modList = {
-- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
-- MonsterIgnoreActorScaleFromStats [ignore_actor_scale_from_stats = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- set_has_quadruped_head_control [set_has_quadruped_head_control = 1]
+ -- set_quadruped_head_turn_duration_ms [set_quadruped_head_turn_duration_ms = 200]
+ -- no_blood_on_death [no_blood_on_death = 1]
},
}
@@ -569,6 +615,139 @@ minions["ManifestWeapon"] = {
"DTTAnimateWeaponSpearDashStabImpact",
"GAAnimateWeaponQuarterstaffSweep",
},
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- minion_does_not_equip_quiver [minion_does_not_equip_quiver = 1]
+ -- monster_gets_item_stats [monster_gets_item_stats = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1]
+ -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1]
+ -- hide_buff_visuals [hide_buff_visuals = 1]
+ -- hide_mini_life_bar [hide_mini_life_bar = 1]
+ },
+}
+
+minions["RavenousSwarm"] = {
+ name = "Ravenous Swarm",
+ monsterTags = { "slow_movement", "Unarmed_onhit_audio", },
+ life = 0.7,
+ baseDamageIgnoresAttackSpeed = true,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 0.84,
+ damageSpread = 0.3,
+ attackTime = 1,
+ attackRange = 1,
+ accuracy = 1,
+ baseMovementSpeed = 24,
+ spectreReservation = 50,
+ companionReservation = 30,
+ spawnLocation = {
+ },
+ skillList = {
+ "RavenousSwarmAttack",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- immune_to_curses [immune_to_curses = 1]
+ -- immune_to_auras_from_other_entities [immune_to_auras_from_other_entities = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- mana_regeneration_rate_per_minute_% [mana_regeneration_rate_per_minute_% = 100]
+ -- base_maximum_mana [base_maximum_mana = 100000]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ -- set_monster_do_not_fracture [set_monster_do_not_fracture = 1]
+ -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
+ -- set_max_endurance_charges [set_max_endurance_charges = 0]
+ -- set_max_power_charges [set_max_power_charges = 0]
+ -- is_hidden_monster [is_hidden_monster = 1]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ -- base_cannot_be_frozen [base_cannot_be_frozen = 1]
+ -- base_maximum_life_is_one [base_maximum_life_is_one = 1]
+ },
+}
+
+minions["LivingLightning"] = {
+ name = "Living Lightning",
+ monsterTags = { "construct", "extra_small_height", "ghost_armour", "is_unarmed", "melee", "physical_affinity", "very_fast_movement", },
+ life = 1,
+ baseDamageIgnoresAttackSpeed = true,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 0.35,
+ damageSpread = 0.8,
+ attackTime = 1,
+ attackRange = 20,
+ accuracy = 1,
+ baseMovementSpeed = 97,
+ spectreReservation = 50,
+ companionReservation = 30,
+ monsterCategory = "Construct",
+ spawnLocation = {
+ },
+ skillList = {
+ "LivingLightningZap",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0]
+ -- immune_to_curses [immune_to_curses = 1]
+ -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ -- set_monster_do_not_fracture [set_monster_do_not_fracture = 1]
+ -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
+ -- set_max_endurance_charges [set_max_endurance_charges = 0]
+ -- set_max_power_charges [set_max_power_charges = 0]
+ -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ -- set_phase_through_objects [set_phase_through_objects = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1]
+ -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ -- hide_buff_visuals [hide_buff_visuals = 1]
+ -- hide_mini_life_bar [hide_mini_life_bar = 1]
+ },
+}
+
+minions["TacticianMinion"] = {
+ name = "Artillery Squad",
+ monsterTags = { "ranged", "Unarmed_onhit_audio", "very_slow_movement", },
+ life = 1,
+ baseDamageIgnoresAttackSpeed = true,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 0.67,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ baseMovementSpeed = 8,
+ spectreReservation = 50,
+ companionReservation = 30,
+ spawnLocation = {
+ },
+ skillList = {
+ "DeathFromAboveDaemonMinion",
+ },
modList = {
},
}
diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua
index 298feb64a5..f205b3a81e 100644
--- a/src/Data/Misc.lua
+++ b/src/Data/Misc.lua
@@ -2,8 +2,8 @@
local data = ...
-- From DefaultMonsterStats.dat
-data.monsterEvasionTable = { 11, 14, 17, 20, 24, 27, 31, 35, 38, 42, 46, 50, 54, 59, 63, 67, 72, 76, 81, 86, 91, 96, 101, 106, 111, 117, 122, 128, 134, 140, 146, 152, 158, 165, 171, 178, 185, 191, 199, 206, 213, 221, 228, 236, 244, 252, 261, 269, 278, 286, 295, 304, 314, 323, 333, 343, 353, 363, 373, 384, 395, 406, 417, 429, 440, 452, 464, 477, 489, 502, 515, 528, 542, 556, 570, 584, 598, 613, 628, 644, 659, 675, 691, 708, 724, 742, 759, 777, 795, 813, 832, 850, 870, 889, 909, 930, 951, 972, 993, 1015, }
-data.monsterAccuracyTable = { 51, 56, 60, 65, 70, 75, 80, 86, 91, 97, 103, 110, 116, 123, 130, 137, 145, 152, 160, 169, 177, 186, 195, 204, 214, 224, 234, 245, 256, 267, 279, 291, 304, 317, 330, 344, 358, 372, 387, 403, 419, 435, 452, 470, 488, 506, 526, 545, 566, 587, 608, 630, 653, 677, 701, 726, 752, 778, 806, 834, 863, 892, 923, 955, 987, 1020, 1055, 1090, 1126, 1164, 1202, 1242, 1283, 1324, 1368, 1412, 1457, 1504, 1552, 1602, 1653, 1705, 1759, 1814, 1871, 1930, 1990, 2052, 2115, 2180, 2247, 2316, 2387, 2460, 2535, 2612, 2690, 2772, 2855, 2941, }
+data.monsterEvasionTable = { 24, 30, 36, 43, 49, 56, 63, 70, 77, 84, 91, 98, 105, 113, 120, 128, 136, 144, 152, 160, 168, 176, 185, 193, 202, 211, 220, 229, 238, 247, 257, 266, 276, 286, 296, 306, 316, 326, 337, 347, 358, 369, 380, 391, 403, 414, 426, 438, 449, 462, 474, 486, 499, 511, 524, 537, 551, 564, 578, 591, 605, 619, 634, 648, 663, 677, 692, 708, 723, 738, 754, 770, 786, 803, 819, 836, 853, 870, 887, 905, 923, 941, 959, 977, 996, 1015, 1034, 1053, 1073, 1093, 1113, 1133, 1154, 1174, 1195, 1217, 1238, 1260, 1282, 1304, }
+data.monsterAccuracyTable = { 26, 31, 36, 41, 46, 51, 57, 62, 68, 75, 81, 88, 95, 102, 109, 117, 125, 134, 142, 151, 161, 170, 180, 191, 202, 213, 224, 236, 248, 261, 274, 288, 302, 317, 332, 348, 364, 380, 398, 416, 434, 453, 473, 493, 514, 536, 558, 581, 605, 629, 655, 681, 708, 736, 765, 794, 825, 856, 889, 923, 957, 993, 1030, 1068, 1107, 1147, 1189, 1232, 1276, 1321, 1368, 1416, 1466, 1517, 1570, 1625, 1681, 1738, 1798, 1859, 1922, 1987, 2054, 2123, 2194, 2266, 2342, 2419, 2498, 2580, 2665, 2751, 2841, 2933, 3027, 3124, 3225, 3328, 3434, 3543, }
data.monsterLifeTable = { 15, 20, 24, 28, 33, 38, 45, 50, 58, 67, 78, 89, 103, 118, 134, 158, 178, 200, 224, 249, 276, 305, 335, 366, 400, 434, 472, 510, 551, 593, 637, 683, 731, 790, 853, 921, 995, 1074, 1160, 1253, 1353, 1462, 1578, 1705, 1841, 1967, 2101, 2244, 2395, 2556, 2726, 2909, 3102, 3307, 3525, 3756, 4002, 4264, 4540, 4834, 5147, 5478, 5829, 6203, 6513, 6904, 7318, 7757, 8222, 8716, 9239, 9793, 10381, 11003, 11664, 12363, 13105, 13892, 14725, 15609, 16545, 17538, 18590, 19705, 20888, 22141, 23469, 24878, 26370, 27953, 29630, 31407, 33292, 35289, 37407, 39651, 42030, 44552, 47225, 50059, }
data.monsterAllyLifeTable = { 51, 83, 116, 150, 186, 223, 261, 300, 341, 382, 426, 471, 517, 565, 614, 665, 718, 772, 828, 886, 945, 1007, 1070, 1135, 1203, 1272, 1344, 1417, 1493, 1571, 1652, 1734, 1820, 1907, 1998, 2091, 2186, 2285, 2386, 2490, 2598, 2708, 2821, 2938, 3058, 3181, 3307, 3438, 3571, 3709, 3850, 3995, 4144, 4298, 4455, 4617, 4783, 4953, 5128, 5308, 5493, 5682, 5877, 6077, 6282, 6492, 6708, 6930, 7157, 7391, 7630, 7876, 8128, 8387, 8652, 8924, 9203, 9489, 9783, 10084, 10393, 10710, 11034, 11367, 11708, 12058, 12417, 12785, 13161, 13548, 13944, 14350, 14766, 15192, 15629, 16076, 16535, 17005, 17486, 17980, }
data.monsterDamageTable = { 9.1599998474121, 10.260000228882, 11.390000343323, 12.569999694824, 13.779999732971, 15.029999732971, 16.319999694824, 17.64999961853, 19.020000457764, 20.440000534058, 21.89999961853, 23.409999847412, 24.969999313354, 26.569999694824, 28.229999542236, 29.930000305176, 31.690000534058, 33.5, 35.369998931885, 37.290000915527, 39.270000457764, 41.310001373291, 43.409999847412, 45.569999694824, 47.799999237061, 50.090000152588, 52.450000762939, 54.880001068115, 57.369998931885, 59.939998626709, 62.590000152588, 65.309997558594, 68.099998474121, 70.980003356934, 73.940002441406, 76.980003356934, 80.110000610352, 83.319999694824, 86.629997253418, 90.019996643066, 93.51000213623, 97.099998474121, 100.79000091553, 104.56999969482, 108.45999908447, 112.45999908447, 116.56999969482, 120.7799987793, 125.12000274658, 129.55999755859, 134.13000488281, 138.82000732422, 143.63999938965, 148.58000183105, 153.66000366211, 158.86999511719, 164.21000671387, 169.69999694824, 175.33999633789, 181.11999511719, 187.05000305176, 193.13999938965, 199.38000488281, 205.78999328613, 212.36000061035, 219.11000061035, 226.0299987793, 233.11999511719, 240.39999389648, 247.86000061035, 255.52000427246, 263.36999511719, 271.42001342773, 279.67999267578, 288.14001464844, 296.82000732422, 305.7200012207, 314.83999633789, 324.19000244141, 333.7799987793, 343.60000610352, 353.67001342773, 364, 374.57998657227, 385.42001342773, 396.5299987793, 407.92001342773, 419.57998657227, 431.54000854492, 443.79000854492, 456.33999633789, 469.20001220703, 482.38000488281, 495.86999511719, 509.70001220703, 523.85998535156, 538.36999511719, 553.22998046875, 568.46002197266, 584.04998779297, }
@@ -16,17 +16,17 @@ data.minionLevelTable = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
-- From GameConstants.dat
data.gameConstants = {
- ["MonsterAccuracyBase"] = 47,
- ["MonsterAccuracyIncremental"] = 321,
- ["MonsterAccuracyImprovement"] = 2.1,
+ ["MonsterAccuracyBase"] = 22,
+ ["MonsterAccuracyIncremental"] = 380,
+ ["MonsterAccuracyImprovement"] = 2.2,
["MonsterArmourBase"] = 2,
["MonsterArmourIncremental"] = 1.75,
["MonsterArmourStrengthRatioMultiplier"] = 3,
["MonsterArmourImprovement"] = 4.5,
- ["MonsterEvasionBase"] = 8,
- ["MonsterEvasionIncremental"] = 3,
+ ["MonsterEvasionBase"] = 18,
+ ["MonsterEvasionIncremental"] = 6,
["MonsterEvasionDexterityRatioMultiplier"] = 2,
- ["MonsterEvasionImprovement"] = 1.2,
+ ["MonsterEvasionImprovement"] = 0.75,
["OldLeechModsEffectiveness"] = 20,
["AscendancyRespecCost"] = 5,
["SkillDamageBaseEffectiveness"] = 3.885209,
@@ -38,14 +38,14 @@ data.gameConstants = {
["PartyRarityBonusPerAdditionalPlayer"] = 0,
["PartyRarityBonusPerAdditionalPlayerHardMode"] = 0,
["PartyUniqueBonusPerAdditionalPlayer"] = 0.3,
- ["LightStunMinimumChance"] = 20,
- ["LightStunRatioScale"] = 92,
- ["LightStunMinimumChancePlayer"] = 12,
- ["LightStunRatioScalePlayer"] = 83,
- ["HeavyStunDamageScale"] = 0.87,
+ ["LightStunMinimumChance"] = 15,
+ ["LightStunRatioScale"] = 58,
+ ["LightStunMinimumChancePlayer"] = 15,
+ ["LightStunRatioScalePlayer"] = 44,
+ ["HeavyStunDamageScale"] = 0.58,
["HeavyStunThresholdModifier"] = 500,
["HeavyStunModifierDuration"] = 16.5,
- ["HeavyStunDamageScalePlayer"] = 1,
+ ["HeavyStunDamageScalePlayer"] = 0.65,
["HeavyStunThresholdModifierPlayer"] = 100,
["HeavyStunModifierDurationPlayer"] = 10,
["FreezeDamageScale"] = 2.1,
@@ -66,10 +66,11 @@ data.gameConstants = {
["PinModifierDuration"] = 13,
["MonsterIntRatioCovertLifeToEnergyShield"] = 100,
["ShockChanceMultiplier"] = 25,
- ["IgniteChanceMultiplier"] = 25,
+ ["IgniteChanceMultiplier"] = 20,
["MiscAilmentChanceMultiplier"] = 25,
["AilmentChanceExponent"] = 1,
- ["ChillEffectMultiplier"] = 60,
+ ["BaseShockMagnitude"] = 20,
+ ["ChillEffectMultiplier"] = 100,
["ChillMaxEffect"] = 50,
["SellPriceMultiplier"] = 0.11,
["MobilePriceMultiplier"] = 0.25,
@@ -84,8 +85,10 @@ data.gameConstants = {
["PoisonHitDamagePercentPerMinute"] = 1200,
["JaggedGroundMagnitude"] = -20,
["BaseBleedingDuration"] = 5,
- ["BaseChillDuration"] = 2,
- ["BaseShockDuration"] = 4,
+ ["BaseChillDuration"] = 8,
+ ["BaseChillDurationPlayer"] = 2,
+ ["BaseShockDuration"] = 8,
+ ["BaseShockDurationPlayer"] = 4,
["BasePoisonDuration"] = 2,
["BaseIgniteDuration"] = 4,
["BaseBloodstainedAfterBleedingDuration"] = 6,
@@ -99,6 +102,16 @@ data.gameConstants = {
["CullingStrikeMagicThreshold"] = 20,
["CullingStrikeRareThreshold"] = 10,
["CullingStrikeUniqueThreshold"] = 5,
+ ["BaseRequiredEnemiesToBeConsideredSurrounded"] = 5,
+ ["NumPetrifiedStacksToPetrify"] = 5,
+ ["DefaultMaxEvadeChancePercent"] = 95,
+ ["BasePercentDamageDeflected"] = 40,
+ ["InfusionRemnantBaseDuration"] = 12000,
+ ["BaseFlammabilityDuration"] = 8,
+ ["BaseFlammabilityDurationPlayer"] = 4,
+ ["IgniteNonHitFlammabilityModifier"] = 0.6,
+ ["MinionsAreGiganticMagnitude"] = 20,
+ ["NonHitFlammabilityPermyriadThresholdToIgnite"] = 5000,
}
-- From Metadata/Characters/Character.ot
data.characterConstants = {
@@ -108,17 +121,16 @@ data.characterConstants = {
["character_inherent_mana_regeneration_rate_per_minute_%"] = 240,
["base_maximum_all_resistances_%"] = 75,
["maximum_physical_damage_reduction_%"] = 90,
- ["object_inherent_base_maximum_block_%_from_ot"] = 75,
- ["base_maximum_spell_block_%"] = 75,
+ ["object_inherent_base_maximum_block_%_from_ot"] = 50,
["max_viper_strike_orbs"] = 4,
["max_fuse_arrow_orbs"] = 5,
["max_fire_beam_stacks"] = 8,
["base_evasion_rating"] = 27,
- ["base_maximum_chance_to_evade_%"] = 95,
["life_per_level"] = 12,
["mana_per_level"] = 4,
- ["accuracy_rating_per_level"] = 3,
+ ["accuracy_rating_per_level"] = 6,
["evasion_rating_per_level"] = 300,
+ ["unarmed_base_critical_strike_chance"] = 500,
["base_critical_hit_damage_bonus"] = 100,
["strength_per_level"] = 0,
["dexterity_per_level"] = 0,
@@ -149,8 +161,8 @@ data.characterConstants = {
["melee_variation"] = 1,
["base_total_number_of_sigils_allowed"] = 3,
["enable_movement_skill_animation_skipping"] = 1,
- ["melee_hit_damage_stun_multiplier_+%"] = 50,
- ["non_physical_hit_damage_stun_multiplier_+%"] = -33,
+ ["melee_hit_damage_stun_multiplier_+%_final_from_ot"] = 50,
+ ["physical_hit_damage_stun_multiplier_+%_final_from_ot"] = 50,
["additional_insanity_effects_while_delirious"] = 1,
["max_steel_ammo"] = 12,
["chance_to_deal_triple_damage_%_per_brutal_charge"] = 3,
@@ -167,12 +179,12 @@ data.characterConstants = {
["melee_strike_bonus_attack_distance"] = 2,
["melee_defer_damage_prediction"] = 1,
["accuracy_rating_+%_final_at_max_distance_scaled"] = -90,
- ["base_weapon_swap_duration_ms"] = 250,
+ ["base_weapon_swap_duration_ms"] = 0,
+ ["poise_decay_delay_ms"] = 2000,
["poise_decay_%_per_second"] = 50,
["enable_weapon_sets"] = true,
["base_number_of_weapon_sets"] = 2,
["quadruped_head_turn_duration_ms"] = 100,
- ["has_quadruped_head_control"] = 0,
["base_pay_cost_over_start_of_skill_animation"] = 1,
["base_knockback_speed_+%"] = -30,
["base_maximum_number_of_stored_corpses"] = 10,
@@ -192,13 +204,24 @@ data.characterConstants = {
["object_inherent_evasion_break_amount_+%_final_against_magic_monsters"] = 100,
["fixed_frost_wall_limit"] = 60,
["player_allow_dodge_roll_cancel"] = 1,
- ["maximum_cold_infusion_stacks"] = 6,
- ["maximum_fire_infusion_stacks"] = 6,
- ["maximum_lightning_infusion_stacks"] = 6,
- ["maximum_chaos_infusion_stacks"] = 6,
- ["base_infusion_duration_ms"] = 15000,
+ ["minimum_number_of_projectiles_to_fire_is_1"] = 1,
+ ["maximum_cold_infusion_stacks"] = 3,
+ ["maximum_fire_infusion_stacks"] = 3,
+ ["maximum_lightning_infusion_stacks"] = 3,
+ ["base_infusion_duration_ms"] = 20000,
["maximum_caltrops_allowed"] = 20,
- ["maximum_volatility_allowed"] = 200,
+ ["maximum_briarpatches_allowed"] = 20,
+ ["maximum_volatility_allowed_default"] = 200,
+ ["number_of_banners_allowed"] = 1,
+ ["heat_base_delay_before_decay_ms"] = 4000,
+ ["heat_base_decay_rate_ms"] = 100,
+ ["branching_fissure_placement_along_main_fissure_variance_%"] = 5,
+ ["branching_fissure_min_branch_angle"] = 40,
+ ["branching_fissure_max_branch_angle"] = 80,
+ ["dodge_roll_sprint_turn_rate"] = 150,
+ ["sprint_movement_speed_+%"] = 50,
+ ["sprint_end_stun_linger_duration_ms"] = 200,
+ ["dodge_roll_sprint_minimum_time_ms"] = 500,
["base_speed"] = 37,
}
-- From Metadata/Monsters/Monster.ot
@@ -209,18 +232,16 @@ data.monsterConstants = {
["maximum_physical_damage_reduction_%"] = 75,
["base_maximum_all_resistances_%"] = 75,
["monster_base_flask_charges_percent_of_monster_power"] = 50,
- ["base_maximum_chance_to_evade_%"] = 95,
["base_critical_hit_damage_bonus"] = 30,
["max_endurance_charges"] = 3,
["max_frenzy_charges"] = 3,
["max_power_charges"] = 3,
- ["object_inherent_base_maximum_block_%_from_ot"] = 75,
- ["base_maximum_spell_block_%"] = 75,
+ ["object_inherent_base_maximum_block_%_from_ot"] = 50,
["movement_velocity_cap"] = 128,
["max_azurite_debuff_stacks"] = 10,
["ignore_skill_weapon_restrictions"] = 1,
- ["melee_hit_damage_stun_multiplier_+%"] = 33,
- ["non_physical_hit_damage_stun_multiplier_+%"] = -50,
+ ["melee_hit_damage_stun_multiplier_+%_final_from_ot"] = 33,
+ ["physical_hit_damage_stun_multiplier_+%_final_from_ot"] = 100,
["scale_melee_range_to_actor_scale"] = 1,
["use_melee_pattern_range"] = 1,
["melee_swing_not_scaled_by_area_modifiers"] = 1,
@@ -242,12 +263,14 @@ data.monsterConstants = {
-- From PlayerMinionIntrinsicStats.dat
data.playerMinionIntrinsicStats = {
["stun_base_duration_override_ms"] = 500,
- ["accuracy_rating_+%_final_at_max_distance_scaled"] = -90,
- ["accuracy_rating_per_level"] = 10,
+ ["global_always_hit"] = 1,
["base_critical_hit_damage_bonus"] = 70,
+ ["maximum_rage"] = 30,
+ ["rage_loss_delay_ms"] = 2000,
+ ["attack_damage_final_permyriad_per_rage"] = 100,
}
-- From MonsterVarieties.dat combined with SkillTotemVariations.dat
-data.totemLifeMult = { [1] = 1, [2] = 1, [3] = 1, [5] = 1, [12] = 1, [18] = 1, [19] = 1, [22] = 1, [15] = 1.2, [23] = 1, [24] = 1, }
+data.totemLifeMult = { [1] = 1, [2] = 1, [3] = 1, [5] = 1, [12] = 1, [18] = 1, [19] = 1, [22] = 1, [15] = 1.2, [23] = 1, [24] = 1, [25] = 1, [26] = 1, }
data.monsterVarietyLifeMult = {
["Drowned"] = 1,
["Lumbering Dead"] = 1,
@@ -279,10 +302,12 @@ data.monsterVarietyLifeMult = {
["Vaal Skeletal Squire"] = 1,
["Vaal Skeletal Priest"] = 1,
["Vaal Skeletal Archer"] = 1,
+ ["Scavenged Skeleton"] = 1,
["Rattling Gibbet"] = 2,
["Prowling Skeleton"] = 1.25,
["Eaten Rat"] = 0.9,
["Eternal Prisoner"] = 1,
+ ["Coral-crowned Skeleton"] = 1,
["Rotting Guard"] = 1,
}
-- From MonsterMapDifficulty.dat
@@ -290,3 +315,47 @@ data.mapLevelLifeMult = { [66] = 1, [67] = 1, [68] = 1, [69] = 1, [70] = 1, [71]
-- From MonsterMapBossDifficulty.dat
data.mapLevelBossLifeMult = { [1] = 1, [2] = 1, [3] = 1, [4] = 1, [5] = 1, [6] = 1, [7] = 1, [8] = 1, [9] = 1, [10] = 1, [11] = 1, [12] = 1, [13] = 1, [14] = 1, [15] = 1, [16] = 1, [17] = 1, [18] = 1, [19] = 1, [20] = 1, [21] = 1, [22] = 1, [23] = 1, [24] = 1, [25] = 1, [26] = 1, [27] = 1, [28] = 1, [29] = 1, [30] = 1, [31] = 1, [32] = 1, [33] = 1, [34] = 1, [35] = 1, [36] = 1, [37] = 1, [38] = 1, [39] = 1, [40] = 1, [41] = 1, [42] = 1, [43] = 1, [44] = 1, [45] = 1, [46] = 1, [47] = 1, [48] = 1, [49] = 1, [50] = 1, [51] = 1, [52] = 1, [53] = 1, [54] = 1, [55] = 1, [56] = 1, [57] = 1, [58] = 1, [59] = 1, [60] = 1, [61] = 1, [62] = 1, [63] = 1, [64] = 1, [65] = 1, [66] = 1, [67] = 1, [68] = 1, [69] = 1, [70] = 1, [71] = 1, [72] = 1, [73] = 1, [74] = 1, [75] = 1, [76] = 1, [77] = 1, [78] = 1, [79] = 1, [80] = 1, [81] = 1, [82] = 1, [83] = 1, [84] = 1, [85] = 1, [86] = 1, [87] = 1, [88] = 1, [89] = 1, [90] = 1, }
data.mapLevelBossAilmentMult = { [1] = 1, [2] = 1, [3] = 1, [4] = 1, [5] = 1, [6] = 1, [7] = 1, [8] = 1, [9] = 1, [10] = 1, [11] = 1, [12] = 1, [13] = 1, [14] = 1, [15] = 1, [16] = 1, [17] = 1, [18] = 1, [19] = 1, [20] = 1, [21] = 1, [22] = 1, [23] = 1, [24] = 1, [25] = 1, [26] = 1, [27] = 1, [28] = 1, [29] = 1, [30] = 1, [31] = 1, [32] = 1, [33] = 1, [34] = 1, [35] = 1, [36] = 1, [37] = 1, [38] = 1, [39] = 1, [40] = 1, [41] = 1, [42] = 1, [43] = 1, [44] = 1, [45] = 1, [46] = 1, [47] = 1, [48] = 1, [49] = 1, [50] = 1, [51] = 1, [52] = 1, [53] = 1, [54] = 1, [55] = 1, [56] = 1, [57] = 1, [58] = 1, [59] = 1, [60] = 1, [61] = 1, [62] = 1, [63] = 1, [64] = 1, [65] = 1, [66] = 1, [67] = 1, [68] = 1, [69] = 1, [70] = 1, [71] = 1, [72] = 1, [73] = 1, [74] = 1, [75] = 1, [76] = 1, [77] = 1, [78] = 1, [79] = 1, [80] = 1, [81] = 1, [82] = 1, [83] = 1, [84] = 1, [85] = 1, [86] = 1, [87] = 1, [88] = 1, [89] = 1, [90] = 1, }
+
+-- From FlatPhysicalDamageValues.dat
+data.hollowPalmAddedPhys = {
+ [1] = { 11, 17 },
+ [2] = { 18, 27 },
+ [3] = { 27, 41 },
+ [4] = { 37, 55 },
+ [5] = { 47, 70 },
+ [6] = { 57, 86 },
+ [7] = { 67, 100 },
+ [8] = { 78, 117 },
+ [9] = { 88, 132 },
+ [10] = { 99, 148 },
+ [11] = { 109, 164 },
+ [12] = { 114, 171 },
+ [13] = { 118, 177 },
+ [14] = { 128, 192 },
+ [15] = { 138, 207 },
+ [16] = { 146, 219 },
+ [17] = { 155, 233 },
+ [18] = { 164, 245 },
+ [19] = { 172, 258 },
+ [20] = { 180, 270 },
+ [21] = { 187, 281 },
+ [22] = { 194, 291 },
+ [23] = { 200, 300 },
+ [24] = { 207, 310 },
+ [25] = { 213, 320 },
+ [26] = { 219, 329 },
+ [27] = { 226, 339 },
+ [28] = { 232, 348 },
+ [29] = { 239, 358 },
+ [30] = { 245, 367 },
+ [31] = { 251, 377 },
+ [32] = { 258, 387 },
+ [33] = { 264, 396 },
+ [34] = { 270, 405 },
+ [35] = { 276, 415 },
+ [36] = { 283, 424 },
+ [37] = { 289, 434 },
+ [38] = { 295, 443 },
+ [39] = { 302, 452 },
+ [40] = { 308, 462 },
+}
diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua
index 8715ff8d74..93a28b5686 100755
--- a/src/Data/ModCache.lua
+++ b/src/Data/ModCache.lua
@@ -85,7 +85,11 @@ c["+0% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type
c["+0% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=0}},nil}
c["+0.15% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.15}}," Thorns "}
c["+0.15% to Thorns Critical Hit Chance +25% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.15}}," Thorns +25% to Thorns Critical Hit Chance "}
+c["+0.5 metres to Dodge Roll distance while Surrounded"]={{}," metres to Dodge Roll distance "}
+c["+0.5 metres to Dodge Roll distance while Surrounded 10% increased Movement Speed while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},[2]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=0.5}}," metres to Dodge Roll distance 10% increased "}
+c["+0.6% to Unarmed Melee Attack Critical Hit Chance"]={{[1]={flags=16777477,keywordFlags=0,name="CritChance",type="BASE",value=0.6}},nil}
c["+1 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=1}},nil}
+c["+1 Life per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}
c["+1 Ring Slot"]={{[1]={flags=0,keywordFlags=0,name="AdditionalRingSlot",type="FLAG",value=true}},nil}
c["+1 metre to Dodge Roll distance"]={{}," metre to Dodge Roll distance "}
c["+1 metre to Dodge Roll distance 50% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={type="Condition",var="DodgeRolledRecently"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1}}," metre to Dodge Roll distance 50% increased "}
@@ -95,8 +99,9 @@ c["+1 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemPrope
c["+1 to Level of all Fire Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fire",value=1}}},nil}
c["+1 to Level of all Lightning Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning",value=1}}},nil}
c["+1 to Level of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="all",value=1}}},nil}
+c["+1 to Limit for Elemental Skills"]={{}," Limit for Elemental Skills "}
c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}
-c["+1 to Maximum Energy Shield per 12 Evasion Rating on Equipped Body Armour"]={{[1]={[1]={div=12,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}
+c["+1 to Maximum Energy Shield per 12 Item Evasion Rating on Equipped Body Armour"]={{[1]={[1]={div=12,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}
c["+1 to Maximum Energy Shield per 8 Maximum Life"]={{[1]={[1]={div=8,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}
c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}
c["+1 to Maximum Mana per 6 Maximum Life"]={{[1]={[1]={div=6,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}
@@ -107,8 +112,14 @@ c["+1 to Minimum Endurance Charges while you have at least 150 Devotion"]={{[1]=
c["+1 to Minimum Frenzy Charges while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="FrenzyChargesMin",type="BASE",value=1}},nil}
c["+1 to Minimum Power Charges while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil}
c["+1 to Spirit for every 20 Evasion Rating on Equipped Body Armour"]={{[1]={[1]={div=20,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=1}},nil}
-c["+1 to Spirit for every 8 Energy Shield on Equipped Body Armour"]={{[1]={[1]={div=8,stat="EnergyShieldOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=1}},nil}
+c["+1 to Spirit for every 8 Item Energy Shield on Equipped Body Armour"]={{[1]={[1]={div=8,stat="EnergyShieldOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=1}},nil}
+c["+1 to Stun Threshold per Dexterity"]={{[1]={[1]={stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
+c["+1 to maximum Cold Infusions"]={{}," maximum Cold Infusions "}
+c["+1 to maximum Fire Infusions"]={{}," maximum Fire Infusions "}
+c["+1 to maximum Lightning Infusions"]={{}," maximum Lightning Infusions "}
+c["+1 to maximum number of Elemental Infusions"]={{}," maximum number of Elemental Infusions "}
c["+1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}
+c["+1 to maximum number of placed Banners"]={{}," maximum number of placed Banners "}
c["+1% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}
c["+1% to Maximum Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=1}},nil}
c["+1% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}
@@ -118,7 +129,11 @@ c["+1% to Maximum Fire Resistance per 4 Red Support Gems Socketed"]={{[1]={[1]={
c["+1% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}
c["+1% to Maximum Lightning Resistance per 4 Green Support Gems Socketed"]={{[1]={[1]={div=4,type="Multiplier",var="GreenSupportGems"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}
c["+1% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil}
+c["+1% to all Maximum Elemental Resistances if you have at"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}}," if you have at "}
+c["+1% to all Maximum Elemental Resistances if you have at least 5 Red, Green and Blue Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}}," if you have at least 5 Red, Green and Blue Support Gems Socketed "}
c["+1% to all maximum Resistances if you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1},[2]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=1}},nil}
+c["+1% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=1}},nil}
+c["+1.1% to Unarmed Melee Attack Critical Hit Chance"]={{[1]={flags=16777477,keywordFlags=0,name="CritChance",type="BASE",value=1.1}},nil}
c["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil}
c["+10 to Devotion"]={{[1]={flags=0,keywordFlags=0,name="Devotion",type="BASE",value=10}},nil}
c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}
@@ -131,10 +146,14 @@ c["+10 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type
c["+10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=10}},nil}
c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}},nil}
c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil}
+c["+10% of Armour also applies to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=10}},nil}
+c["+10% of Armour also applies to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=10}},nil}
+c["+10% of Armour also applies to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=10}},nil}
c["+10% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}
c["+10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}
c["+10% to Chaos Resistance per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}
c["+10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}
+c["+10% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}
c["+10% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=10}},nil}
c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil}
c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}
@@ -152,6 +171,8 @@ c["+100 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE"
c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}
c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}
c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}
+c["+100% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100}},nil}
+c["+100% of Armour also applies to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100}},nil}
c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil}
c["+104 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=104}},nil}
c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil}
@@ -172,6 +193,7 @@ c["+125 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",t
c["+125 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=125}},nil}
c["+125 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=125}},nil}
c["+125 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=125}},nil}
+c["+125% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=125},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=125},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=125}},nil}
c["+13 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13}},nil}
c["+13 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=13}},nil}
c["+13 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=13}},nil}
@@ -180,7 +202,6 @@ c["+13 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",
c["+13% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=13}},nil}
c["+13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}},nil}
c["+13% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=13}},nil}
-c["+13% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=13}},nil}
c["+13% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=13}},nil}
c["+13% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=13}},nil}
c["+13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}
@@ -197,6 +218,10 @@ c["+15 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",
c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil}
c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil}
c["+15 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}},nil}
+c["+15% of Armour also applies to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=15}},nil}
+c["+15% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=15}},nil}
+c["+15% of Armour also applies to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=15}},nil}
+c["+15% of Armour also applies to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=15}},nil}
c["+15% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}
c["+15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}
c["+15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}
@@ -205,6 +230,7 @@ c["+15% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance"
c["+15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15}},nil}
c["+15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15}},nil}
c["+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}
+c["+150 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=150}},nil}
c["+150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}
c["+150 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=150}},nil}
c["+150 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}
@@ -212,12 +238,13 @@ c["+150 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",t
c["+150 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=150}},nil}
c["+150 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}},nil}
c["+150 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=150}},nil}
+c["+150% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=150},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=150},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=150}},nil}
c["+1500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1500}},nil}
c["+16 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=16}},nil}
c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil}
c["+160 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=160}},nil}
c["+17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}},nil}
-c["+175 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=175}},nil}
+c["+17% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=17}},nil}
c["+175 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=175}},nil}
c["+175 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=175}},nil}
c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil}
@@ -227,7 +254,7 @@ c["+2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",v
c["+2 Charm Slots"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=2}},nil}
c["+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently"]={{}," metres to Dodge Roll distance if you haven't Dodge Rolled Recently "}
c["+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently -1 metre to Dodge Roll distance if you've Dodge Rolled Recently"]={{}," metres to Dodge Roll distance if you haven't Dodge Rolled Recently -1 metre to Dodge Roll distance "}
-c["+2 to Evasion Rating per 1 Energy Shield on Equipped Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=2}},nil}
+c["+2 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=2}},nil}
c["+2 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=2}}},nil}
c["+2 to Level of all Fire Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fire",value=2}}},nil}
c["+2 to Level of all Lightning Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning",value=2}}},nil}
@@ -245,21 +272,28 @@ c["+2 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="B
c["+2 to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}
c["+2% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=2}},nil}
c["+2% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil}
+c["+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}}," if you have at least 5 Blue Support Gems Socketed "}
c["+2% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil}
+c["+2% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}}," if you have at least 5 Red Support Gems Socketed "}
+c["+2% to Maximum Fire Resistance while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil}
c["+2% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=2}},nil}
+c["+2% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=2}}," if you have at least 5 Green Support Gems Socketed "}
c["+2% to Quality of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyOfScaledMod="value",keyword="all",value=2}}},nil}
+c["+2% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=2}},nil}
c["+2.4% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2.4}},nil}
c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil}
c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}
c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}
c["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}
c["+20 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=20}},nil}
+c["+20 to Spirit while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=20}},nil}
+c["+20 to Spirit while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=20}},nil}
+c["+20 to Spirit while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=20}},nil}
c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},nil}
c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=20}},nil}
c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil}
c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil}
c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil}
-c["+20 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=20}},nil}
c["+20% to Block Chance while holding a Focus"]={{[1]={[1]={type="Condition",varList={[1]="UsingFocus"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}
c["+20% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}
c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil}
@@ -279,6 +313,7 @@ c["+23 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value
c["+23 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=23}},nil}
c["+23 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23}},nil}
c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}
+c["+23% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=23}},nil}
c["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil}
c["+23% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}
c["+23% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=23}},nil}
@@ -293,6 +328,7 @@ c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",v
c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}
c["+25 to maximum Mana per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}
c["+25% chance to be Poisoned"]={{}," to be Poisoned "}
+c["+25% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=25}},nil}
c["+25% to Block Chance while holding a Focus"]={{[1]={[1]={type="Condition",varList={[1]="UsingFocus"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil}
c["+25% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil}
c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}
@@ -315,7 +351,9 @@ c["+28% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ
c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil}
c["+29 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=29}},nil}
c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil}
+c["+3 to Level of all Acidic Concoction Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="acidic concoction",value=3}}},nil}
c["+3 to Level of all Alchemist's Boon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="alchemist's boon",value=3}}},nil}
+c["+3 to Level of all Ancestral Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral cry",value=3}}},nil}
c["+3 to Level of all Ancestral Spirits Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral spirits",value=3}}},nil}
c["+3 to Level of all Ancestral Warrior Totem Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral warrior totem",value=3}}},nil}
c["+3 to Level of all Arc Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="arc",value=3}}},nil}
@@ -329,6 +367,7 @@ c["+3 to Level of all Ball Lightning Skills"]={{[1]={flags=0,keywordFlags=0,name
c["+3 to Level of all Barrage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="barrage",value=3}}},nil}
c["+3 to Level of all Barrier Invocation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="barrier invocation",value=3}}},nil}
c["+3 to Level of all Berserk Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="berserk",value=3}}},nil}
+c["+3 to Level of all Black Powder Blitz Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="black powder blitz",value=3}}},nil}
c["+3 to Level of all Blasphemy Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="blasphemy",value=3}}},nil}
c["+3 to Level of all Bleeding Concoction Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="bleeding concoction",value=3}}},nil}
c["+3 to Level of all Blink Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="blink",value=3}}},nil}
@@ -342,23 +381,20 @@ c["+3 to Level of all Boneshatter Skills"]={{[1]={flags=0,keywordFlags=0,name="G
c["+3 to Level of all Bonestorm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="bonestorm",value=3}}},nil}
c["+3 to Level of all Bow Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="bow shot",value=3}}},nil}
c["+3 to Level of all Bursting Fen Toad Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="bursting fen toad",value=3}}},nil}
+c["+3 to Level of all Called Shots Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="called shots",value=3}}},nil}
c["+3 to Level of all Cast on Block Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on block",value=3}}},nil}
c["+3 to Level of all Cast on Charm Use Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on charm use",value=3}}},nil}
c["+3 to Level of all Cast on Critical Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on critical",value=3}}},nil}
c["+3 to Level of all Cast on Dodge Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on dodge",value=3}}},nil}
-c["+3 to Level of all Cast on Freeze Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on freeze",value=3}}},nil}
-c["+3 to Level of all Cast on Ignite Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on ignite",value=3}}},nil}
+c["+3 to Level of all Cast on Elemental Ailment Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on elemental ailment",value=3}}},nil}
c["+3 to Level of all Cast on Melee Kill Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on melee kill",value=3}}},nil}
c["+3 to Level of all Cast on Melee Stun Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on melee stun",value=3}}},nil}
c["+3 to Level of all Cast on Minion Death Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on minion death",value=3}}},nil}
-c["+3 to Level of all Cast on Shock Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cast on shock",value=3}}},nil}
c["+3 to Level of all Chaos Bolt Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="chaos bolt",value=3}}},nil}
-c["+3 to Level of all Chaotic Infusion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="chaotic infusion",value=3}}},nil}
-c["+3 to Level of all Charge Infusion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="charge infusion",value=3}}},nil}
+c["+3 to Level of all Charge Regulation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="charge",[2]="regulation"},value=3}}},nil}
c["+3 to Level of all Charged Staff Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="charged staff",value=3}}},nil}
c["+3 to Level of all Cluster Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cluster grenade",value=3}}},nil}
c["+3 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=3}}},nil}
-c["+3 to Level of all Cold Snap Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold snap",value=3}}},nil}
c["+3 to Level of all Cold Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="cold",[2]="spell"},value=3}}},nil}
c["+3 to Level of all Combat Frenzy Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="combat frenzy",value=3}}},nil}
c["+3 to Level of all Comet Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="comet",value=3}}},nil}
@@ -368,8 +404,10 @@ c["+3 to Level of all Conductivity Skills"]={{[1]={flags=0,keywordFlags=0,name="
c["+3 to Level of all Consecrate Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="consecrate",value=3}}},nil}
c["+3 to Level of all Contagion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="contagion",value=3}}},nil}
c["+3 to Level of all Convalescence Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="convalescence",value=3}}},nil}
+c["+3 to Level of all Crackling Palm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="crackling palm",value=3}}},nil}
c["+3 to Level of all Crossbow Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="crossbow shot",value=3}}},nil}
c["+3 to Level of all Cull The Weak Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cull the weak",value=3}}},nil}
+c["+3 to Level of all Curse on Block Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="curse on block",value=3}}},nil}
c["+3 to Level of all Dark Effigy Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="dark effigy",value=3}}},nil}
c["+3 to Level of all Decompose Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="decompose",value=3}}},nil}
c["+3 to Level of all Defiance Banner Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="defiance banner",value=3}}},nil}
@@ -391,6 +429,8 @@ c["+3 to Level of all Elemental Siphon Skills"]={{[1]={flags=0,keywordFlags=0,na
c["+3 to Level of all Elemental Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="elemental",value=3}}},nil}
c["+3 to Level of all Elemental Storm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="elemental storm",value=3}}},nil}
c["+3 to Level of all Elemental Sundering Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="elemental sundering",value=3}}},nil}
+c["+3 to Level of all Elemental Surge Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="elemental surge",value=3}}},nil}
+c["+3 to Level of all Elemental Weakness Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="elemental weakness",value=3}}},nil}
c["+3 to Level of all Ember Fusillade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ember fusillade",value=3}}},nil}
c["+3 to Level of all Emergency Reload Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="emergency reload",value=3}}},nil}
c["+3 to Level of all Encase in Jade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="encase in jade",value=3}}},nil}
@@ -405,6 +445,7 @@ c["+3 to Level of all Exsanguinate Skills"]={{[1]={flags=0,keywordFlags=0,name="
c["+3 to Level of all Eye of Winter Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="eye of winter",value=3}}},nil}
c["+3 to Level of all Falling Thunder Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="falling thunder",value=3}}},nil}
c["+3 to Level of all Fangs of Frost Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fangs of frost",value=3}}},nil}
+c["+3 to Level of all Feast of Flesh Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="feast of flesh",value=3}}},nil}
c["+3 to Level of all Fire Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fire",value=3}}},nil}
c["+3 to Level of all Fire Spell on Hit Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="fire",[2]="spell",[3]="on",[4]="hit"},value=3}}},nil}
c["+3 to Level of all Fireball Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fireball",value=3}}},nil}
@@ -415,20 +456,26 @@ c["+3 to Level of all Flameblast Skills"]={{[1]={flags=0,keywordFlags=0,name="Ge
c["+3 to Level of all Flammability Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="flammability",value=3}}},nil}
c["+3 to Level of all Flash Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="flash grenade",value=3}}},nil}
c["+3 to Level of all Flicker Strike Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="flicker strike",value=3}}},nil}
+c["+3 to Level of all Forge Hammer Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="forge hammer",value=3}}},nil}
+c["+3 to Level of all Fortifying Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fortifying cry",value=3}}},nil}
c["+3 to Level of all Fragmentation Rounds Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fragmentation rounds",value=3}}},nil}
c["+3 to Level of all Freezing Mark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="freezing mark",value=3}}},nil}
c["+3 to Level of all Freezing Salvo Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="freezing salvo",value=3}}},nil}
c["+3 to Level of all Freezing Shards Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="freezing shards",value=3}}},nil}
c["+3 to Level of all Frost Bomb Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost bomb",value=3}}},nil}
+c["+3 to Level of all Frost Darts Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost darts",value=3}}},nil}
c["+3 to Level of all Frost Wall Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost wall",value=3}}},nil}
c["+3 to Level of all Frostbolt Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frostbolt",value=3}}},nil}
c["+3 to Level of all Frozen Locus Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frozen locus",value=3}}},nil}
c["+3 to Level of all Fulminating Concoction Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fulminating concoction",value=3}}},nil}
+c["+3 to Level of all Fulmination Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fulmination",value=3}}},nil}
+c["+3 to Level of all Future-Past Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="future-past",value=3}}},nil}
c["+3 to Level of all Galvanic Field Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="galvanic field",value=3}}},nil}
c["+3 to Level of all Galvanic Shards Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="galvanic shards",value=3}}},nil}
c["+3 to Level of all Gas Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="gas arrow",value=3}}},nil}
c["+3 to Level of all Gas Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="gas grenade",value=3}}},nil}
c["+3 to Level of all Gathering Storm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="gathering storm",value=3}}},nil}
+c["+3 to Level of all Gemini Surge Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="gemini surge",value=3}}},nil}
c["+3 to Level of all Ghost Dance Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ghost dance",value=3}}},nil}
c["+3 to Level of all Glacial Bolt Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="glacial bolt",value=3}}},nil}
c["+3 to Level of all Glacial Cascade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="glacial cascade",value=3}}},nil}
@@ -450,13 +497,15 @@ c["+3 to Level of all Ice Nova Skills"]={{[1]={flags=0,keywordFlags=0,name="GemP
c["+3 to Level of all Ice Shards Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice shards",value=3}}},nil}
c["+3 to Level of all Ice Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice shot",value=3}}},nil}
c["+3 to Level of all Ice Strike Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice strike",value=3}}},nil}
+c["+3 to Level of all Ice-Tipped Arrows Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice-tipped arrows",value=3}}},nil}
c["+3 to Level of all Icestorm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="icestorm",value=3}}},nil}
c["+3 to Level of all Impurity Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="impurity",value=3}}},nil}
c["+3 to Level of all Incendiary Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="incendiary shot",value=3}}},nil}
c["+3 to Level of all Incinerate Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="incinerate",value=3}}},nil}
+c["+3 to Level of all Inevitable Agony Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="inevitable agony",value=3}}},nil}
c["+3 to Level of all Infernal Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="infernal cry",value=3}}},nil}
-c["+3 to Level of all Infuse Weapon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="infuse weapon",value=3}}},nil}
c["+3 to Level of all Into the Breach Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="into the breach",value=3}}},nil}
+c["+3 to Level of all Iron Ward Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="iron ward",value=3}}},nil}
c["+3 to Level of all Killing Palm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="killing palm",value=3}}},nil}
c["+3 to Level of all Leap Slam Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="leap slam",value=3}}},nil}
c["+3 to Level of all Life Remnants Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="life remnants",value=3}}},nil}
@@ -481,7 +530,9 @@ c["+3 to Level of all Mantra of Destruction Skills"]={{[1]={flags=0,keywordFlags
c["+3 to Level of all Meditate Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="meditate",value=3}}},nil}
c["+3 to Level of all Melee Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="melee",value=3}}},nil}
c["+3 to Level of all Minion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="minion",value=3}}},nil}
+c["+3 to Level of all Mirage Archer Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mirage archer",value=3}}},nil}
c["+3 to Level of all Molten Blast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="molten blast",value=3}}},nil}
+c["+3 to Level of all Mortar Cannon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mortar cannon",value=3}}},nil}
c["+3 to Level of all Oil Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="oil grenade",value=3}}},nil}
c["+3 to Level of all Orb of Storms Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="orb of storms",value=3}}},nil}
c["+3 to Level of all Overwhelming Presence Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="overwhelming presence",value=3}}},nil}
@@ -489,11 +540,11 @@ c["+3 to Level of all Pain Offering Skills"]={{[1]={flags=0,keywordFlags=0,name=
c["+3 to Level of all Parry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="parry",value=3}}},nil}
c["+3 to Level of all Perfect Strike Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="perfect strike",value=3}}},nil}
c["+3 to Level of all Permafrost Bolts Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="permafrost bolts",value=3}}},nil}
+c["+3 to Level of all Phantasmal Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="phantasmal arrow",value=3}}},nil}
c["+3 to Level of all Pinnacle of Power Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pinnacle of power",value=3}}},nil}
c["+3 to Level of all Plague Bearer Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="plague bearer",value=3}}},nil}
c["+3 to Level of all Plasma Blast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="plasma blast",value=3}}},nil}
c["+3 to Level of all Poisonburst Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="poisonburst arrow",value=3}}},nil}
-c["+3 to Level of all Poisonous Concoction Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="poisonous concoction",value=3}}},nil}
c["+3 to Level of all Power Siphon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="power siphon",value=3}}},nil}
c["+3 to Level of all Primal Strikes Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="primal strikes",value=3}}},nil}
c["+3 to Level of all Profane Ritual Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="profane ritual",value=3}}},nil}
@@ -508,12 +559,12 @@ c["+3 to Level of all Raise Zombie Skills"]={{[1]={flags=0,keywordFlags=0,name="
c["+3 to Level of all Rake Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rake",value=3}}},nil}
c["+3 to Level of all Rapid Assault Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rapid assault",value=3}}},nil}
c["+3 to Level of all Rapid Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rapid shot",value=3}}},nil}
+c["+3 to Level of all Ravenous Swarm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ravenous swarm",value=3}}},nil}
c["+3 to Level of all Reap Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="reap",value=3}}},nil}
c["+3 to Level of all Reaper's Invocation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="reaper's invocation",value=3}}},nil}
c["+3 to Level of all Requiem Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="requiem",value=3}}},nil}
c["+3 to Level of all Resonating Shield Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="resonating shield",value=3}}},nil}
c["+3 to Level of all Rhoa Mount Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rhoa mount",value=3}}},nil}
-c["+3 to Level of all Ripwire Ballista Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ripwire ballista",value=3}}},nil}
c["+3 to Level of all Ritual Sacrifice Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ritual sacrifice",value=3}}},nil}
c["+3 to Level of all Rolling Slam Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rolling slam",value=3}}},nil}
c["+3 to Level of all Sacrifice Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sacrifice",value=3}}},nil}
@@ -524,12 +575,13 @@ c["+3 to Level of all Shattering Concoction Skills"]={{[1]={flags=0,keywordFlags
c["+3 to Level of all Shattering Palm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shattering palm",value=3}}},nil}
c["+3 to Level of all Shield Charge Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shield charge",value=3}}},nil}
c["+3 to Level of all Shield Wall Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shield wall",value=3}}},nil}
-c["+3 to Level of all Shock Nova Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shock nova",value=3}}},nil}
c["+3 to Level of all Shockburst Rounds Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shockburst rounds",value=3}}},nil}
c["+3 to Level of all Shockchain Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shockchain arrow",value=3}}},nil}
c["+3 to Level of all Shockwave Totem Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="shockwave totem",value=3}}},nil}
+c["+3 to Level of all Siege Ballista Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="siege ballista",value=3}}},nil}
c["+3 to Level of all Siege Cascade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="siege cascade",value=3}}},nil}
c["+3 to Level of all Sigil of Power Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sigil of power",value=3}}},nil}
+c["+3 to Level of all Siphon Elements Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="siphon elements",value=3}}},nil}
c["+3 to Level of all Siphoning Strike Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="siphoning strike",value=3}}},nil}
c["+3 to Level of all Skeletal Arsonist Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal arsonist",value=3}}},nil}
c["+3 to Level of all Skeletal Brute Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal brute",value=3}}},nil}
@@ -539,11 +591,13 @@ c["+3 to Level of all Skeletal Reaver Skills"]={{[1]={flags=0,keywordFlags=0,nam
c["+3 to Level of all Skeletal Sniper Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal sniper",value=3}}},nil}
c["+3 to Level of all Skeletal Storm Mage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal storm mage",value=3}}},nil}
c["+3 to Level of all Skeletal Warrior Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal warrior",value=3}}},nil}
+c["+3 to Level of all Snap Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="snap",value=3}}},nil}
c["+3 to Level of all Snipe Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="snipe",value=3}}},nil}
c["+3 to Level of all Sniper's Mark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sniper's mark",value=3}}},nil}
c["+3 to Level of all Solar Orb Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="solar orb",value=3}}},nil}
c["+3 to Level of all Sorcery Ward Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sorcery ward",value=3}}},nil}
c["+3 to Level of all Soul Offering Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="soul offering",value=3}}},nil}
+c["+3 to Level of all Soulrend Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="soulrend",value=3}}},nil}
c["+3 to Level of all Spark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spark",value=3}}},nil}
c["+3 to Level of all Spear Stab Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spear stab",value=3}}},nil}
c["+3 to Level of all Spear Throw Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spear throw",value=3}}},nil}
@@ -575,6 +629,7 @@ c["+3 to Level of all Time Freeze Skills"]={{[1]={flags=0,keywordFlags=0,name="G
c["+3 to Level of all Time Snap Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="time snap",value=3}}},nil}
c["+3 to Level of all Time of Need Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="time of need",value=3}}},nil}
c["+3 to Level of all Tornado Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="tornado shot",value=3}}},nil}
+c["+3 to Level of all Toxic Domain Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="toxic domain",value=3}}},nil}
c["+3 to Level of all Toxic Growth Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="toxic growth",value=3}}},nil}
c["+3 to Level of all Trail of Caltrops Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="trail of caltrops",value=3}}},nil}
c["+3 to Level of all Trinity Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="trinity",value=3}}},nil}
@@ -582,8 +637,10 @@ c["+3 to Level of all Twister Skills"]={{[1]={flags=0,keywordFlags=0,name="GemPr
c["+3 to Level of all Unbound Avatar Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="unbound avatar",value=3}}},nil}
c["+3 to Level of all Unearth Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="unearth",value=3}}},nil}
c["+3 to Level of all Unleash Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="unleash",value=3}}},nil}
+c["+3 to Level of all Valako's Charge Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="valako's charge",value=3}}},nil}
c["+3 to Level of all Vaulting Impact Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vaulting impact",value=3}}},nil}
c["+3 to Level of all Vine Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vine arrow",value=3}}},nil}
+c["+3 to Level of all Void Illusion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="void illusion",value=3}}},nil}
c["+3 to Level of all Volatile Dead Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="volatile dead",value=3}}},nil}
c["+3 to Level of all Volcanic Fissure Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="volcanic fissure",value=3}}},nil}
c["+3 to Level of all Voltaic Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="voltaic grenade",value=3}}},nil}
@@ -601,9 +658,12 @@ c["+3 to Level of all Wither Skills"]={{[1]={flags=0,keywordFlags=0,name="GemPro
c["+3 to Level of all Withering Presence Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="withering presence",value=3}}},nil}
c["+3 to Stun Threshold per Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=3}},nil}
c["+3 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=3}},nil}
+c["+3% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=3}},nil}
+c["+3% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=3}},nil}
c["+3% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3}},nil}
c["+3% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3}},nil}
c["+3% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3}},nil}
+c["+3% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}},nil}
c["+30 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=30}},nil}
c["+30 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30}},nil}
c["+30 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}},nil}
@@ -614,6 +674,10 @@ c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie
c["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil}
c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}
c["+30 to maximum Mana per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}
+c["+30% of Armour also applies to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=30}},nil}
+c["+30% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=30},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=30}},nil}
+c["+30% of Armour also applies to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=30}},nil}
+c["+30% of Armour also applies to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=30}},nil}
c["+30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}
c["+30% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}
c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30}},nil}
@@ -625,12 +689,12 @@ c["+300 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",t
c["+300 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=300}},nil}
c["+33 to maximum Life per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}
c["+33% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=33}},nil}
+c["+33% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=33}},nil}
c["+35 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=35}},nil}
c["+35 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=35}},nil}
c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil}
c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil}
c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil}
-c["+35% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}
c["+35% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=35}},nil}
c["+35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=35}},nil}
c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=35}},nil}
@@ -639,11 +703,10 @@ c["+36 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",v
c["+37% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=37}},nil}
c["+39 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=39}},nil}
c["+4 to Ailment Threshold per Dexterity"]={{[1]={[1]={stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=4}},nil}
-c["+4 to Level of Conductivity Skills"]={{[1]={[1]={skillName="Conductivity",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
+c["+4 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=4}},nil}
c["+4 to Level of Despair Skills"]={{[1]={[1]={skillName="Despair",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
+c["+4 to Level of Elemental Weakness Skills"]={{[1]={[1]={skillName="Elemental weakness",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
c["+4 to Level of Enfeeble Skills"]={{[1]={[1]={skillName="Enfeeble",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
-c["+4 to Level of Flammability Skills"]={{[1]={[1]={skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
-c["+4 to Level of Hypothermia Skills"]={{[1]={[1]={skillName="Hypothermia",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
c["+4 to Level of Temporal Chains Skills"]={{[1]={[1]={skillName="Temporal chains",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
c["+4 to Level of Vulnerability Skills"]={{[1]={[1]={skillName="Vulnerability",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil}
c["+4 to Level of all Chaos Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="chaos",[2]="spell"},value=4}}},nil}
@@ -659,11 +722,13 @@ c["+4 to Level of all Projectile Skills"]={{[1]={flags=0,keywordFlags=0,name="Ge
c["+4 to Level of all Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spell",value=4}}},nil}
c["+4 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=4}},nil}
c["+4 to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=4},[2]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=4}},nil}
+c["+4 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=4}},nil}
c["+4% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=4}},nil}
c["+4% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4}},nil}
c["+4% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4}},nil}
c["+4% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=4}},nil}
-c["+4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}
+c["+4% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=4}}," Thorns "}
+c["+4% to Thorns Critical Hit Chance Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=4}}," Thorns Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour "}
c["+4% to all Elemental Resistances per socketed Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}
c["+4% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=4}},nil}
c["+40 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=40}},nil}
@@ -690,6 +755,8 @@ c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",va
c["+45 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=45}},nil}
c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil}
c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil}
+c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}
+c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil}
c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil}
c["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil}
c["+5 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=5}},nil}
@@ -700,8 +767,9 @@ c["+5 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",ty
c["+5 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=5}},nil}
c["+5 to any Attribute"]={{},nil}
c["+5 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=5}},nil}
-c["+5 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=5}},nil}
+c["+5% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=5}},nil}
c["+5% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}
+c["+5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=5}},nil}
c["+5% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=5}},nil}
c["+5% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=5}},nil}
c["+5% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=5}},nil}
@@ -709,6 +777,7 @@ c["+5% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningRe
c["+5% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil}
c["+5% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}
c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil}
+c["+5% to Quality of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyOfScaledMod="value",keyword="all",value=5}}},nil}
c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil}
c["+5% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5}},nil}
c["+5% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=5}},nil}
@@ -741,16 +810,19 @@ c["+6 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",v
c["+6 to all Attributes per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Str",type="BASE",value=6},[2]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=6},[3]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Int",type="BASE",value=6},[4]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="All",type="BASE",value=6}},nil}
c["+6% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=6}},nil}
c["+6% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6}},nil}
-c["+6% to Critical Hit Chance of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6}},nil}
c["+6% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6}}," Thorns "}
+c["+6.5% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6.5}},nil}
c["+60 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=60}},nil}
c["+60 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=60}},nil}
c["+60 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=60}},nil}
+c["+60 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=60}},nil}
c["+60 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=60}},nil}
c["+60 to Stun Threshold per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=60}},nil}
c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil}
c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}
c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil}
+c["+600 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=600}},nil}
+c["+600 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=600}},nil}
c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil}
c["+64 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=64}},nil}
c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil}
@@ -784,6 +856,10 @@ c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8
c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=8}},nil}
c["+8% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}
c["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil}
+c["+8% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}
+c["+8% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=8}},nil}
+c["+8% to Critical Hit Chance of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=8}},nil}
+c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil}
c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}
c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil}
c["+80 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=80}},nil}
@@ -820,15 +896,21 @@ c["-15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=
c["-15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-15}},nil}
c["-15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-15}},nil}
c["-15% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-15}},nil}
-c["-15% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-15}},nil}
c["-17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-17}},nil}
c["-20 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=-20}},nil}
c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil}
+c["-200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-200}},nil}
+c["-250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-250}},nil}
c["-3% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-3}},nil}
c["-3% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-3}},nil}
+c["-30 Physical Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-30}},nil}
+c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil}
c["-30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-30}},nil}
+c["-35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-35}},nil}
c["-4 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-4}},nil}
c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil}
+c["-5% to amount of Damage Prevented by Deflection"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=-5}}," amount of Prevented by Deflection "}
+c["-5% to amount of Damage Prevented by Deflection 20% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=-5}}," amount of Prevented by Deflection 20% increased Deflection Rating "}
c["-7% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-7}},nil}
c["0% reduced Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=-0}},nil}
c["0% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=-0}},nil}
@@ -843,21 +925,24 @@ c["0.5% of maximum Life Regenerated per second per Fragile Regrowth"]={{[1]={[1]
c["1 Rage Regenerated for every 25 Mana Regeneration per Second"]={{[1]={[1]={div=25,stat="ManaRegen",type="PerStat"},flags=0,keywordFlags=0,name="RageRegen",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
c["1% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=1}},nil}
c["1% increased Area of Effect for Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}
-c["1% increased Attack Damage per 75 Armour or Evasion Rating on Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}
c["1% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
c["1% increased Attack Speed per 20 Dexterity"]={{[1]={[1]={div=20,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
+c["1% increased Attack Speed per 20 Spirit"]={{[1]={[1]={div=20,stat="Spirit",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
c["1% increased Attack Speed per 250 Accuracy Rating"]={{[1]={[1]={div=250,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
-c["1% increased Critical Damage Bonus per 40 Life"]={{[1]={[1]={div=40,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=1}},nil}
+c["1% increased Cast Speed per 20 Spirit"]={{[1]={[1]={div=20,stat="Spirit",type="PerStat"},flags=16,keywordFlags=0,name="Speed",type="INC",value=1}},nil}
+c["1% increased Critical Damage Bonus per 50 Life"]={{[1]={[1]={div=50,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=1}},nil}
c["1% increased Damage per 1% Chance to Block"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}
c["1% increased Damage per 15 Strength"]={{[1]={[1]={div=15,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}
-c["1% increased Effect of Arcane Surge on you per 25 maximum Mana"]={{[1]={[1]={div=25,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=1}},nil}
+c["1% increased Energy Shield Recharge Rate per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=1}},nil}
+c["1% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}
c["1% increased Movement Speed for each time you've Blocked in the past 10 seconds"]={{[1]={[1]={type="Multiplier",var="BlockedPast10Sec"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}
c["1% increased Movement Speed per 500 Evasion Rating"]={{[1]={[1]={div=500,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}
c["1% increased Movement Speed per 800 Evasion Rating"]={{[1]={[1]={div=800,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}
-c["1% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-1}},nil}
-c["1% to Maximum Fire Resistance for each 40% Uncapped Fire Resistance"]={{[1]={[1]={div=40,stat="FireResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}
+c["1% increased maximum Darkness per 1% Chaos Resistance"]={{[1]={[1]={div=1,stat="ChaosResist",type="PerStat"},flags=0,keywordFlags=0,name="Darkness",type="INC",value=1}},nil}
c["10 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}
+c["10 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=10}},nil}
+c["10% Chance to build an additional Combo on Hit"]={{}," to build an additional Combo "}
c["10% chance for Attack Hits to apply ten Incision"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictIncision",type="FLAG",value=true}},nil}
c["10% chance for Enemies you Kill to Explode, dealing 100%"]={{}," for Enemies you Kill to Explode, dealing 100% "}
c["10% chance for Enemies you Kill to Explode, dealing 100% of their maximum Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=100,chance=0.1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
@@ -867,13 +952,21 @@ c["10% chance for Mace Slam Skills you use yourself to cause Aftershocks 10% cha
c["10% chance for Mace Slam Skills you use yourself to cause Aftershocks 10% chance for Mace Strike Skills you use yourself to cause Aftershocks, dealing the same damage to enemies within 1.8 metres"]={{[1]={[1]={includeTransfigured=true,skillName="Mace Strike",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," for Mace Slam Skills you use yourself to cause Aftershocks 10% chance forSkills you use yourself to cause Aftershocks, dealing the same to enemies within 1.8 metres "}
c["10% chance for Mace Strike Skills you use yourself to cause Aftershocks, dealing"]={{}," forSkills you use yourself to cause Aftershocks, dealing "}
c["10% chance for Mace Strike Skills you use yourself to cause Aftershocks, dealing the same damage to enemies within 1.8 metres"]={{[1]={[1]={includeTransfigured=true,skillName="Mace Strike",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," forSkills you use yourself to cause Aftershocks, dealing the same to enemies within 1.8 metres "}
-c["10% chance for Projectiles to Pierce Enemies within 3m distance of you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=10}}," for to Pierce Enemies within 3m distance of you "}
c["10% chance to Aggravate Bleeding on targets you Hit with Attacks"]={{}," to Aggravate Bleeding on targets you Hit "}
+c["10% chance to Aggravate Bleeding on targets you Hit with Attacks 8% increased Attack Speed while a Rare or Unique Enemy is in your Presence"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=1,keywordFlags=65536,name="Speed",type="BASE",value=10}}," to Aggravate Bleeding on targets you Hit 8% increased "}
c["10% chance to Blind Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="BlindChance",type="BASE",value=10}},nil}
+c["10% chance to Daze on Hit"]={{}," to Daze "}
+c["10% chance to Daze on Hit 25% increased Daze Duration"]={{[1]={flags=4,keywordFlags=0,name="Duration",type="BASE",value=10}}," to Daze 25% increased Daze "}
+c["10% chance to Daze on Hit 30% increased Defences while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=4,keywordFlags=0,name="Defences",type="BASE",value=10}}," to Daze 30% increased "}
+c["10% chance to Daze on Hit 30% increased Defences while wielding a Quarterstaff 30% increased Freeze Buildup with Quarterstaves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=4,keywordFlags=0,name="Defences",type="BASE",value=10}}," to Daze 30% increased 30% increased Freeze Buildup with Quarterstaves "}
+c["10% chance to Daze on Hit 30% increased Defences while wielding a Quarterstaff 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=4,keywordFlags=0,name="Defences",type="BASE",value=10}}," to Daze 30% increased 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "}
+c["10% chance to Daze on Hit 40% increased Critical Hit Chance against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=4,keywordFlags=0,name="CritChance",type="BASE",value=10}}," to Daze 40% increased "}
+c["10% chance to Daze on Hit 40% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=4,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Daze 40% increased "}
c["10% chance to Defend with 200% of Armour"]={{[1]={[1]={type="Condition",var="ArmourMax"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Max Calc",type="MAX",value=100},[2]={[1]={type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Average Calc",type="MAX",value=10},[3]={[1]={neg=true,type="Condition",var="ArmourMax"},[2]={neg=true,type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Min Calc",type="MAX",value=0}},nil}
c["10% chance to Gain Arcane Surge when you deal a Critical Hit"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil}
c["10% chance to Pierce an Enemy"]={{}," to Pierce an Enemy "}
c["10% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}
+c["10% chance to gain Volatility on Kill"]={nil,"Volatility "}
c["10% chance to gain a Frenzy Charge on Hit"]={nil,"a Frenzy Charge on Hit "}
c["10% chance to inflict Bleeding on Critical Hit with Attacks"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=65536,name="BleedChance",type="BASE",value=10}},nil}
c["10% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}
@@ -882,29 +975,38 @@ c["10% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion"
c["10% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="LightningExposureChance",type="BASE",value=10}},nil}
c["10% chance to refresh Ignite Duration on Critical Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="BASE",value=10}}," to refresh "}
c["10% chance when a Charm is used to use another Charm without consuming Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=10}}," when a Charm is used to use another Charm without consuming "}
+c["10% chance when collecting an Elemental Infusion to gain an"]={{}," when collecting an Elemental Infusion to gain an "}
+c["10% chance when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type"]={{}," when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type "}
+c["10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"]={{}," when you gain a Frenzy Charge to gain an additional Frenzy Charge "}
+c["10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge +1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=10}}," when you gain a Frenzy Charge to gain an additional Frenzy Charge +1 to "}
+c["10% chance when you gain a Power Charge to gain an additional Power Charge"]={{}," when you gain a Power Charge to gain an additional Power Charge "}
+c["10% chance when you gain a Power Charge to gain an additional Power Charge +1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=10}}," when you gain a Power Charge to gain an additional Power Charge +1 to "}
+c["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge"]={{}," when you gain an Endurance Charge to gain an additional Endurance Charge "}
+c["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=10}}," when you gain an Endurance Charge to gain an additional Endurance Charge +1 to "}
c["10% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=10}},nil}
c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil}
c["10% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
c["10% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
c["10% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
-c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
c["10% increased Accuracy Rating with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
-c["10% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=38654705668,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}
c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
-c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}
-c["10% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}
c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil}
-c["10% increased Arrow Speed"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil}
+c["10% increased Armour and Evasion Rating per Summoned Totem in your Presence"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}}," in your Presence "}
+c["10% increased Armour and Evasion Rating per Summoned Totem in your Presence 10% increased Attack Damage per Summoned Totem in your Presence"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},[2]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}}," in your Presence 10% increased Attack Damage in your Presence "}
+c["10% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
-c["10% increased Attack Damage while you have an Ally in your Presence"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
-c["10% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}
+c["10% increased Attack Damage per Summoned Totem in your Presence"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}}," in your Presence "}
c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
c["10% increased Attack Speed with Spears"]={{[1]={flags=268435461,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
+c["10% increased Ballista Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=10}}," Ballista "}
+c["10% increased Ballista Critical Damage Bonus 10% increased Ballista Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=10}}," Ballista 10% increased Ballista Critical Hit Chance "}
+c["10% increased Ballista Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}}," Ballista "}
c["10% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=10}},nil}
c["10% increased Blind Effect"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=10}}}},nil}
c["10% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=10}},nil}
c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
c["10% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
+c["10% increased Cast Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil}
c["10% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=10}},nil}
c["10% increased Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=10}},nil}
@@ -916,6 +1018,7 @@ c["10% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="Co
c["10% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=10}},nil}
c["10% increased Critical Damage Bonus with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="INC",value=10}},nil}
c["10% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}
+c["10% increased Critical Hit Chance against Humanoids"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}}," against Humanoids "}
c["10% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}
c["10% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}
c["10% increased Critical Hit Chance with Crossbows"]={{[1]={flags=67108868,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}
@@ -925,9 +1028,12 @@ c["10% increased Critical Hit Chance with Traps"]={{[1]={flags=0,keywordFlags=40
c["10% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=10}},nil}
c["10% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil}
c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
+c["10% increased Damage against Demons"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," against Demons "}
+c["10% increased Damage for each Hazard triggered Recently, up to 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="DmgPerHazardRecently",type="Multiplier",var="HazardsTriggeredRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
+c["10% increased Damage while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," while your Companion is in your Presence "}
c["10% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
@@ -937,29 +1043,45 @@ c["10% increased Damage with Spears"]={{[1]={flags=268435460,keywordFlags=0,name
c["10% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Defences while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=10}}," while your Companion is in your Presence "}
+c["10% increased Deflection Rating"]={{}," Deflection Rating "}
+c["10% increased Deflection Rating while Surrounded"]={{}," Deflection Rating "}
+c["10% increased Deflection Rating while Surrounded 40% increased Ailment and Stun Threshold while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},[2]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=10}}," Deflection Rating 40% increased Ailment and "}
c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil}
+c["10% increased Duration of Ailments on Beasts"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=10}}," on Beasts "}
c["10% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=10}},nil}
c["10% increased Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}
-c["10% increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="WitherEffect",type="INC",value=10}},nil}
c["10% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=10}},nil}
c["10% increased Electrocute Buildup"]={{}," Electrocute Buildup "}
c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}
+c["10% increased Elemental Infusion duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}}," Elemental Infusion "}
+c["10% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=10}},nil}
c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil}
c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil}
+c["10% increased Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=10}},nil}
c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil}
c["10% increased Fire Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=10}},nil}
+c["10% increased Flammability Magnitude"]={{},"Magnitude "}
+c["10% increased Flammability Magnitude 10% increased Freeze Buildup"]={{},"Magnitude 10% increased Freeze Buildup "}
+c["10% increased Flammability Magnitude 10% increased Freeze Buildup 10% increased chance to Shock"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=10}},"Magnitude 10% increased Freeze Buildup 10% increased "}
+c["10% increased Flammability Magnitude 8% increased Elemental Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},"Magnitude 8% increased "}
c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}
c["10% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=10}},nil}
c["10% increased Flask and Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}
c["10% increased Freeze Buildup"]={{}," Freeze Buildup "}
+c["10% increased Freeze Buildup 10% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=10}}," Freeze Buildup 10% increased "}
c["10% increased Freeze Buildup 8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}}," Freeze Buildup 8% increased "}
c["10% increased Freeze Threshold"]={{[1]={flags=0,keywordFlags=0,name="FreezeThreshold",type="INC",value=10}},nil}
c["10% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil}
c["10% increased Global Defences per Socket filled"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil}
+c["10% increased Grenade Area of Effect"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}
+c["10% increased Hazard Area of Effect"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}
+c["10% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=10}},nil}
+c["10% increased Immobilisation buildup against Constructs"]={{}," Immobilisation buildup against Constructs "}
c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}
c["10% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=10}},nil}
c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10}},nil}
c["10% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=10}},nil}
+c["10% increased Life Recovery rate per 5% missing Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=10}}," per 5% missing Unreserved Life "}
c["10% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=10}},nil}
c["10% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}
c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil}
@@ -967,9 +1089,11 @@ c["10% increased Lightning Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name=
c["10% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=10}},nil}
c["10% increased Magnitude of Bleeding you inflict"]={{[1]={flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="INC",value=10}},nil}
c["10% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=10}},nil}
-c["10% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=10}},nil}
+c["10% increased Magnitude of Non-Damaging Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=10}},nil}
c["10% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=10}},nil}
c["10% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=10}},nil}
+c["10% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}}," Efficiency "}
+c["10% increased Mana Cost Efficiency Triggered Spells deal 40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="ManaCost",type="INC",value=10}}," Efficiency Triggered s deal 40% increased Spell Damage "}
c["10% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}},nil}
c["10% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=10}},nil}
c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}
@@ -979,7 +1103,9 @@ c["10% increased Melee Critical Hit Chance"]={{[1]={flags=256,keywordFlags=0,nam
c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}
c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}
+c["10% increased Movement Speed while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}
c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}
+c["10% increased Pin duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}}," Pin "}
c["10% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10}},nil}
c["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"]={{[1]={[1]={globalLimit=100,globalLimitKey="NoxiousStrike",type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10}},nil}
c["10% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=10}},nil}
@@ -989,31 +1115,40 @@ c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loo
c["10% increased Rarity of Items found per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil}
c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}
c["10% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=10}},nil}
+c["10% increased Skill Speed if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10},[2]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=10}},nil}
+c["10% increased Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased Spell Damage per 10 Spirit"]={{[1]={[1]={div=10,stat="Spirit",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
+c["10% increased Spirit Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=10}},nil}
c["10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10}},nil}
c["10% increased Stun Buildup"]={{}," Stun Buildup "}
c["10% increased Stun Buildup 10% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup 10% increased "}
-c["10% increased Stun Buildup 10% increased Freeze Buildup"]={{}," Stun Buildup 10% increased Freeze Buildup "}
c["10% increased Stun Buildup 10% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=10}}," Stun Buildup 10% increased "}
+c["10% increased Stun Buildup 10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup 10% increased "}
c["10% increased Stun Buildup 16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup 16% increased "}
c["10% increased Stun Buildup 16% increased Melee Damage +10 to Strength"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup 16% increased +10 to Strength "}
+c["10% increased Stun Buildup Ancestrally Boosted Attacks deal 16% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup Ancestrally Boosted Attacks deal 16% increased "}
c["10% increased Stun Buildup Damage Penetrates 5% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," Stun Buildup Penetrates 5% Fire Resistance "}
c["10% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=10}},nil}
+c["10% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=10}}," for each time you've been Hit by an Enemy Recently, up to 100% "}
c["10% increased Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=10}},nil}
c["10% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=10}},nil}
c["10% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=10}},nil}
c["10% increased Weapon Damage per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
+c["10% increased Withered Magnitude"]={{}," Withered Magnitude "}
c["10% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=10}},nil}
c["10% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=10}},nil}
-c["10% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=10}},nil}
c["10% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=10}},nil}
c["10% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=10}},nil}
+c["10% increased damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["10% increased effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=10}},nil}
+c["10% increased effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=10}}," of Archon Buffs on you "}
+c["10% increased effect of Fully Broken Armour"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=10}}," of Fully Broken Armour "}
c["10% increased maximum Darkness"]={{[1]={flags=0,keywordFlags=0,name="Darkness",type="INC",value=10}},nil}
c["10% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil}
c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}
c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil}
+c["10% increased total Power counted by Warcries"]={{[1]={flags=0,keywordFlags=0,name="WarcryPower",type="INC",value=10}},nil}
c["10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="MORE",value=-10},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="MORE",value=-10}}," Movement and per Dodge Roll in the past 20 seconds "}
c["10% more chance to Evade Attacks if you have been Hit by an Attack Recently"]={{[1]={[1]={type="Condition",var="BeenHitByAttackRecently"},flags=0,keywordFlags=0,name="EvadeChance",type="MORE",value=10}},nil}
c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}
@@ -1022,32 +1157,42 @@ c["10% of Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,na
c["10% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=10}},nil}
c["10% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=10}},nil}
c["10% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=10}},nil}
+c["10% of Physical Damage prevented Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," prevented Recouped as Life "}
+c["10% of Physical Damage prevented Recouped as Life 14% increased speed of Recoup Effects"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," prevented Recouped as Life 14% increased speed of Recoup Effects "}
+c["10% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=10}},nil}
c["10% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=10}},nil}
c["10% of Spell Damage Leeched as Life"]={{[1]={flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=10}},nil}
c["10% of Thorns Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamageLifeLeech",type="BASE",value=10}},nil}
-c["10% reduced Arrow Speed"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-10}},nil}
c["10% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}
c["10% reduced Cast Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=16,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}
c["10% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=-10}},nil}
-c["10% reduced Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="INC",value=-10}},nil}
c["10% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil}
c["10% reduced Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=-10}},nil}
c["10% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-10}},nil}
+c["10% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-10}},nil}
c["10% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesUsed",type="INC",value=-10}},nil}
c["10% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-10}},nil}
c["10% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-10}},nil}
c["10% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-10}},nil}
c["10% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-10}},nil}
-c["10% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil}
+c["10% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-10}},nil}
c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil}
c["10% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}," Penalty from using Skills "}
+c["10% reduced Movement Speed Penalty while Actively Blocking"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}," Penalty ly Blocking "}
+c["10% reduced Poison Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfPoisonDuration",type="INC",value=-10}},nil}
+c["10% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-10}},nil}
+c["10% reduced Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-10}},nil}
c["10% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=-10}},nil}
c["10% reduced Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=-10}},nil}
c["10% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["10% reduced Slowing Potency of Debuffs on You 10% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}," Slowing Potency of Debuffs on You 10% reduced Penalty from using Skills "}
+c["10% reduced Slowing Potency of Debuffs on You 12% increased Critical Spell Damage Bonus"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="INC",value=-10}}," Slowing Potency of Debuffs on You 12% increased "}
c["10% reduced Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damage",type="INC",value=-10}},nil}
-c["10% reduced effect of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-10}},nil}
+c["10% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-10}},nil}
+c["10% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-10}},nil}
c["10% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-10}},nil}
+c["100 Passive Skill Points become Weapon Set Skill Points"]={{[1]={flags=0,keywordFlags=0,name="PassivePointsToWeaponSetPoints",type="BASE",value=100}},nil}
+c["100% chance to Daze Enemies whose Hits you Block while Actively Blocking"]={{}," to Daze Enemies whose Hits you Block ly Blocking "}
c["100% chance to not consume a bolt if you've Reloaded Recently"]={{}," to not consume a bolt if you've Reloaded Recently "}
c["100% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=100}},nil}
c["100% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil}
@@ -1055,11 +1200,14 @@ c["100% increased Armour Break Duration"]={{[1]={flags=0,keywordFlags=0,name="Ar
c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil}
c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil}
c["100% increased Arrow Speed"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileSpeed",type="INC",value=100}},nil}
+c["100% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=100}},nil}
c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil}
c["100% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=100}},nil}
+c["100% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=100}},nil}
c["100% increased Block chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileBlockChance",type="INC",value=100}},nil}
c["100% increased Chance to be afflicted by Ailments when Hit"]={{}," Chance to be afflicted by Ailments when Hit "}
c["100% increased Chance to be afflicted by Ailments when Hit 20% increased Movement Speed while affected by an Ailment"]={{[1]={[1]={type="Condition",varList={[1]="Bleeding",[2]="Poisoned",[3]="Ignited",[4]="Chilled",[5]="Frozen",[6]="Shocked",[7]="Electrocuted"}},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}," Chance to be afflicted by Ailments when Hit 20% increased "}
+c["100% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=100}},nil}
c["100% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}},nil}
c["100% increased Critical Damage Bonus against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=100}},nil}
c["100% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}
@@ -1069,6 +1217,7 @@ c["100% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2
c["100% increased Effect of Jewel Socket Passive Skills"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=100}}," of Jewel Socket Passive Skills "}
c["100% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=100}}},nil}
c["100% increased Effect of the Socketed Jewel"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=100}},nil}
+c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}
c["100% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=100}},nil}
c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil}
c["100% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=100}},nil}
@@ -1077,23 +1226,29 @@ c["100% increased Evasion Rating from Equipped Body Armour"]={{[1]={[1]={slotNam
c["100% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}
c["100% increased Evasion Rating if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}
c["100% increased Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}
+c["100% increased Evasion Rating while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}}," while Sprinting "}
c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil}
c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}
+c["100% increased Flammability Magnitude"]={{},"Magnitude "}
+c["100% increased Flammability Magnitude 100% increased Ignite Magnitude"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=100}},"Magnitude 100% increased "}
+c["100% increased Flammability Magnitude 30% increased Light Radius"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="LightRadius",type="INC",value=100}},"Magnitude 30% increased "}
c["100% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=100}},nil}
c["100% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["100% increased Freeze Buildup Enemies Frozen by you take 50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}," Freeze Buildup Enemies Frozen by you take 50% increased "}
+c["100% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=100}},nil}
c["100% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=100}},nil}
-c["100% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=100}},nil}
c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}
c["100% increased Parried Debuff Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," Parried Debuff "}
c["100% increased Parry Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}
c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}
c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil}
+c["100% increased Spell Physical Damage"]={{[1]={flags=2,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}
c["100% increased Stun Threshold during Empowered Attacks"]={{[1]={[1]={type="Condition",var="Empowered"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=100}},nil}
+c["100% increased Stun Threshold for each time you've been Stunned Recently"]={{[1]={[1]={type="Multiplier",var="StunnedRecently"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=100}},nil}
c["100% increased Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=100}},nil}
c["100% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=100}},nil}
-c["100% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=100}},nil}
c["100% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=100}},nil}
+c["100% increased effect of Socketed Items"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=100}}," of Socketed Items "}
c["100% increased effect of Socketed Soul Cores"]={{[1]={flags=0,keywordFlags=0,name="SocketedSoulCoreEffect",type="INC",value=100}},nil}
c["100% of Cold Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToLightning",type="BASE",value=100}},nil}
c["100% of Elemental Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageConvertToChaos",type="BASE",value=100}},nil}
@@ -1102,20 +1257,29 @@ c["100% of Fire Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywo
c["100% of Fire damage Converted to Lightning damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToLightning",type="BASE",value=100}},nil}
c["100% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=100}},nil}
c["100% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=100}},nil}
-c["100% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"]={{[1]={[1]={percent=100,stat="StrRequirementsOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[2]={[1]={percent=100,stat="StrRequirementsOnGloves",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[3]={[1]={percent=100,stat="StrRequirementsOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},nil}
+c["100% of Parry Physical Damage Converted to Cold Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=100}},nil}
c["1000% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=1000}},nil}
+c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil}
c["11% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=11}},nil}
c["11% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=11}},nil}
+c["11% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=11}},nil}
+c["11% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=11}},nil}
+c["111% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=111}},nil}
c["115% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=115}},nil}
c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil}
c["119% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=119}},nil}
c["12 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12}},nil}
c["12% chance for Spell Skills to fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="TwoAdditionalProjectilesChance",type="BASE",value=12}},nil}
+c["12% chance for Trigger skills to refund half of Energy Spent"]={{}," for Trigger skills to refund half of Energy Spent "}
+c["12% chance for Trigger skills to refund half of Energy Spent 8% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="BASE",value=12}}," for Trigger skills to refund half of Energy Spent 8% increased "}
+c["12% chance to Blind Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="BlindChance",type="BASE",value=12}},nil}
c["12% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}
c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}
+c["12% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}
+c["12% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}
+c["12% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}
c["12% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=12}},nil}
c["12% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil}
-c["12% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}
@@ -1126,56 +1290,70 @@ c["12% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance"
c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}
c["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}
c["12% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=12}},nil}
+c["12% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=12}},nil}
c["12% increased Critical Damage Bonus per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=12}},nil}
c["12% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}
c["12% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}
c["12% increased Critical Hit Chance with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}
c["12% increased Critical Hit Chance with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}
+c["12% increased Critical Spell Damage Bonus"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="INC",value=12}},nil}
c["12% increased Damage while affected by a Herald"]={{[1]={[1]={type="Condition",var="AffectedByHerald"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Damage with Crossbows"]={{[1]={flags=67108868,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Damage with Hits against Enemies affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},flags=0,keywordFlags=262144,name="Damage",type="INC",value=12}},nil}
-c["12% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=12}},nil}
+c["12% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=12}},nil}
c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}
c["12% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=12}},nil}
c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil}
c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}
+c["12% increased Flammability Magnitude"]={{},"Magnitude "}
+c["12% increased Flammability Magnitude 12% increased Freeze Buildup"]={{},"Magnitude 12% increased Freeze Buildup "}
+c["12% increased Flammability Magnitude 12% increased Freeze Buildup 12% increased chance to Shock"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=12}},"Magnitude 12% increased Freeze Buildup 12% increased "}
+c["12% increased Flammability Magnitude 6% increased Critical Hit Chance"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=12}},"Magnitude 6% increased "}
c["12% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["12% increased Freeze Buildup 12% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=12}}," Freeze Buildup 12% increased "}
-c["12% increased Grenade Area of Effect"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}
c["12% increased Grenade Damage"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
+c["12% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=12}},nil}
+c["12% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=12}},nil}
c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}
c["12% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=12}},nil}
-c["12% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=12}},nil}
c["12% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=12}},nil}
c["12% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=12}},nil}
c["12% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
+c["12% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil}
+c["12% increased Movement Speed while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}}," while Sprinting "}
c["12% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}
-c["12% increased Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
+c["12% increased Reservation Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=12}},nil}
c["12% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
+c["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}}," if you have consumed an Elemental Infusion Recently "}
c["12% increased Spell Damage per 10 Spirit"]={{[1]={[1]={div=10,stat="Spirit",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Spell Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
c["12% increased Spell Damage while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}
+c["12% increased Spell Damage with Spells that cost Life"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}}," with Spells that cost Life "}
c["12% increased Stun Buildup"]={{}," Stun Buildup "}
c["12% increased Stun Buildup 10% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=12}}," Stun Buildup 10% increased "}
+c["12% increased Stun Buildup Gain additional Stun Threshold equal to 10% of maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=12}}," Stun Buildup Gain additional equal to 10% of maximum Energy Shield "}
c["12% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=12}},nil}
+c["12% increased Stun Threshold if you haven't been Stunned Recently"]={{[1]={[1]={neg=true,type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=12}},nil}
c["12% increased Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=12}},nil}
c["12% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=12}},nil}
c["12% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=12}},nil}
-c["12% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=12}},nil}
-c["12% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=12}},nil}
c["12% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=12}},nil}
c["12% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil}
c["12% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil}
+c["12% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=12}},nil}
c["12% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-12}}," Penalty from using Skills "}
c["12.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12.5}},nil}
c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil}
c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil}
+c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil}
c["120% increased Armour and Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil}
+c["120% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=120}},nil}
c["120% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=120}},nil}
c["120% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=120}},nil}
+c["120% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=120}},nil}
c["120% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=120}},nil}
c["120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=120}},nil}
c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=120}},nil}
@@ -1183,6 +1361,7 @@ c["120% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",
c["120% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=120}},nil}
c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}
c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}
+c["120% increased Spell Physical Damage"]={{[1]={flags=2,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}
c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil}
c["125% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=125}},nil}
c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil}
@@ -1191,15 +1370,13 @@ c["125% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskCha
c["125% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=125}},nil}
c["125% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=125}},nil}
c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=125}},nil}
-c["13% chance to Gain 50% of Damage with Hits as Extra Chaos Damage"]={{[1]={flags=4,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=6.5}},nil}
-c["13% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=13}},nil}
c["13% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}},nil}
+c["13% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=13}},nil}
c["13% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil}
c["13% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=13}},nil}
c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}
c["13% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=13}},nil}
c["13% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=13},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=13}},nil}
-c["13% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=13}},nil}
c["13% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-13}},nil}
c["13% reduced Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=-13}},nil}
c["13% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-13}},nil}
@@ -1212,9 +1389,11 @@ c["130% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",
c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil}
c["14% increased Damage with Hits against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=14}},nil}
c["14% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=14}},nil}
-c["14% increased Damage with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="Damage",type="INC",value=14}},nil}
c["14% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=14}},nil}
c["14% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=14}},nil}
+c["14% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=14}},nil}
+c["14% increased speed of Recoup Effects"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=14}}," speed of Recoup s "}
+c["14% increased speed of Recoup Effects Recover 4% of maximum Life on Killing a Poisoned Enemy"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=14}}," speed of Recoup s Recover 4% of maximum Life ing a Poisoned Enemy "}
c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil}
c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil}
c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil}
@@ -1223,39 +1402,51 @@ c["15 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeReg
c["15 to 25 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=15}}," to 25 Physical "}
c["15 to 25 Physical Thorns damage Thorns can Retaliate against all Hits"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=15}}," to 25 Physical Thorns can Retaliate against all Hits "}
c["15% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}},nil}
-c["15% chance for Crossbow Attacks to not consume a bolt"]={{[1]={[1]={skillType=116,type="SkillType"},flags=67108864,keywordFlags=0,name="ChanceToNotConsumeAmmo",type="BASE",value=15}},nil}
+c["15% chance for Remnants you create to grant their effects twice"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="BASE",value=15}}," for Remnants you create to grant their s twice "}
c["15% chance to Blind Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="BlindChance",type="BASE",value=15}},nil}
+c["15% chance to Impale on Spell Hit"]={{[1]={flags=2,keywordFlags=0,name="ImpaleChance",type="BASE",value=15}},nil}
c["15% chance to Pierce an Enemy"]={{}," to Pierce an Enemy "}
c["15% chance to Pierce an Enemy 15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="BASE",value=15}}," to Pierce an Enemy 15% increased "}
c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil}
-c["15% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=15}},nil}
c["15% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}
c["15% chance to gain a Power Charge on Critical Hit"]={nil,"a Power Charge "}
c["15% chance to inflict Bleeding on Critical Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}
c["15% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}
c["15% chance to not destroy Corpses when Consuming Corpses"]={{}," to not destroy Corpses when Consuming Corpses "}
+c["15% chance when a Charm is used to use another Charm without consuming Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}}," when a Charm is used to use another Charm without consuming "}
+c["15% chance when a Charm is used to use another Charm without consuming Charges Charms applied to you have 25% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}}," when a Charm is used to use another Charm without consuming Charms applied to you have 25% increased Effect "}
c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil}
c["15% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}
c["15% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}
+c["15% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}}," Archon Buff "}
c["15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
c["15% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
-c["15% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
-c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
+c["15% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
+c["15% increased Area of Effect while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}
c["15% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil}
c["15% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Attack Critical Hit Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
-c["15% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}
+c["15% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}
+c["15% increased Attack Speed while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}
+c["15% increased Ballista Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=15}}," Ballista "}
+c["15% increased Ballista Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}}," Ballista "}
+c["15% increased Ballista damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}," Ballista "}
c["15% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=15}},nil}
c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}
c["15% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=15}},nil}
c["15% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15}},nil}
c["15% increased Chill and Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15}},nil}
c["15% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil}
+c["15% increased Cost Efficiency"]={{}," Cost Efficiency "}
+c["15% increased Cost Efficiency of Attacks"]={{}," Cost Efficiency of Attacks "}
+c["15% increased Cost Efficiency of Attacks 18% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=15}}," Cost Efficiency of Attacks 18% of Skill s Converted to Life Costs "}
c["15% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=15}},nil}
c["15% increased Critical Damage Bonus for Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="CritMultiplier",type="INC",value=15}},nil}
c["15% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
+c["15% increased Critical Hit Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
+c["15% increased Critical Hit Chance against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
c["15% increased Critical Hit Chance against Enemies that have entered your Presence Recently"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}}," against Enemies that have entered your Presence Recently "}
c["15% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
c["15% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
@@ -1263,31 +1454,40 @@ c["15% increased Critical Hit Chance with Daggers"]={{[1]={flags=524292,keywordF
c["15% increased Critical Hit Chance with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
c["15% increased Critical Spell Damage Bonus"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="INC",value=15}},nil}
c["15% increased Crossbow Reload Speed"]={{[1]={flags=67108865,keywordFlags=0,name="ReloadSpeed",type="INC",value=15}},nil}
-c["15% increased Damage for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15},[3]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15},[4]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15},[5]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
+c["15% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Damage if you have Consumed a Corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Damage with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Damage with Hits against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}
c["15% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
-c["15% increased Daze Buildup"]={{}," Daze Buildup "}
c["15% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=15}},nil}
c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}
c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}
+c["15% increased Duration of Ailments against Enemies with Exposure"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=15}}," against Enemies with Exposure "}
c["15% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=15}},nil}
+c["15% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=15}},nil}
c["15% increased Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}
c["15% increased Electrocute Buildup"]={{}," Electrocute Buildup "}
c["15% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=15}},nil}
+c["15% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil}
c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil}
-c["15% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=15}},nil}
c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil}
+c["15% increased Evasion Rating while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}}," while Sprinting "}
+c["15% increased Evasion Rating while Sprinting 2% increased Movement Speed while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}}," while Sprinting 2% increased Movement Speed while Sprinting "}
c["15% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}
+c["15% increased Flammability Magnitude"]={{},"Magnitude "}
c["15% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=15}},nil}
c["15% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=15}},nil}
c["15% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["15% increased Freeze Buildup 15% increased Chill and Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15}}," Freeze Buildup 15% increased "}
c["15% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}
+c["15% increased Glory generation"]={{}," Glory generation "}
c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}
+c["15% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=15}},nil}
+c["15% increased Immobilisation buildup"]={{}," Immobilisation buildup "}
c["15% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}
+c["15% increased Life Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="LifeCost",type="INC",value=15}},nil}
c["15% increased Life Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGained",type="INC",value=15}},nil}
+c["15% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=15}},nil}
c["15% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=15}},nil}
c["15% increased Life Regeneration Rate while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=15}},nil}
c["15% increased Life Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=15}},nil}
@@ -1298,9 +1498,11 @@ c["15% increased Magnitude of Bleeding you inflict against Enemies affected by I
c["15% increased Magnitude of Bleeding you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="INC",value=15}},nil}
c["15% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=15}},nil}
c["15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=14680064,name="AilmentMagnitude",type="INC",value=15}},nil}
+c["15% increased Magnitude of Daze"]={{}," Magnitude of Daze "}
c["15% increased Magnitude of Ignite you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=15}},nil}
c["15% increased Magnitude of Jagged Ground you create"]={{[1]={flags=0,keywordFlags=0,name="EnemyJaggedGroundMagnitude",type="INC",value=15}},nil}
c["15% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=15}},nil}
+c["15% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=15}}," Efficiency "}
c["15% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=15}},nil}
c["15% increased Mana Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGained",type="INC",value=15}},nil}
c["15% increased Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=15}},nil}
@@ -1308,47 +1510,52 @@ c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="Ma
c["15% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=256,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Melee Damage with Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}
-c["15% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}}}},nil}
+c["15% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}
c["15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}
c["15% increased Parried Debuff Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}}," Parried Debuff "}
c["15% increased Pin Buildup"]={{}," Pin Buildup "}
+c["15% increased Pin duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}}," Pin "}
c["15% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=15}},nil}
c["15% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=15}},nil}
c["15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil}
-c["15% increased Projectile Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=15}}," Stun Buildup "}
c["15% increased Quantity of Gold Dropped by Slain Enemies"]={{}," Quantity of Gold Dropped by Slain Enemies "}
c["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil}
c["15% increased Shock Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=15}},nil}
c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}
c["15% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=15}},nil}
+c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Spell Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}
c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil}
c["15% increased Stun Buildup"]={{}," Stun Buildup "}
+c["15% increased Stun Buildup 15% increased Freeze Buildup"]={{}," Stun Buildup 15% increased Freeze Buildup "}
c["15% increased Stun Buildup with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=15}}," Stun Buildup with "}
c["15% increased Stun Buildup with Melee Damage +15 to Strength"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=15}}," Stun Buildup with +15 to Strength "}
c["15% increased Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=15}},nil}
c["15% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=15}},nil}
c["15% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=15}},nil}
c["15% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=15}},nil}
+c["15% increased Volatility Explosion delay"]={{}," Volatility Explosion delay "}
c["15% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=15}},nil}
c["15% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=15}},nil}
-c["15% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=15}},nil}
c["15% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=15}},nil}
c["15% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=15}},nil}
c["15% increased effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=15}},nil}
+c["15% increased effect of Fully Broken Armour"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=15}}," of Fully Broken Armour "}
+c["15% increased effect of Fully Broken Armour Fully Broken Armour effects also apply to Fire Damage Taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=15}}," of Fully Broken Armour Fully Broken Armour effects also apply to Fire Damage Taken from Hits "}
c["15% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=15}},nil}
c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}
c["15% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=15}},nil}
c["15% more Maximum Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="MaxLightningDamage",type="MORE",value=15}},nil}
c["15% of Damage from Hits is taken from your Damageable Companion's Life before you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," from Hits is taken from your Damageable Companion's Life before you "}
-c["15% of Elemental Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningLifeRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdLifeRecoup",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="FireLifeRecoup",type="BASE",value=15}},nil}
+c["15% of Damage taken from Deflected Hits Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=15}}," from Deflected Hits Recouped as Life "}
+c["15% of Elemental Damage taken Recouped as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningEnergyShieldRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdEnergyShieldRecoup",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="FireEnergyShieldRecoup",type="BASE",value=15}},nil}
+c["15% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=15}},nil}
c["15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=15}},nil}
c["15% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=15}},nil}
c["15% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=15}},nil}
-c["15% of Physical Damage prevented Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=15}}," prevented Recouped as Life "}
-c["15% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=15}},nil}
+c["15% of Spell Mana Cost Converted to Life Cost"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=15}},nil}
c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}
c["15% reduced Attack Speed with Crossbows"]={{[1]={flags=67108869,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}
c["15% reduced Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}
@@ -1356,14 +1563,16 @@ c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="IN
c["15% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}
c["15% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=-15}},nil}
c["15% reduced Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=-15}},nil}
+c["15% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-15}},nil}
c["15% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-15}},nil}
c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}
-c["15% reduced Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=-15}},nil}
-c["15% reduced Mana Cost while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}
-c["15% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-15}},nil}
-c["15% reduced Reservation of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-15}},nil}
+c["15% reduced Grenade Detonation Time"]={{}," Detonation Time "}
+c["15% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-15}},nil}
+c["15% reduced Movement Speed Penalty while Actively Blocking"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}}," Penalty ly Blocking "}
+c["15% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-15}},nil}
c["15% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["15% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-15}},nil}
+c["15% reduced Volatility Explosion delay"]={{}," Volatility Explosion delay "}
c["15% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-15}},nil}
c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil}
c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil}
@@ -1378,9 +1587,10 @@ c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name
c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}
c["150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=150}},nil}
c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil}
+c["150% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"]={{[1]={[1]={percent=150,stat="StrRequirementsOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[2]={[1]={percent=150,stat="StrRequirementsOnGloves",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[3]={[1]={percent=150,stat="StrRequirementsOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},nil}
c["16% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=16}},nil}
-c["16% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil}
-c["16% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=16}},nil}
+c["16% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}
+c["16% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=38654705668,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}
c["16% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
c["16% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
c["16% increased Attack Damage against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
@@ -1389,20 +1599,22 @@ c["16% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condit
c["16% increased Attack Speed if you haven't Attacked Recently"]={{[1]={[1]={neg=true,type="Condition",var="AttackedRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil}
c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}
c["16% increased Cast Speed if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}
+c["16% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=16}},nil}
c["16% increased Critical Damage Bonus with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="INC",value=16}},nil}
c["16% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}
c["16% increased Damage with Warcries"]={{[1]={flags=0,keywordFlags=4,name="Damage",type="INC",value=16}},nil}
c["16% increased Hazard Damage"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
+c["16% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=16}}," Efficiency "}
+c["16% increased Mana Cost Efficiency 30% increased Mana Regeneration Rate while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=16}}," Efficiency 30% increased Mana Regeneration Rate "}
c["16% increased Mana Regeneration Rate while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=16}},nil}
c["16% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=16}},nil}
c["16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
c["16% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=16},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=16}},nil}
-c["16% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
+c["16% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=16}},nil}
c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil}
c["16% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=16}},nil}
c["16% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
c["16% increased Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=16}},nil}
-c["16% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=16}},nil}
c["16% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=16}},nil}
c["16% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=16}},nil}
c["16% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-16}},nil}
@@ -1414,19 +1626,15 @@ c["175% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC
c["175% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=175}},nil}
c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=175}},nil}
c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=175}},nil}
-c["179% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=179}},nil}
c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil}
c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil}
-c["18% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=18}},nil}
c["18% increased Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=18}},nil}
-c["18% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}},nil}
+c["18% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=18}},nil}
c["18% increased Critical Damage Bonus with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="INC",value=18}},nil}
c["18% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil}
-c["18% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=18}},nil}
-c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}
c["18% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=18}},nil}
-c["18% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}
c["18% increased Projectile Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=18}}," Stun Buildup "}
+c["18% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=18}},nil}
c["18% increased Stun Buildup"]={{}," Stun Buildup "}
c["18% increased Stun Buildup with Maces"]={{}," Stun Buildup "}
c["18% increased Stun Buildup with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=18}}," Stun Buildup with "}
@@ -1435,31 +1643,35 @@ c["18% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keyw
c["18% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=18}},nil}
c["18% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=18}},nil}
c["18% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=18}},nil}
+c["180% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=180}},nil}
c["19% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=19}},nil}
c["195% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=195}},nil}
-c["2 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=2}},nil}
c["2% chance to Recover all Life when you Kill an Enemy"]={{[1]={[1]={percent=2,stat="Life",type="PercentStat"},[2]={type="Condition",var="AverageResourceGain"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1},[2]={[1]={percent=100,stat="Life",type="PercentStat"},[2]={type="Condition",var="MaxResourceGain"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}
c["2% increased Area of Effect for Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}},nil}
-c["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}},nil}
+c["2% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},[2]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}},nil}
c["2% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}
c["2% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}
+c["2% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}
c["2% increased Damage per 5 of your lowest Attribute"]={{[1]={[1]={div=5,stat="LowestAttribute",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=2}},nil}
c["2% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=2}},nil}
c["2% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=2}},nil}
c["2% increased Maximum Life per socketed Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Life",type="INC",value=2}},nil}
c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}
-c["2% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=2}},nil}
+c["2% increased Movement Speed while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}," while Sprinting "}
c["2% increased Spirit per socketed Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Spirit",type="INC",value=2}},nil}
c["2% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=2}},nil}
c["2% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=2}},nil}
c["20 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}
-c["20 Passive Skill Points become Weapon Set Skill Points"]={{[1]={flags=0,keywordFlags=0,name="PassivePointsToWeaponSetPoints",type="BASE",value=20}},nil}
c["20 to 30 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=20}}," to 30 Physical "}
+c["20% Chance to build an additional Combo on Hit"]={{}," to build an additional Combo "}
c["20% chance for Attack Hits to apply Incision"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictIncision",type="FLAG",value=true}},nil}
c["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground"]={{}," to be Aggravated when Inflicted against Enemies on Jagged Ground "}
c["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground 40% increased Jagged Ground Duration"]={{[1]={flags=0,keywordFlags=4194304,name="Duration",type="BASE",value=20}}," to be Aggravated when Inflicted against Enemies on Jagged Ground 40% increased Jagged Ground "}
c["20% chance for Charms you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=20}}," for Charms you use to not consume "}
c["20% chance for Charms you use to not consume Charges Recover 5% of maximum Mana when a Charm is used"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=20}}," for Charms you use to not consume Recover 5% of maximum Mana when a Charm is used "}
+c["20% chance for Damage of Enemies Hitting you to be Unlucky"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=20}}," for of Enemies Hitting you to be Unlucky "}
+c["20% chance for Damage of Enemies Hitting you to be Unlucky 20% chance for Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="BASE",value=20}}," for of Enemies Hitting you to be Unlucky 20% chance for Damage to be Lucky "}
+c["20% chance for Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="BASE",value=20}}," for to be Lucky "}
c["20% chance for Energy Shield Recharge to start when you Kill an Enemy"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," for Recharge to start "}
c["20% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskChanceNotConsumeCharges",type="BASE",value=20}},nil}
c["20% chance for Lightning Skills to Chain an additional time"]={{}," for Lightning Skills to Chain an additional time "}
@@ -1470,36 +1682,48 @@ c["20% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="
c["20% chance to Knock Enemies Back with Hits at Close Range"]={{}," to Knock Enemies Back "}
c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}
c["20% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}
+c["20% chance to gain Flame Archon when you Ignite an Enemy"]={nil,"Flame Archon when you Ignite an Enemy "}
c["20% chance to gain a Power Charge on Hit"]={nil,"a Power Charge on Hit "}
c["20% chance to gain a Power Charge on Hit Lose all Power Charges on reaching maximum Power Charges"]={nil,"a Power Charge on Hit Lose all Power Charges on reaching maximum Power Charges "}
c["20% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}
c["20% chance to load a bolt into all Crossbow skills on Kill"]={{}," to load a bolt into all skills "}
c["20% chance to load a bolt into all Crossbow skills on Kill Sacrifice 300 Life to not consume the last bolt when firing"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=67108864,keywordFlags=0,name="Life",type="BASE",value=20}}," to load a bolt into all skills 300 to not consume the last bolt when firing "}
+c["20% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=20}},nil}
c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil}
+c["20% faster start of Energy Shield Recharge while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}}," while affected by an Archon Buff "}
+c["20% faster start of Energy Shield Recharge while affected by an Archon Buff 40% increased Energy Shield Recharge Rate while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}}," while affected by an Archon Buff 40% increased Energy Shield Recharge Rate while affected by an Archon Buff "}
c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}
c["20% increased Accuracy Rating against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}
c["20% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}
c["20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
-c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
-c["20% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
c["20% increased Area of Effect of Curses"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=20}},nil}
-c["20% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}
c["20% increased Armour Break Duration"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}}," Break Duration "}
c["20% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=20}},nil}
c["20% increased Armour if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}
c["20% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}
c["20% increased Armour if you've consumed an Endurance Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableEnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}
+c["20% increased Armour while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}
+c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
+c["20% increased Attack Damage if you have been Heavy Stunned Recently"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}}," if you have been Heavy Stunned Recently "}
+c["20% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
+c["20% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
+c["20% increased Attack Damage while you have no Life Flask uses left"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have no Life Flask uses left "}
c["20% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}
c["20% increased Attack Speed while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}
+c["20% increased Ballista Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}}," Ballista "}
+c["20% increased Ballista Immobilisation buildup"]={{}," Ballista Immobilisation buildup "}
c["20% increased Blind Effect"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=20}}}},nil}
c["20% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=20}},nil}
c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}
c["20% increased Cast Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}
+c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil}
c["20% increased Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=20}},nil}
c["20% increased Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=20}},nil}
c["20% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20}},nil}
+c["20% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently"]={{}," Cost Efficiency of Skills "}
+c["20% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently Triggered Spells deal 40% increased Spell Damage"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovablePowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}}," Cost Efficiency of Skills Triggered s deal 40% increased Spell "}
c["20% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=20}},nil}
c["20% increased Critical Damage Bonus for Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="CritMultiplier",type="INC",value=20}},nil}
c["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=20}},nil}
@@ -1508,78 +1732,104 @@ c["20% increased Critical Damage Bonus if you've gained a Power Charge Recently"
c["20% increased Critical Damage Bonus with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="CritMultiplier",type="INC",value=20}},nil}
c["20% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
c["20% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
+c["20% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
c["20% increased Critical Hit Chance if you have Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
c["20% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
+c["20% increased Culling Strike Threshold"]={{}," Culling Strike Threshold "}
+c["20% increased Culling Strike Threshold Culling Strike against Beasts while your Companion is in your Presence"]={{}," Culling Strike Threshold Culling Strike against Beasts while your Companion is in your Presence "}
c["20% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=20}},nil}
-c["20% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Damage against Enemies with Fully Broken Armour"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="ArmourFullyBroken"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Damage for each different Warcry you've used Recently"]={{[1]={flags=0,keywordFlags=4,name="Damage",type="INC",value=20}}," for each different you've used Recently "}
+c["20% increased Damage for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[3]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[4]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[5]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Damage with Hits against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}
-c["20% increased Daze Buildup"]={{}," Daze Buildup "}
-c["20% increased Daze Buildup with Quarterstaves"]={{}," Daze Buildup "}
-c["20% increased Daze Buildup with Quarterstaves 20% increased Freeze Buildup with Quarterstaves"]={{}," Daze Buildup 20% increased Freeze Buildup with Quarterstaves "}
c["20% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}
+c["20% increased Defences while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}}," while your Companion is in your Presence "}
+c["20% increased Deflection Rating"]={{}," Deflection Rating "}
c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
c["20% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}
-c["20% increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="WitherEffect",type="INC",value=20}},nil}
+c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=20}},nil}
+c["20% increased Effect of Arcane Surge on you per ten percent missing Mana"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=20}}," per ten percent missing Mana "}
c["20% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=20}},nil}
c["20% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=20}},nil}
+c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}
c["20% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil}
+c["20% increased Elemental Infusion duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Elemental Infusion "}
+c["20% increased Elemental Infusion duration Remnants can be collected from 15% further away"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Elemental Infusion Remnants can be collected from 15% further away "}
c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}
c["20% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=20}},nil}
c["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}
+c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}
c["20% increased Energy Shield if you've consumed a Power Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovablePowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}
c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}
+c["20% increased Evasion Rating if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}
c["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}
+c["20% increased Evasion Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}
+c["20% increased Evasion Rating while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}
c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil}
+c["20% increased Flammability Magnitude"]={{},"Magnitude "}
+c["20% increased Flammability Magnitude 20% increased Freeze Buildup"]={{},"Magnitude 20% increased Freeze Buildup "}
+c["20% increased Flammability Magnitude 20% increased Freeze Buildup 20% increased chance to Shock"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=20}},"Magnitude 20% increased Freeze Buildup 20% increased "}
c["20% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}
c["20% increased Flask and Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil}
c["20% increased Freeze Buildup"]={{}," Freeze Buildup "}
+c["20% increased Freeze Buildup 20% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=20}}," Freeze Buildup 20% increased "}
c["20% increased Freeze Buildup 50% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}}," Freeze Buildup 50% increased "}
c["20% increased Freeze Buildup Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}}," Freeze Buildup Gain 25% of as Extra Fire Damage "}
c["20% increased Freeze Buildup Hits ignore non-negative Elemental Resistances of Frozen Enemies"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=20}}," Freeze Buildup Hits ignore non-negative of Frozen Enemies "}
c["20% increased Freeze Buildup with Quarterstaves"]={{}," Freeze Buildup "}
c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20}},nil}
c["20% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20}},nil}
+c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}
c["20% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}
+c["20% increased Glory generation for Banner Skills"]={{}," Glory generation for Banner Skills "}
c["20% increased Hazard Duration"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
+c["20% increased Hazard Immobilisation buildup"]={{}," Immobilisation buildup "}
c["20% increased Hinder Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Hinder "}
c["20% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}
+c["20% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=20}},nil}
c["20% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=20}},nil}
c["20% increased Life Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGained",type="INC",value=20}},nil}
-c["20% increased Life Recovery Rate while in the Presence of your Companion"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}}," while in the Presence of your Companion "}
+c["20% increased Life Recovery Rate while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}}," while your Companion is in your Presence "}
c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil}
c["20% increased Life Regeneration Rate while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=20}},nil}
c["20% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=20}},nil}
c["20% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil}
c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=20}},nil}
c["20% increased Magnitude of Bleeding you inflict"]={{[1]={flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="INC",value=20}},nil}
+c["20% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=20}},nil}
c["20% increased Magnitude of Damaging Ailments you inflict"]={{[1]={flags=0,keywordFlags=14680064,name="AilmentMagnitude",type="INC",value=20}},nil}
-c["20% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=20}},nil}
+c["20% increased Magnitude of Impales inflicted with Spells"]={{}," Magnitude of Impales inflicted "}
+c["20% increased Magnitude of Impales inflicted with Spells 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalDamage",type="INC",value=20}}," Magnitude of Impales inflicted 20% increased "}
c["20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=20},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=20},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=20}},nil}
c["20% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=20}},nil}
c["20% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=20}},nil}
+c["20% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}}," Efficiency "}
c["20% increased Mana Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGained",type="INC",value=20}},nil}
c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil}
c["20% increased Melee Critical Hit Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}
c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["20% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=20},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=20}},nil}
+c["20% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}
c["20% increased Movement Speed while affected by an Ailment"]={{[1]={[1]={type="Condition",varList={[1]="Bleeding",[2]="Poisoned",[3]="Ignited",[4]="Chilled",[5]="Frozen",[6]="Shocked",[7]="Electrocuted"}},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}
c["20% increased Movement Speed while an enemy with an Open Weakness is in your Presence"]={{[1]={[1]={type="Condition",var="OpenWeaknessEnemyPresence"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}
c["20% increased Parried Debuff Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Parried Debuff "}
c["20% increased Parry Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
+c["20% increased Parry Range"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="WeaponRange",type="INC",value=20}},nil}
c["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}
c["20% increased Pin Buildup"]={{}," Pin Buildup "}
+c["20% increased Pin duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Pin "}
+c["20% increased Pin duration Pinned Enemies cannot deal Critical Hits"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Pin Pinned Enemies cannot deal Critical Hits "}
c["20% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}
c["20% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20}},nil}
c["20% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=20}},nil}
c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
-c["20% increased Projectile Parry Range"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=20}}," Range "}
-c["20% increased Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}
+c["20% increased Projectile Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=20}}," Stun Buildup "}
c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil}
+c["20% increased Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=20}},nil}
+c["20% increased Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=20}},nil}
c["20% increased Shock Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20}},nil}
c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
c["20% increased Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
@@ -1587,7 +1837,7 @@ c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type
c["20% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=20}},nil}
c["20% increased Stun Buildup"]={{}," Stun Buildup "}
c["20% increased Stun Buildup 20% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=20}}," Stun Buildup 20% increased "}
-c["20% increased Stun Buildup 20% increased Knockback Distance +10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=20}}," Stun Buildup 20% increased +10 to Strength "}
+c["20% increased Stun Buildup 20% increased Knockback Distance 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=20}}," Stun Buildup 20% increased 20% increased Physical Damage "}
c["20% increased Stun Buildup 25% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=20}}," Stun Buildup 25% increased "}
c["20% increased Stun Buildup 40% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=20}}," Stun Buildup 40% increased "}
c["20% increased Stun Buildup with Quarterstaves"]={{}," Stun Buildup "}
@@ -1601,17 +1851,18 @@ c["20% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",
c["20% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=20}},nil}
c["20% increased Totem Placement range"]={{[1]={flags=0,keywordFlags=16384,name="WeaponRange",type="INC",value=20}}," Placement "}
c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=20}},nil}
-c["20% increased Unarmed Attack Speed"]={{[1]={flags=16777221,keywordFlags=0,name="Speed",type="INC",value=20}},nil}
-c["20% increased Valour gained"]={{}," Valour gained "}
c["20% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=20}},nil}
-c["20% increased Weapon Swap Speed"]={{[1]={flags=0,keywordFlags=0,name="WeaponSwapSpeed",type="INC",value=20}},nil}
+c["20% increased Withered Magnitude"]={{}," Withered Magnitude "}
c["20% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=20}},nil}
c["20% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=20}},nil}
-c["20% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=20}},nil}
c["20% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=20}},nil}
+c["20% increased chance to inflict Ailments against Enemies with Exposure"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=20}}," against Enemies with Exposure "}
c["20% increased chance to inflict Ailments against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil}
c["20% increased chance to inflict Ailments with Projectiles"]={{[1]={flags=1024,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil}
+c["20% increased damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
+c["20% increased duration of Ailments you inflict against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=20}},nil}
c["20% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}
+c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil}
c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil}
c["20% less Attack Damage taken if you haven't been Hit by an Attack Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitByAttackRecently"},flags=0,keywordFlags=0,name="AttackDamageTaken",type="MORE",value=-20}},nil}
c["20% less Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="MORE",value=-20},[2]={flags=0,keywordFlags=0,name="Dex",type="MORE",value=-20},[3]={flags=0,keywordFlags=0,name="Int",type="MORE",value=-20},[4]={flags=0,keywordFlags=0,name="All",type="MORE",value=-20}},nil}
@@ -1622,28 +1873,41 @@ c["20% more Damage against Heavy Stunned Enemies with Maces"]={{[1]={[1]={actor=
c["20% more Stun Buildup with Critical Hits"]={{}," Stun Buildup "}
c["20% of Cold Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=20}},nil}
c["20% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=20}},nil}
+c["20% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=20}},nil}
c["20% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=20}},nil}
+c["20% of Elemental Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningLifeRecoup",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdLifeRecoup",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="FireLifeRecoup",type="BASE",value=20}},nil}
c["20% of Elemental damage from Hits taken as Chaos damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsChaos",type="BASE",value=20}},nil}
c["20% of Flask Recovery applied Instantly"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryLowLife",type="BASE",value=20}}," Flask applied Instantly "}
c["20% of Flask Recovery applied Instantly +2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryLowLife",type="BASE",value=20}}," Flask applied Instantly +2 Charm Slot "}
c["20% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=20}},nil}
+c["20% of Life Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}}," Leeched from targets affected by Abyssal Wasting is Instant "}
+c["20% of Life Leeched from targets affected by Abyssal Wasting is Instant Abyssal Wasting also applies % to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}}," Leeched from targets affected by Abyssal Wasting is Instant Abyssal Wasting also applies % to Lightning Resistance "}
c["20% of Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=20}},nil}
+c["20% of Mana Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," Leeched from targets affected by Abyssal Wasting is Instant "}
+c["20% of Mana Leeched from targets affected by Abyssal Wasting is Instant Abyssal Wasting also applies % to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," Leeched from targets affected by Abyssal Wasting is Instant Abyssal Wasting also applies % to Cold Resistance "}
+c["20% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=20}},nil}
c["20% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=20}},nil}
+c["20% reduced Accuracy Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-20}},nil}
c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}
c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}
c["20% reduced Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=-20}},nil}
c["20% reduced Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=-20}},nil}
c["20% reduced Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=-20}},nil}
c["20% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=-20}},nil}
+c["20% reduced Hazard Damage"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-20}},nil}
c["20% reduced Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-20}},nil}
c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil}
c["20% reduced Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=-20}},nil}
c["20% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}
c["20% reduced Mana Regeneration Rate while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil}
c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil}
-c["20% reduced Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil}
+c["20% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-20}},nil}
+c["20% reduced Reservation Efficiency of Skills which create Undead Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-20}}}}," which create Undead s "}
+c["20% reduced Reservation Efficiency of Skills which create Undead Minions 30% increased Reservation Efficiency of Skills which create Undead Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-20}}}}," which create Undead s 30% increased Reservation Efficiency of Skills which create Undead Minions "}
c["20% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["20% reduced Slowing Potency of Debuffs on You 12% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}}," Slowing Potency of Debuffs on You 12% reduced Penalty from using Skills "}
+c["20% reduced Slowing Potency of Debuffs on You 8% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}}," Slowing Potency of Debuffs on You 8% reduced Penalty from using Skills "}
+c["20% reduced Slowing Potency of Debuffs on You Buffs on you expire 10% slower"]={{}," Slowing Potency of Debuffs on You Buffs on you expire 10% slower "}
c["20% reduced Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=-20}},nil}
c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil}
c["20% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-20}},nil}
@@ -1661,8 +1925,8 @@ c["22% increased Critical Damage Bonus for Attack Damage"]={{[1]={flags=1,keywor
c["22% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=22}},nil}
c["22.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=22.5}},nil}
c["225% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=225}},nil}
-c["23% chance to Gain 25% of Damage with Hits as Extra Chaos Damage"]={{[1]={flags=4,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=5.75}},nil}
c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil}
+c["23% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=23}},nil}
c["23% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=23}},nil}
c["23% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=23}},nil}
c["23% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=23}},nil}
@@ -1680,18 +1944,21 @@ c["24% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keyw
c["24% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["240% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=240}},nil}
c["25 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=25}},nil}
+c["25 to 35 Cold Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=25}}," to 35 Cold "}
c["25 to 35 Fire Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=25}}," to 35 Fire "}
c["25% Chance to gain a Charge when you Kill an Enemy"]={nil,"a Charge "}
+c["25% Chance to gain a Charge when you Kill an Enemy Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life"]={nil,"a Charge Creates Ignited Ground in when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life "}
c["25% Chance to gain a Charge when you Kill an Enemy Energy Shield Recharge starts on use"]={nil,"a Charge Energy Shield Recharge starts on use "}
-c["25% Chance to gain a Charge when you Kill an Enemy Ignite Enemies in Presence as though dealing Fire damage equal to 500% of your maximum Life when used"]={nil,"a Charge Ignite Enemies in Presence as though dealing Fire damage equal to 500% of your maximum Life when used "}
c["25% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}
c["25% chance for Attacks to Maim on Hit against Poisoned Enemies 25% increased Magnitude of Poison you inflict"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=1,keywordFlags=2097152,name="AilmentMagnitude",type="BASE",value=25}}," to Maim on Hit 25% increased "}
+c["25% chance for Lightning Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=262144,name="LightningDamage",type="BASE",value=25}}," for to be Lucky "}
+c["25% chance for Lightning Damage with Hits to be Lucky 16% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=262144,name="LightningDamage",type="BASE",value=25}}," for to be Lucky 16% increased Mana Cost Efficiency "}
c["25% chance for Projectiles to Pierce Enemies within 3m distance of you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=25}}," for to Pierce Enemies within 3m distance of you "}
c["25% chance for Slam Skills you use yourself to cause Aftershocks"]={{}," for Slam Skills you use yourself to cause Aftershocks "}
c["25% chance for Trigger skills to refund half of Energy Spent"]={{}," for Trigger skills to refund half of Energy Spent "}
c["25% chance on Consuming a Shock on an Enemy to reapply it"]={{}," on Consuming a Shock on an Enemy to reapply it "}
c["25% chance on Shocking Enemies to created Shocked Ground"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnShockedGround"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=20}},nil}
-c["25% chance that when Volatility on you detonates, you regain an equivalent amount of Volatility"]={{}," that when Volatility on you detonates, you regain an equivalent amount of Volatility "}
+c["25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"]={{}," that when Volatility on you explodes, you regain an equivalent amount of Volatility "}
c["25% chance to Avoid Chaos Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="AvoidChaosDamageChance",type="BASE",value=25}},nil}
c["25% chance to Avoid Physical Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="AvoidPhysicalDamageChance",type="BASE",value=25}},nil}
c["25% chance to Intimidate Enemies for 4 seconds on Hit"]={{}," to Intimidate Enemies "}
@@ -1705,12 +1972,14 @@ c["25% chance to be inflicted with Bleeding when Hit"]={{}," to be inflicted wh
c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}
c["25% chance to gain a Power Charge on Critical Hit"]={nil,"a Power Charge "}
c["25% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}
+c["25% chance to inflict Daze with Hits against Enemies further than 6m"]={{}," to inflict Daze "}
c["25% chance to inflict Withered for 2 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil}
c["25% chance to not destroy Corpses when Consuming Corpses"]={{}," to not destroy Corpses when Consuming Corpses "}
c["25% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=25}},nil}
c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}
c["25% increased Accuracy Rating with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}
c["25% increased Accuracy Rating with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}
+c["25% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},[2]={type="Condition",var="UsingMeleeWeapon"},[3]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}
c["25% increased Area of Effect of Curses"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=25}},nil}
c["25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil}
c["25% increased Armour Break Duration"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}}," Break Duration "}
@@ -1719,9 +1988,19 @@ c["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently"]={{
c["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently 50% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Armour",type="INC",value=25}}," if you've Hit an Enemy with a Attack Recently 50% increased Melee Damage "}
c["25% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
+c["25% increased Attack Damage if you have been Heavy Stunned Recently"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," if you have been Heavy Stunned Recently "}
+c["25% increased Attack Damage if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left "}
+c["25% increased Attack Damage if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage "}
+c["25% increased Attack Damage if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage while Surrounded 25% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="Surrounded"},[2]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," if you have been Heavy Stunned Recently 25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage 25% increased Attack Damage "}
+c["25% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
+c["25% increased Attack Damage while you have no Life Flask uses left"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," while you have no Life Flask uses left "}
+c["25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," while you have no Life Flask uses left 25% increased Attack Damage "}
+c["25% increased Attack Damage while you have no Life Flask uses left 25% increased Attack Damage while Surrounded 25% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="Surrounded"},[2]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}}," while you have no Life Flask uses left 25% increased Attack Damage 25% increased Attack Damage "}
c["25% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}
c["25% increased Attack Speed while on Full Mana"]={{[1]={[1]={type="Condition",var="FullMana"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}
+c["25% increased Ballista Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=25}}," Ballista "}
+c["25% increased Ballista Critical Damage Bonus 20% increased Ballista Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=25}}," Ballista 20% increased Ballista Critical Hit Chance "}
c["25% increased Blind duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}}," Blind "}
c["25% increased Blind duration 25% increased Damage with Hits against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Duration",type="INC",value=25}}," Blind 25% increased Damage "}
c["25% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=25}},nil}
@@ -1731,7 +2010,6 @@ c["25% increased Chance to Block if you've Blocked with Active Block Recently"]=
c["25% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=25}},nil}
c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil}
c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}
-c["25% increased Cold Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=25}},nil}
c["25% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=25}},nil}
c["25% increased Critical Damage Bonus against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=25}},nil}
c["25% increased Critical Damage Bonus for Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="CritMultiplier",type="INC",value=25}},nil}
@@ -1739,15 +2017,18 @@ c["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recent
c["25% increased Critical Damage Bonus with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="INC",value=25}},nil}
c["25% increased Critical Damage Bonus with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="INC",value=25}},nil}
c["25% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
-c["25% increased Critical Hit Chance against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
+c["25% increased Critical Hit Chance against Marked Enemies"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}}," against Marked Enemies "}
+c["25% increased Critical Hit Chance against Marked Enemies +10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}}," against Marked Enemies +10 to Dexterity "}
c["25% increased Critical Hit Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
c["25% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
c["25% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
c["25% increased Critical Hit Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=25}},nil}
c["25% increased Culling Strike Threshold"]={{}," Culling Strike Threshold "}
-c["25% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil}
-c["25% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
+c["25% increased Culling Strike Threshold Gain 15% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}," Culling Strike Threshold Gain 15% of as Extra Lightning Damage "}
+c["25% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Damage while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
+c["25% increased Damage while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}," while your Companion is in your Presence "}
+c["25% increased Damage while your Companion is in your Presence 25% increased Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}," while your Companion is in your Presence 25% increased Exposure Effect "}
c["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"]={{[1]={flags=67108868,keywordFlags=0,name="Damage",type="INC",value=25}}," for each type of Ammunition fired in the past 10 seconds "}
c["25% increased Damage with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Damage with Hits against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=25}},nil}
@@ -1756,8 +2037,6 @@ c["25% increased Damage with Hits against Rare and Unique Enemies"]={{[1]={[1]={
c["25% increased Damage with One Handed Weapons"]={{[1]={flags=17179869188,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Damage with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
-c["25% increased Daze Buildup"]={{}," Daze Buildup "}
-c["25% increased Daze Buildup 25% increased Daze Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}}," Daze Buildup 25% increased Daze "}
c["25% increased Daze Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}}," Daze "}
c["25% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}
c["25% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}
@@ -1766,35 +2045,40 @@ c["25% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,nam
c["25% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=25}},nil}
c["25% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}
c["25% increased Evasion Rating while Parrying"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}}," while Parrying "}
-c["25% increased Evasion if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}
+c["25% increased Evasion Rating while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}}," while Sprinting "}
+c["25% increased Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=25},[2]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=25},[3]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=25}},nil}
c["25% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}
-c["25% increased Fire Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=25}},nil}
+c["25% increased Flammability Magnitude"]={{},"Magnitude "}
+c["25% increased Flammability Magnitude 25% increased Freeze Buildup"]={{},"Magnitude 25% increased Freeze Buildup "}
+c["25% increased Flammability Magnitude 25% increased Freeze Buildup 25% increased chance to Shock"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=25}},"Magnitude 25% increased Freeze Buildup 25% increased "}
+c["25% increased Flammability Magnitude 25% increased Freeze Buildup 25% increased chance to Shock 25% increased Electrocute Buildup"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=25}},"Magnitude 25% increased Freeze Buildup 25% increased 25% increased Electrocute Buildup "}
c["25% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=25}},nil}
c["25% increased Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=25}},nil}
c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=25}},nil}
c["25% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=25}},nil}
c["25% increased Freeze Buildup"]={{}," Freeze Buildup "}
-c["25% increased Freeze Buildup 15% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}}," Freeze Buildup 15% increased "}
-c["25% increased Freeze Buildup 15% increased Chill Duration on Enemies 15% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}}," Freeze Buildup 15% increased 15% increased Magnitude of Chill you inflict "}
c["25% increased Freeze Buildup 25% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=25}}," Freeze Buildup 25% increased "}
c["25% increased Freeze Buildup 25% increased chance to Shock 25% increased Electrocute Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=25}}," Freeze Buildup 25% increased 25% increased Electrocute Buildup "}
c["25% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=25}},nil}
+c["25% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=25}},nil}
c["25% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=25}},nil}
c["25% increased Life Recovery from Flasks used when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=25}},nil}
+c["25% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=25}},nil}
c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}
c["25% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=25}},nil}
-c["25% increased Lightning Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=25}},nil}
+c["25% increased Magnitude of Ailments you inflict against Marked Enemies"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=25}}," against Marked Enemies "}
+c["25% increased Magnitude of Ailments you inflict against Marked Enemies 25% increased Critical Hit Chance against Marked Enemies"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=25}}," against Marked Enemies 25% increased Critical Hit Chance against Marked Enemies "}
+c["25% increased Magnitude of Ailments you inflict against Marked Enemies 25% increased Critical Hit Chance against Marked Enemies +10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=25}}," against Marked Enemies 25% increased Critical Hit Chance against Marked Enemies +10 to Dexterity "}
c["25% increased Magnitude of Bleeding you inflict"]={{[1]={flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="INC",value=25}},nil}
c["25% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=25}},nil}
-c["25% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=25}},nil}
c["25% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=25}},nil}
c["25% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=25}},nil}
+c["25% increased Mana Cost Efficiency while on Low Mana"]={{[1]={[1]={type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=25}}," Efficiency "}
c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=25}},nil}
c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}
c["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}
c["25% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
-c["25% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}}}},nil}
c["25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}
c["25% increased Movement Speed while affected by an Ailment"]={{[1]={[1]={type="Condition",varList={[1]="Bleeding",[2]="Poisoned",[3]="Ignited",[4]="Chilled",[5]="Frozen",[6]="Shocked",[7]="Electrocuted"}},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}
c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}
@@ -1802,11 +2086,14 @@ c["25% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="P
c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}
c["25% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}
c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil}
+c["25% increased Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=25}},nil}
+c["25% increased Reservation Efficiency of Companion Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=25}}," of Companion Skills "}
c["25% increased Shock Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=25}},nil}
c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}
c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Spell Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}
c["25% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=25}},nil}
+c["25% increased Stun Threshold if you haven't been Stunned Recently"]={{[1]={[1]={neg=true,type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=25}},nil}
c["25% increased Stun Threshold while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=25}},nil}
c["25% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=25}},nil}
c["25% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=25}},nil}
@@ -1816,31 +2103,28 @@ c["25% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="Ma
c["25% increased bonuses gained from Equipped Rings and Amulets"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 1",type="INC",value=25},[2]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 2",type="INC",value=25},[3]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 3",type="INC",value=25},[4]={flags=0,keywordFlags=0,name="EffectOfBonusesFromAmulet",type="INC",value=25}},nil}
c["25% increased bonuses gained from left Equipped Ring"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 1",type="INC",value=25}},nil}
c["25% increased bonuses gained from right Equipped Ring"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 2",type="INC",value=25}},nil}
-c["25% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=25}},nil}
c["25% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=25}},nil}
c["25% increased chance to inflict Ailments against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=25}},nil}
c["25% increased chance to inflict Ailments with Projectiles"]={{[1]={flags=1024,keywordFlags=0,name="AilmentChance",type="INC",value=25}},nil}
c["25% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=25}},nil}
c["25% increased speed of Recoup Effects"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=25}}," speed of Recoup s "}
-c["25% less Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=-25}},nil}
c["25% less Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="MORE",value=-25}},nil}
c["25% less Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="MORE",value=-25}},nil}
c["25% more Melee Critical Hit Chance while Blinded"]={{[1]={[1]={type="Condition",var="Blinded"},[2]={neg=true,type="Condition",var="CannotBeBlinded"},flags=256,keywordFlags=0,name="CritChance",type="MORE",value=25}},nil}
c["25% more Skill Speed while Off Hand is empty and you have"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="Speed",type="MORE",value=25},[2]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="WarcrySpeed",type="MORE",value=25}}," and you have "}
c["25% more Skill Speed while Off Hand is empty and you have a One-Handed Martial Weapon equipped in your Main Hand"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},[2]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="Speed",type="MORE",value=25},[2]={[1]={type="Condition",var="UsingOneHandedWeapon"},[2]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="WarcrySpeed",type="MORE",value=25}},nil}
-c["25% of Armour also applies to Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=25}},nil}
c["25% of Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="BASE",value=25},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="BASE",value=25},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="BASE",value=25}},nil}
+c["25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={{}," if none was gained in the past 2 seconds "}
c["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"]={{[1]={flags=0,keywordFlags=0,name="LifeLossPrevented",type="BASE",value=25}},nil}
c["25% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=25}},nil}
+c["25% of Physical Damage prevented Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," prevented Recouped as Life "}
c["25% of Spell Mana Cost Converted to Life Cost"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=25}},nil}
c["25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-25},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=-25},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=-25}},nil}
c["25% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-25}},nil}
c["25% reduced Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=-25}},nil}
c["25% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}},nil}
-c["25% reduced Damage with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="Damage",type="INC",value=-25}},nil}
c["25% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-25}},nil}
c["25% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-25}},nil}
-c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}
c["25% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-25}},nil}
c["25% reduced Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=-25}},nil}
c["25% reduced Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=-25}},nil}
@@ -1853,14 +2137,13 @@ c["25% reduced Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condi
c["25% reduced Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=-25}},nil}
c["25% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-25}},nil}
c["25% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-25}},nil}
+c["25% reduced Reservation Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-25}},nil}
c["25% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=-25}},nil}
c["25% reduced Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=-25}},nil}
c["25% reduced Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=-25}},nil}
c["25% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil}
-c["25% reduced effect of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-25}},nil}
c["25% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-25}},nil}
c["25% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-25}},nil}
-c["250% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=250}},nil}
c["250% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=250}},nil}
c["250% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=250}},nil}
c["250% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=250}},nil}
@@ -1873,15 +2156,15 @@ c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical
c["28% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=28}},nil}
c["29% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=29}},nil}
c["3 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}
-c["3% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"]={{[1]={flags=4,keywordFlags=0,name="MaximumRage",type="BASE",value=3}}," that if you would gain Rage , you instead gain up to your "}
c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=3}},nil}
c["3% chance to gain Volatility on Kill"]={nil,"Volatility "}
+c["3% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}
c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Attack Speed per 20 Dexterity"]={{[1]={[1]={div=20,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
-c["3% increased Attack Speed while in the Presence of your Companion"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}," while in the Presence of your Companion "}
-c["3% increased Attack Speed while in the Presence of your Companion Companions have 4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}," while in the Presence of your Companion Companions have 4% increased Attack Speed "}
+c["3% increased Attack Speed while your Companion is in your Presence"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}," while your Companion is in your Presence "}
+c["3% increased Attack Speed while your Companion is in your Presence Companions have 4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}," while your Companion is in your Presence Companions have 4% increased Attack Speed "}
c["3% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
@@ -1895,66 +2178,81 @@ c["3% increased Attack and Cast Speed with Lightning Skills"]={{[1]={flags=0,key
c["3% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=3},[4]={flags=0,keywordFlags=0,name="All",type="INC",value=3}},nil}
c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=64,name="Speed",type="INC",value=3}},nil}
+c["3% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=3}},nil}
c["3% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=3}},nil}
+c["3% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=3}},nil}
c["3% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}
c["3% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}
c["3% increased Movement Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}
+c["3% increased Movement Speed while Sprinting"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}}," while Sprinting "}
c["3% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}
c["3% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=3},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=3}},nil}
c["3% increased Spell Damage per 100 maximum Mana"]={{[1]={[1]={div=100,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=3}},nil}
-c["3% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=3}},nil}
-c["3% increased Unarmed Attack Speed"]={{[1]={flags=16777221,keywordFlags=0,name="Speed",type="INC",value=3}},nil}
c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil}
c["3% increased maximum Life, Mana and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3},[2]={flags=0,keywordFlags=0,name="Mana",type="INC",value=3},[3]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil}
c["3% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=3}},nil}
c["3% less Damage taken per Tailwind"]={{[1]={[1]={type="Multiplier",var="Tailwind"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-3}},nil}
c["3% more Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}
c["3% of Damage Taken Recouped as Life, Mana and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="EnergyShieldRecoup",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=3}},nil}
+c["3% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=3}},nil}
c["3% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=3}},nil}
+c["3% of Elemental Damage taken Recouped as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningEnergyShieldRecoup",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdEnergyShieldRecoup",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="FireEnergyShieldRecoup",type="BASE",value=3}},nil}
+c["3% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=3}},nil}
+c["3% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=3}},nil}
+c["3% reduced Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-3}},nil}
+c["3% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-3}}," Penalty from using Skills "}
+c["3% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-3}},nil}
c["30 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil}
c["30 to 40 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=30}}," to 40 Physical "}
c["30% chance for Lightning Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=262144,name="LightningDamage",type="BASE",value=30}}," for to be Lucky "}
-c["30% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=30}}," that if you would gain Frenzy , you instead gain up to your maximum number of Frenzy Charges "}
c["30% chance to Chain an additional time"]={{}," to Chain an additional time "}
c["30% chance to Chain an additional time 172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=30}}," to Chain an additional time 172% increased "}
-c["30% chance to Chain an additional time Adds 44 to 66 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=30}}," to Chain an additional time Adds 44 to 66 "}
+c["30% chance to Chain an additional time Adds 53 to 86 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=30}}," to Chain an additional time Adds 53 to 86 "}
c["30% chance to Pierce an Enemy"]={{}," to Pierce an Enemy "}
c["30% chance to Pierce an Enemy Projectiles have 10% chance to Chain an additional time from terrain"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=30}}," to Pierce an Enemy have 10% chance to Chain an additional time from terrain "}
c["30% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}
c["30% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=30}},nil}
+c["30% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}
+c["30% chance to not consume a bolt if you've Reloaded Recently"]={{}," to not consume a bolt if you've Reloaded Recently "}
+c["30% chance when you Reload a Crossbow to be immediate"]={{}," when you Reload a to be immediate "}
c["30% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=30}},nil}
c["30% faster start of Energy Shield Recharge when not on Full Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=30}},nil}
c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}
+c["30% increased Accuracy Rating against Enemies affected by Abyssal Wasting"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}}," against Enemies affected by Abyssal Wasting "}
+c["30% increased Accuracy Rating against Enemies affected by Abyssal Wasting 20% of Mana Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}}," against Enemies affected by Abyssal Wasting 20% of Mana Leeched from targets affected by Abyssal Wasting is Instant "}
c["30% increased Accuracy Rating against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}
c["30% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=30}},nil}
-c["30% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},[2]={type="Condition",var="UsingMeleeWeapon"},[3]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}
+c["30% increased Accuracy Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}
+c["30% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Archon Buff "}
+c["30% increased Area of Effect of Aftershocks you create yourself"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}," of Aftershocks you create yourself "}
+c["30% increased Area of Effect of Ancestrally Boosted Attacks"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}," of Ancestrally Boosted Attacks "}
c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}
c["30% increased Armour while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}
c["30% increased Attack Damage against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
-c["30% increased Attack Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}
c["30% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=30}},nil}
+c["30% increased Block chance while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="BlockChance",type="INC",value=30}},nil}
c["30% increased Bolt Speed"]={{}," Bolt Speed "}
c["30% increased Bolt Speed 172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}}," Bolt Speed 172% increased "}
c["30% increased Bolt Speed 60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}}," Bolt Speed 60% increased "}
-c["30% increased Bolt Speed Adds 62 to 94 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}}," Bolt Speed Adds 62 to 94 "}
+c["30% increased Bolt Speed Adds 85 to 131 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}}," Bolt Speed Adds 85 to 131 "}
c["30% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}
c["30% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=30}},nil}
c["30% increased Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=30}},nil}
c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}},nil}
c["30% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}
-c["30% increased Cold Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=30}},nil}
c["30% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}
c["30% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=30}},nil}
c["30% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
c["30% increased Critical Hit Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
-c["30% increased Critical Hit Chance against enemies with Lightning Exposure"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HasLightningExposure"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
+c["30% increased Critical Hit Chance against enemies with Exposure"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}}," against enemies with Exposure "}
c["30% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
c["30% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
c["30% increased Critical Hit Chance with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
c["30% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=30}},nil}
+c["30% increased Damage if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Damage if you've dealt a Critical Hit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Damage while you have an active Charm"]={{[1]={[1]={type="Condition",var="UsingCharm"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
@@ -1965,10 +2263,6 @@ c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={
c["30% increased Damage with Hits against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}
c["30% increased Damage with Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}
c["30% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}
-c["30% increased Daze Buildup"]={{}," Daze Buildup "}
-c["30% increased Daze Buildup with Quarterstaves"]={{}," Daze Buildup "}
-c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves "}
-c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "}
c["30% increased Defences while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil}
c["30% increased Electrocute Buildup"]={{}," Electrocute Buildup "}
c["30% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=30}},nil}
@@ -1979,13 +2273,16 @@ c["30% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[
c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=30}},nil}
c["30% increased Energy Shield if you've consumed a Power Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovablePowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}
c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
+c["30% increased Evasion Rating if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
c["30% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
c["30% increased Evasion Rating while Parrying"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}}," while Parrying "}
c["30% increased Evasion Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
c["30% increased Evasion Rating while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
c["30% increased Evasion from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}
+c["30% increased Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=30}},nil}
c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}
-c["30% increased Fire Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=30}},nil}
+c["30% increased Flammability Magnitude"]={{},"Magnitude "}
+c["30% increased Flammability Magnitude 30% increased Damage with Hits against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},[2]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},"Magnitude 30% increased "}
c["30% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=30}},nil}
c["30% increased Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=30}},nil}
c["30% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=30}},nil}
@@ -1993,45 +2290,54 @@ c["30% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="
c["30% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=30}},nil}
c["30% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["30% increased Freeze Buildup 100% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30}}," Freeze Buildup 100% of Converted to Cold Damage "}
+c["30% increased Freeze Buildup 20% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}}," Freeze Buildup 20% increased "}
+c["30% increased Freeze Buildup 20% increased Chill Duration on Enemies 20% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}}," Freeze Buildup 20% increased 20% increased Magnitude of Chill you inflict "}
c["30% increased Freeze Buildup with Quarterstaves"]={{}," Freeze Buildup "}
c["30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{}," Freeze Buildup 30% increased Stun Buildup with Quarterstaves "}
+c["30% increased Freeze Threshold"]={{[1]={flags=0,keywordFlags=0,name="FreezeThreshold",type="INC",value=30}},nil}
+c["30% increased Hazard Immobilisation buildup"]={{}," Immobilisation buildup "}
c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil}
c["30% increased Life Regeneration rate during Effect of any Life Flask"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=30}},nil}
+c["30% increased Life Regeneration rate while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=30}},nil}
c["30% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=30}},nil}
-c["30% increased Lightning Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=30}},nil}
c["30% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=30}},nil}
c["30% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=30}},nil}
c["30% increased Magnitude of Non-Damaging Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=30}},nil}
c["30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=30},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=30},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=30}},nil}
c["30% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=30}},nil}
c["30% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=30}},nil}
+c["30% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=30}}," Efficiency of Attacks during any Mana Flask Effect "}
c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=30}},nil}
c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}
+c["30% increased Mana Regeneration Rate while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}
c["30% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}
c["30% increased Parried Debuff Magnitude"]={{}," Parried Debuff Magnitude "}
c["30% increased Parry Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
+c["30% increased Parry Range"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="WeaponRange",type="INC",value=30}},nil}
c["30% increased Pin Buildup"]={{}," Pin Buildup "}
c["30% increased Pin Buildup 5% increased Movement Speed if you've Pinned an Enemy Recently"]={{[1]={[1]={type="Condition",var="PinnedEnemyRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}}," Pin Buildup 5% increased "}
+c["30% increased Pin Buildup Bleeding you inflict on Pinned Enemies is Aggravated"]={{}," Pin Buildup Bleeding you inflict on Pinned Enemies is Aggravated "}
c["30% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=30}},nil}
c["30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
-c["30% increased Projectile Parry Range"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=30}}," Range "}
-c["30% increased Projectile Parry Range Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"]={{[1]={[1]={type="Condition",var="ParriedRecently"},[2]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=30}}," Range Your Heavy Stun buildup empties 50% faster "}
c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}
c["30% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}
c["30% increased Rarity of Items Dropped by Enemies killed with a Critical Hit"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}}," by Enemies killed with a Critical Hit "}
c["30% increased Rarity of Items Dropped by Enemies killed with a Critical Hit You have Consecrated Ground around you while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}}," by Enemies killed with a Critical Hit You have Consecrated Ground around you "}
+c["30% increased Reservation Efficiency of Skills which create Undead Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=30}}}}," which create Undead s "}
c["30% increased Shock Chance against Electrocuted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=30}},nil}
c["30% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=30}},nil}
c["30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
+c["30% increased Spell Damage if you have consumed an Elemental Infusion Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}}," if you have consumed an Elemental Infusion Recently "}
c["30% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=30}},nil}
c["30% increased Stun Buildup"]={{}," Stun Buildup "}
c["30% increased Stun Buildup +15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=30}}," Stun Buildup +15 to "}
-c["30% increased Stun Buildup 15% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}," Stun Buildup 15% increased "}
-c["30% increased Stun Buildup 30% increased Daze Buildup"]={{}," Stun Buildup 30% increased Daze Buildup "}
+c["30% increased Stun Buildup 10% chance to Daze on Hit"]={{}," Stun Buildup 10% chance to Daze "}
+c["30% increased Stun Buildup 12% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}," Stun Buildup 12% increased "}
c["30% increased Stun Buildup 30% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=30}}," Stun Buildup 30% increased "}
c["30% increased Stun Buildup 30% increased Stun Threshold 5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=30}}," Stun Buildup 30% increased 5% increased Strength "}
+c["30% increased Stun Buildup 40% increased Stun Buildup"]={{}," Stun Buildup 40% increased Stun Buildup "}
c["30% increased Stun Buildup 50% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=30}}," Stun Buildup 50% increased "}
c["30% increased Stun Buildup Damage with Hits is Lucky against Heavy Stunned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," Stun Buildup is Lucky "}
c["30% increased Stun Buildup Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"]={{}," Stun Buildup Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy "}
@@ -2053,16 +2359,18 @@ c["30% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",typ
c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil}
c["30% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=30}},nil}
c["30% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=30}},nil}
+c["30% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=30}},nil}
c["30% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=30}},nil}
c["30% increased bonuses gained from left Equipped Ring"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 1",type="INC",value=30}},nil}
c["30% increased bonuses gained from right Equipped Ring"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 2",type="INC",value=30}},nil}
-c["30% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=30}},nil}
c["30% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=30}},nil}
+c["30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=30}}," against Enemies affected by Abyssal Wasting "}
+c["30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting 20% of Life Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=30}}," against Enemies affected by Abyssal Wasting 20% of Life Leeched from targets affected by Abyssal Wasting is Instant "}
c["30% increased chance to inflict Ailments against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=30}},nil}
+c["30% increased damage against Undead Enemies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Undead Enemies "}
c["30% increased effect of Fully Broken Armour"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=30}}," of Fully Broken Armour "}
c["30% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}
c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil}
-c["30% less Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="MORE",value=-30}},nil}
c["30% less Critical Damage Bonus when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="MORE",value=-30}},nil}
c["30% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-30}},nil}
c["30% more Critical Damage Bonus when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="MORE",value=30}},nil}
@@ -2070,21 +2378,27 @@ c["30% more Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLife
c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil}
c["30% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=30}},nil}
c["30% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=30}},nil}
-c["30% of Evasion Rating also grants Elemental Damage reduction"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}}," also grants Elemental Damage reduction "}
+c["30% of Damage taken during effect Recouped as Life"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=30}}," Recouped as Life "}
+c["30% of Damage taken during effect Recouped as Life Gain 5 Rage when Hit by an Enemy during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=30}}," Recouped as Life Gain 5 Rage when Hit by an Enemy "}
+c["30% of Physical damage from Hits taken as Lightning damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=30}},nil}
+c["30% reduced Accuracy Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-30}},nil}
c["30% reduced Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=-30}},nil}
+c["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}
c["30% reduced Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-30}},nil}
-c["30% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-30}},nil}
+c["30% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-30}},nil}
c["30% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-30}},nil}
c["30% reduced Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=-30}},nil}
c["30% reduced Evasion Rating if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=-30}},nil}
c["30% reduced Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=-30}},nil}
c["30% reduced Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=-30}},nil}
+c["30% reduced Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=-30}},nil}
c["30% reduced Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-30}},nil}
-c["30% reduced Mana Cost of Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-30}},nil}
+c["30% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-30}},nil}
c["30% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-30}},nil}
c["30% reduced Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=-30}},nil}
c["30% reduced Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=-30}},nil}
c["30% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-30}},nil}
+c["30% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-30}},nil}
c["30% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-30}},nil}
c["30% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-30}},nil}
c["30% reduced penalty to Accuracy Rating at range"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-30}}," penalty to at range "}
@@ -2097,8 +2411,10 @@ c["300% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlag
c["300% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=300}},nil}
c["300% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=300}},nil}
c["31 to 49 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=31}}," to 49 Physical "}
+c["31% increased Magnitude of Unholy Might buffs you grant"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="INC",value=31}}," Magnitude of buffs you grant "}
+c["31% increased Magnitude of Unholy Might buffs you grant You have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="INC",value=31}}," Magnitude of buffs you grant You have Unholy Might "}
c["32% increased Spell Damage while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2,keywordFlags=0,name="Damage",type="INC",value=32}},nil}
-c["33% increased Damage with Hits against Enemies affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},flags=0,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}
+c["33% increased Damage with Hits against Enemies affected by Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped",[8]="Poisoned",[9]="Bleeding"}},flags=0,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}
c["33% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=33}},nil}
c["33% of Elemental Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageConvertToCold",type="BASE",value=33}},nil}
c["33% of Elemental Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageConvertToFire",type="BASE",value=33}},nil}
@@ -2107,11 +2423,11 @@ c["35 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeReg
c["35 to 53 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=35}}," to 53 Physical "}
c["35% increased Attack Damage while you have an Ally in your Presence"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=1,keywordFlags=0,name="Damage",type="INC",value=35}},nil}
c["35% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=35}},nil}
-c["35% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=35}},nil}
c["35% increased Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="INC",value=35}},nil}
c["35% increased Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=35}},nil}
-c["35% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=35}},nil}
c["35% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}
+c["35% increased Critical Hit Chance if you've Triggered a Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}}," if you've Triggered a Skill Recently "}
+c["35% increased Critical Hit Chance if you've Triggered a Skill Recently Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}}," if you've Triggered a Skill Recently Meta Skills gain 25% increased Energy "}
c["35% increased Damage with Hits against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=35}},nil}
c["35% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=35}},nil}
c["35% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=35}},nil}
@@ -2130,71 +2446,91 @@ c["35% less Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Armo
c["35% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-35}},nil}
c["35% less minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-35}},nil}
c["35% more maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MaxPhysicalDamage",type="MORE",value=35}},nil}
+c["35% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-35}},nil}
c["35% reduced Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-35},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-35},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-35}},nil}
+c["35% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-35}},nil}
c["350% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=350}},nil}
c["36% increased Damage if you've dealt a Critical Hit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=36}},nil}
c["36% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=36}},nil}
c["37% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=37}},nil}
c["38% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=38}},nil}
+c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil}
c["4 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}
-c["4 Passive Skill Points become Weapon Set Skill Points"]={{[1]={flags=0,keywordFlags=0,name="PassivePointsToWeaponSetPoints",type="BASE",value=4}},nil}
c["4% chance for Spell Skills to fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="TwoAdditionalProjectilesChance",type="BASE",value=4}},nil}
+c["4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"]={{[1]={flags=4,keywordFlags=0,name="MaximumRage",type="BASE",value=4}}," that if you would gain Rage , you instead gain up to your "}
+c["4% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}},nil}
+c["4% increased Area of Effect of Ancestrally Boosted Attacks"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}}," of Ancestrally Boosted Attacks "}
+c["4% increased Area of Effect of Ancestrally Boosted Attacks Ancestrally Boosted Attacks deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}}," of Ancestrally Boosted Attacks Ancestrally Boosted Attacks deal 8% increased Damage "}
+c["4% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},[2]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=4}},nil}
c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}
c["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}
c["4% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=4}},nil}
c["4% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=4}},nil}
c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}
c["4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"]={{[1]={[1]={type="Multiplier",var="NonInstantSpellCastRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}
+c["4% increased Deflection Rating"]={{}," Deflection Rating "}
c["4% increased Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=4}},nil}
-c["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={[1]={effectName="BlackenedHeart",effectType="Aura",type="GlobalEffect",unscaleable=true},mod={[1]={actor="parent",div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Multiplier:UnholyMightMagnitude",type="BASE",value=4}}}},nil}
+c["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={[1]={effectName="BlackenedHeart",effectType="Aura",type="GlobalEffect",unscalable=true},mod={[1]={actor="parent",div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Multiplier:UnholyMightMagnitude",type="BASE",value=4}}}},nil}
c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}
c["4% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}
-c["4% increased Movement Speed if you've cast a Mark Spell Recently"]={{[1]={[1]={type="Condition",var="CastMarkRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}
+c["4% increased Movement Speed if you've used a Mark Recently"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}," if you've used a Mark Recently "}
c["4% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=4}},nil}
c["4% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=4}},nil}
+c["4% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=4}},nil}
c["4% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=4}},nil}
c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil}
c["4% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=4}},nil}
c["4% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=4}},nil}
c["4% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesUsed",type="INC",value=-4}},nil}
-c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}
-c["4% reduced Reservation of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-4}},nil}
+c["4% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
+c["4% reduced Slowing Potency of Debuffs on You Debuffs on you expire 3% faster"]={{}," Slowing Potency of Debuffs on You Debuffs on you expire 3% faster "}
c["4.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4.5}},nil}
c["4.6 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4.6}},nil}
c["40% chance to Aggravate Bleeding on Hit"]={{}," to Aggravate Bleeding "}
c["40% chance to Avoid Chaos Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="AvoidChaosDamageChance",type="BASE",value=40}},nil}
c["40% chance to Avoid Physical Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="AvoidPhysicalDamageChance",type="BASE",value=40}},nil}
+c["40% chance to Daze on Hit"]={{}," to Daze "}
+c["40% chance to Daze on Hit 172% increased Physical Damage"]={{[1]={flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," to Daze 172% increased "}
+c["40% chance to Daze on Hit Adds 53 to 86 Fire Damage"]={{[1]={flags=4,keywordFlags=0,name="FireDamage",type="BASE",value=40}}," to Daze Adds 53 to 86 "}
c["40% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=40}},nil}
c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}
-c["40% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=40}},nil}
-c["40% increased Area of Effect of Aftershocks you create yourself"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}}," of Aftershocks you create yourself "}
+c["40% increased Ailment and Stun Threshold while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=40}}," Ailment and "}
c["40% increased Area of Effect of Curses"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=40}},nil}
c["40% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}
c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil}
c["40% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil}
c["40% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil}
+c["40% increased Attack Damage against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
+c["40% increased Attack Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=40}},nil}
c["40% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=40}},nil}
c["40% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=40}},nil}
+c["40% increased Chaos Damage while affected by Herald of Plague"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofPlague"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=40}},nil}
c["40% increased Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="INC",value=40}},nil}
c["40% increased Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=40}},nil}
c["40% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=40}},nil}
c["40% increased Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=40}},nil}
c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil}
c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}
+c["40% increased Cold Damage while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}
c["40% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil}
+c["40% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil}
c["40% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["40% increased Critical Damage Bonus against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["40% increased Critical Damage Bonus with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["40% increased Critical Damage Bonus with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["40% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}
+c["40% increased Critical Hit Chance against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}
c["40% increased Critical Hit Chance against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}}," against Enemies that are affected "}
c["40% increased Critical Hit Chance against Enemies that are affected by no Elemental Ailments"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},[2]={type="Condition",var="Effective"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}
c["40% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}
c["40% increased Critical Spell Damage Bonus"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["40% increased Crossbow Reload Speed"]={{[1]={flags=67108865,keywordFlags=0,name="ReloadSpeed",type="INC",value=40}},nil}
+c["40% increased Culling Strike Threshold against Immobilised Enemies"]={{}," Culling Strike Threshold "}
+c["40% increased Culling Strike Threshold against Rare or Unique Enemies"]={{}," Culling Strike Threshold "}
c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil}
c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
+c["40% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Damage if you've Triggered a Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}," if you've Triggered a Skill Recently "}
c["40% increased Damage if you've Triggered a Skill Recently Meta Skills gain 15% increased Energy"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}," if you've Triggered a Skill Recently Meta Skills gain 15% increased Energy "}
c["40% increased Damage with Bow Skills"]={{[1]={flags=0,keywordFlags=1024,name="Damage",type="INC",value=40}},nil}
@@ -2207,31 +2543,44 @@ c["40% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,nam
c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}
c["40% increased Elemental Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}
c["40% increased Elemental Damage with Attack Skills during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil}
+c["40% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=40}},nil}
c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}
c["40% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=40}},nil}
+c["40% increased Energy Shield Recharge Rate while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=40}}," while affected by an Archon Buff "}
c["40% increased Energy Shield from Equipped Focus"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingFocus"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}
c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}
c["40% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={type="Condition",var="DodgeRolledRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}
+c["40% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}
c["40% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=40}},nil}
c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}
+c["40% increased Fire Damage while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}
+c["40% increased Flammability Magnitude"]={{},"Magnitude "}
+c["40% increased Flammability Magnitude 40% increased Damage with Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},[2]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},"Magnitude 40% increased "}
+c["40% increased Flammability Magnitude Enemies Ignited by you have -5% to Fire Resistance"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="FireResist",type="INC",value=40}},"Magnitude Enemies Ignited by you have -5% to "}
c["40% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=40}},nil}
c["40% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["40% increased Freeze Buildup 20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=40}}," Freeze Buildup 20% increased "}
+c["40% increased Hazard Damage"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Jagged Ground Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}}," Jagged Ground "}
c["40% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40}},nil}
c["40% increased Life Recovery from Flasks used when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40}},nil}
c["40% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=40}},nil}
c["40% increased Life and Mana Recovery from Flasks while you have an active Charm"]={{[1]={[1]={type="Condition",var="UsingCharm"},flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40},[2]={[1]={type="Condition",var="UsingCharm"},flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=40}},nil}
c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}
+c["40% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}
+c["40% increased Magnitude of Bleeding you inflict against Pinned Enemies"]={{[1]={flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="INC",value=40}}," against Pinned Enemies "}
c["40% increased Magnitude of Shock you inflict with Critical Hits"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=40}},nil}
+c["40% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}}," Efficiency "}
c["40% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=40}},nil}
c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}
c["40% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}
c["40% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Melee Damage against Heavy Stunned enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=256,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Melee Damage with Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}
-c["40% increased Minion Damage while you have at least two different active Offerings"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}}," while you have at least two different active Offerings "}
c["40% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}
+c["40% increased Physical Damage while affected by Herald of Blood"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofBlood"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}
+c["40% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=40}},nil}
+c["40% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=40}},nil}
c["40% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
c["40% increased Projectile Damage with Spears while there are no Enemies within 3m"]={{[1]={flags=268436484,keywordFlags=0,name="Damage",type="INC",value=40}}," while there are no Enemies within 3m "}
c["40% increased Projectile Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=40}}," Stun Buildup "}
@@ -2240,7 +2589,11 @@ c["40% increased Shock Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyShock
c["40% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil}
c["40% increased Skill Speed while an enemy with an Open Weakness is in your Presence"]={{[1]={[1]={type="Condition",var="OpenWeaknessEnemyPresence"},flags=0,keywordFlags=0,name="Speed",type="INC",value=40},[2]={[1]={type="Condition",var="OpenWeaknessEnemyPresence"},flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=40}},nil}
c["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}
+c["40% increased Spell Damage if one of your Minions has died Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}}," if one of your Minions has died Recently "}
+c["40% increased Spell Damage with Spells that cost Life"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}}," with Spells that cost Life "}
c["40% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=40}},nil}
+c["40% increased Stun Buildup"]={{}," Stun Buildup "}
+c["40% increased Stun Buildup Adds 11 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}}," Stun Buildup Adds 11 to 20 to Attacks "}
c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}
c["40% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=40}},nil}
c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}
@@ -2250,25 +2603,32 @@ c["40% increased effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,n
c["40% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}
c["40% less Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}
c["40% less minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-40}},nil}
+c["40% more Immobilisation buildup"]={{}," Immobilisation buildup "}
c["40% more Mana Reservation of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=40}},nil}
c["40% more maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MaxPhysicalDamage",type="MORE",value=40}},nil}
-c["40% of Elemental Damage taken Recouped as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningEnergyShieldRecoup",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="ColdEnergyShieldRecoup",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="FireEnergyShieldRecoup",type="BASE",value=40}},nil}
c["40% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=40}},nil}
-c["40% reduced Bleeding Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-40}},nil}
+c["40% of Physical damage from Hits taken as Lightning damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=40}},nil}
c["40% reduced Chill Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-40}},nil}
-c["40% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-40}},nil}
+c["40% reduced Duration of Bleeding on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-40}}," of Bleeding on You "}
c["40% reduced Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-40},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-40},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-40}},nil}
+c["40% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-40}},nil}
+c["40% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-40}},nil}
c["40% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-40}},nil}
c["40% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-40}},nil}
c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},nil}
+c["40% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-40}},nil}
+c["40% reduced Poison Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfPoisonDuration",type="INC",value=-40}},nil}
+c["40% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-40}},nil}
c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil}
c["40% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=-40}},nil}
+c["40% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-40}},nil}
c["400% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=400}},nil}
c["41% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=41}},nil}
c["43% increased Cost of Skills for each 200 total Mana Spent Recently"]={{[1]={[1]={div=200,type="Multiplier",var="ManaSpentRecently"},flags=0,keywordFlags=0,name="Cost",type="INC",value=43}},nil}
+c["43% increased Melee Damage against Heavy Stunned enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=256,keywordFlags=0,name="Damage",type="INC",value=43}},nil}
c["43% increased Spell damage for each 200 total Mana you have Spent Recently"]={{[1]={[1]={div=200,type="Multiplier",var="ManaSpentRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=43}},nil}
c["43% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-43}},nil}
-c["43% reduced effect of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-43}},nil}
+c["43% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-43}},nil}
c["43% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-43}},nil}
c["45 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=45}},nil}
c["45% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=45}},nil}
@@ -2283,94 +2643,130 @@ c["45% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loo
c["450% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=450}},nil}
c["48% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=48}},nil}
c["5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=5}},nil}
+c["5 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=5}},nil}
c["5 to 10 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=5}}," to 10 Physical "}
c["5 to 10 Physical Thorns damage Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=5}}," to 10 Physical Pain Attunement "}
c["5% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}
+c["5% Chance to build an additional Combo on Hit"]={{}," to build an additional Combo "}
c["5% additional Physical Damage Reduction while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil}
-c["5% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Endurance , you instead gain up to maximum Endurance Charges "}
-c["5% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Endurance , you instead gain up to maximum Endurance Charges +1 to Maximum Endurance Charges "}
-c["5% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Frenzy , you instead gain up to your maximum number of Frenzy Charges "}
-c["5% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges +1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Frenzy , you instead gain up to your maximum number of Frenzy Charges +1 to Maximum Frenzy Charges "}
-c["5% chance that if you would gain Power Charges, you instead gain up to"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Power , you instead gain up to "}
-c["5% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Power , you instead gain up to your maximum number of Power Charges "}
-c["5% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges +1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=5}}," that if you would gain Power , you instead gain up to your maximum number of Power Charges +1 to Maximum Power Charges "}
+c["5% chance for Slam Skills you use yourself to cause Aftershocks"]={{}," for Slam Skills you use yourself to cause Aftershocks "}
c["5% chance to Blind Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="BlindChance",type="BASE",value=5}},nil}
c["5% chance to Blind Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="BlindChance",type="BASE",value=5}},nil}
+c["5% chance to Daze on Hit"]={{}," to Daze "}
+c["5% chance to Daze on Hit 20% increased Freeze Buildup with Quarterstaves"]={{}," to Daze 20% increased Freeze Buildup with Quarterstaves "}
+c["5% chance to Daze on Hit Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=5}}," to Daze Gain 12% of as Extra Cold Damage "}
+c["5% chance to Daze on Hit Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=5}}," to Daze Gain 12% of as Extra Lightning Damage "}
c["5% chance to Gain Arcane Surge when you deal a Critical Hit"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil}
+c["5% chance to gain Volatility on Kill"]={nil,"Volatility "}
c["5% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=5}},nil}
c["5% chance to not destroy Corpses when Consuming Corpses"]={{}," to not destroy Corpses when Consuming Corpses "}
+c["5% chance when collecting an Elemental Infusion to gain an"]={{}," when collecting an Elemental Infusion to gain an "}
+c["5% chance when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type"]={{}," when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type "}
c["5% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=5}},nil}
-c["5% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}
+c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}
+c["5% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=5}},nil}
c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}
c["5% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=5}},nil}
-c["5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}
c["5% increased Attack and Cast Speed with Lightning Skills"]={{[1]={flags=0,keywordFlags=128,name="Speed",type="INC",value=5}},nil}
c["5% increased Attributes per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Str",type="INC",value=5},[2]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Dex",type="INC",value=5},[3]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Int",type="INC",value=5},[4]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="All",type="INC",value=5}},nil}
c["5% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=5}},nil}
c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}
c["5% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=5}},nil}
+c["5% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=5}},nil}
c["5% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=5}},nil}
c["5% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=5}},nil}
-c["5% increased Damage for each Hazard triggered Recently, up to 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="DmgPerHazardRecently",type="Multiplier",var="HazardsTriggeredRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}
+c["5% increased Culling Strike Threshold"]={{}," Culling Strike Threshold "}
c["5% increased Damage taken while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil}
+c["5% increased Deflection Rating"]={{}," Deflection Rating "}
c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil}
c["5% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil}
c["5% increased Experience gain"]={{}," Experience gain "}
+c["5% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=5}},nil}
c["5% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=5}},nil}
-c["5% increased Life Recovery rate per 5% missing Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=5}}," per 5% missing Unreserved Life "}
+c["5% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=5}},nil}
+c["5% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=5}},nil}
c["5% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=5}},nil}
-c["5% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=5}},nil}
+c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil}
+c["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}}," if you have at least 10 Red Support Gems Socketed "}
+c["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed 5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}}," if you have at least 10 Red Support Gems Socketed 5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed "}
+c["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed 5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed 5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}}," if you have at least 10 Red Support Gems Socketed 5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed 5% increased Movement Speed if you have at least 10 Green Support Gems Socketed "}
c["5% increased Maximum Life per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil}
+c["5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}}," if you have at least 10 Blue Support Gems Socketed "}
+c["5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed 5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}}," if you have at least 10 Blue Support Gems Socketed 5% increased Movement Speed if you have at least 10 Green Support Gems Socketed "}
c["5% increased Maximum Mana per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil}
c["5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}
+c["5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}," if you have at least 10 Green Support Gems Socketed "}
c["5% increased Movement Speed if you've Pinned an Enemy Recently"]={{[1]={[1]={type="Condition",var="PinnedEnemyRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}
c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}
+c["5% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}
c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil}
c["5% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=5}},nil}
-c["5% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=5}},nil}
c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},nil}
+c["5% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=5}},nil}
+c["5% increased effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=5}}," of Archon Buffs on you "}
+c["5% increased total Power counted by Warcries"]={{[1]={flags=0,keywordFlags=0,name="WarcryPower",type="INC",value=5}},nil}
+c["5% of Damage from Hits is taken from your Damageable Companion's Life before you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," from Hits is taken from your Damageable Companion's Life before you "}
+c["5% of Damage from Hits is taken from your Damageable Companion's Life before you 20% increased Defences while your Companion is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," from Hits is taken from your Damageable Companion's Life before you 20% increased Defences while your Companion is in your Presence "}
c["5% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=5}},nil}
c["5% of Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="BASE",value=5},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="BASE",value=5}},nil}
+c["5% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=5}},nil}
c["5% of Physical Damage from Hits taken as Damage of a Random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsFire",type="BASE",value=1.6666666666667},[2]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsCold",type="BASE",value=1.6666666666667},[3]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=1.6666666666667}},nil}
+c["5% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=5}},nil}
c["5% of Spell Damage Leeched as Life"]={{[1]={flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=5}},nil}
c["5% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-5}},nil}
c["5% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-5}},nil}
c["5% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-5}},nil}
c["5% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-5}},nil}
-c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil}
-c["5% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-5}},nil}
-c["5% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-5}},nil}
+c["5% reduced Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-5}},nil}
+c["5% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
+c["5% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-5}},nil}
c["50% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskChanceNotConsumeCharges",type="BASE",value=50}},nil}
-c["50% chance for Infusions to Infuse your Projectiles without being Consumed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for Infusions to Infuse your without being Consumed "}
+c["50% chance for Projectiles to Pierce Enemies within 3m distance of you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for to Pierce Enemies within 3m distance of you "}
+c["50% chance for Surges to suffuse your Projectiles without being Consumed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for Surges to suffuse your without being Consumed "}
c["50% chance to Avoid Death from Hits"]={{}," to Avoid Death from Hits "}
c["50% chance to Knock Back Bleeding Enemies with Hits"]={{}," to Knock Back Bleeding Enemies "}
c["50% chance to Pierce an Enemy"]={{}," to Pierce an Enemy "}
+c["50% chance to Pierce an Enemy 15% chance when a Charm is used to use another Charm without consuming Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=50}}," to Pierce an Enemy 15% chance when a Charm is used to use another Charm without consuming "}
c["50% chance to gain Onslaught on Killing Blow with Axes"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=65540,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," ing Blow "}
c["50% chance to gain Volatility when you are Stunned"]={nil,"Volatility when you are Stunned "}
c["50% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}
+c["50% chance when collecting an Elemental Infusion to gain another different Elemental Infusion"]={{}," when collecting an Elemental Infusion to gain another different Elemental Infusion "}
+c["50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"]={{}," when you gain a Frenzy Charge to gain an additional Frenzy Charge "}
c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil}
c["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}
c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil}
c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil}
c["50% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}
+c["50% increased Armour while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}
c["50% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}
c["50% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
-c["50% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil}
+c["50% increased Attack damage while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
c["50% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=50},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=50},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=50}},nil}
+c["50% increased Ballista Immobilisation buildup"]={{}," Ballista Immobilisation buildup "}
c["50% increased Blind Effect"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=50}}}},nil}
c["50% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=50}},nil}
-c["50% increased Cold Damage while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=50}},nil}
c["50% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=50}},nil}
c["50% increased Cost of Skills for each 200 total Mana Spent Recently"]={{[1]={[1]={div=200,type="Multiplier",var="ManaSpentRecently"},flags=0,keywordFlags=0,name="Cost",type="INC",value=50}},nil}
c["50% increased Critical Damage Bonus against Enemies that have exited your Presence Recently"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=50}}," against Enemies that have exited your Presence Recently "}
c["50% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}
+c["50% increased Critical Hit Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}
c["50% increased Critical Hit Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}
+c["50% increased Critical Hit Chance against Humanoids"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}," against Humanoids "}
+c["50% increased Critical Hit Chance against Humanoids 50% increased Immobilisation buildup against Constructs"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}," against Humanoids 50% increased Immobilisation buildup against Constructs "}
c["50% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}
c["50% increased Critical Spell Damage Bonus"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="INC",value=50}},nil}
c["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
+c["50% increased Damage against Demons"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," against Demons "}
+c["50% increased Damage against Demons 50% increased Duration of Ailments on Beasts"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," against Demons 50% increased Duration of Ailments on Beasts "}
+c["50% increased Damage against Demons 50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," against Demons 50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids "}
+c["50% increased Damage against Demons 50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids 50% increased Immobilisation buildup against Constructs"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," against Demons 50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids 50% increased Immobilisation buildup against Constructs "}
c["50% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}
c["50% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}
+c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}
+c["50% increased Duration of Ailments on Beasts"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=50}}," on Beasts "}
+c["50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=50}}," on Beasts 50% increased Critical Hit Chance against Humanoids "}
+c["50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids 50% increased Immobilisation buildup against Constructs"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=50}}," on Beasts 50% increased Critical Hit Chance against Humanoids 50% increased Immobilisation buildup against Constructs "}
c["50% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=50}}},nil}
c["50% increased Electrocute Buildup against Shocked Enemies"]={{}," Electrocute Buildup "}
c["50% increased Electrocute Buildup against Shocked Enemies 50% increased Shock Chance against Electrocuted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},[2]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=50}}," Electrocute Buildup 50% increased "}
@@ -2383,7 +2779,10 @@ c["50% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={ty
c["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}
c["50% increased Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}
c["50% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=50}},nil}
-c["50% increased Fire Damage while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=50}},nil}
+c["50% increased Fire Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=50}},nil}
+c["50% increased Flammability Magnitude"]={{},"Magnitude "}
+c["50% increased Flammability Magnitude 20% increased Ignite Magnitude"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=50}},"Magnitude 20% increased "}
+c["50% increased Flammability Magnitude Projectiles Pierce all Ignited enemies"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=50}},"Magnitude Pierce all Ignited enemies "}
c["50% increased Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil}
c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil}
c["50% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=50}},nil}
@@ -2392,17 +2791,19 @@ c["50% increased Freeze Buildup 30% increased Chill Duration on Enemies"]={{[1]=
c["50% increased Freeze Buildup 30% increased Magnitude of Chill you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=50}}," Freeze Buildup 30% increased "}
c["50% increased Grenade Detonation Time"]={{}," Detonation Time "}
c["50% increased Grenade Detonation Time Grenade Skills Fire an additional Projectile"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=50}}," Detonation Time Grenade Skills Fire an additional "}
+c["50% increased Hazard Area of Effect"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}
+c["50% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=50}},nil}
+c["50% increased Immobilisation buildup against Constructs"]={{}," Immobilisation buildup against Constructs "}
c["50% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=50}},nil}
-c["50% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}
-c["50% increased Magnitude of Ignite you inflict"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=50}},nil}
c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}
c["50% increased Mana Regeneration Rate while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}
c["50% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}
+c["50% increased Melee Damage against Heavy Stunned enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=256,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
c["50% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
+c["50% increased Minion Damage while you have at least two different active Offerings"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}}}," while you have at least two different active Offerings "}
c["50% increased Parried Debuff Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Parried Debuff "}
c["50% increased Parried Debuff Magnitude"]={{}," Parried Debuff Magnitude "}
c["50% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil}
-c["50% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=50}},nil}
c["50% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}
c["50% increased Rarity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}
c["50% increased Shock Chance against Electrocuted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=50}},nil}
@@ -2411,18 +2812,18 @@ c["50% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Dur
c["50% increased Spell damage for each 200 total Mana you have Spent Recently"]={{[1]={[1]={div=200,type="Multiplier",var="ManaSpentRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
c["50% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=50}},nil}
c["50% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=50}},nil}
+c["50% increased Surrounded Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}}," Surrounded "}
+c["50% increased Thorns damage if you've consumed an Endurance Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableEnduranceCharge"},flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=50}},nil}
c["50% increased Totem Placement range"]={{[1]={flags=0,keywordFlags=16384,name="WeaponRange",type="INC",value=50}}," Placement "}
-c["50% increased Weapon Swap Speed"]={{[1]={flags=0,keywordFlags=0,name="WeaponSwapSpeed",type="INC",value=50}},nil}
c["50% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=50}},nil}
-c["50% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=50}},nil}
c["50% increased effect of Incision"]={{[1]={flags=0,keywordFlags=0,name="IncisionEffect",type="INC",value=50}},nil}
c["50% increased effect of Small Passive Skills"]={{[1]={flags=0,keywordFlags=0,name="SmallPassiveSkillEffect",type="INC",value=50}},nil}
c["50% increased effect of Sorcery Ward"]={{[1]={[1]={includeTransfigured=true,skillName="Sorcery Ward",type="SkillName"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=50}}," of"}
c["50% increased effect of Sorcery Ward Sorcery Ward recovers 50% faster"]={{[1]={[1]={includeTransfigured=true,skillName="Sorcery Ward",type="SkillName"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=50}}," ofSorcery Ward recovers 50% faster "}
-c["50% increased maximum Dash Distance with Unarmed Attack Skills"]={{}," maximum Dash Distance with Attack Skills "}
c["50% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=50}},nil}
c["50% less Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="MORE",value=-50}},nil}
c["50% less Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="MORE",value=-50}},nil}
+c["50% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-50}},nil}
c["50% less Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="MORE",value=-50}},nil}
c["50% less Mana Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoveryRate",type="MORE",value=-50}},nil}
c["50% less Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="MORE",value=-50}}," Penalty from using Skills "}
@@ -2435,9 +2836,10 @@ c["50% of Chaos damage you prevent when Hit Recouped as Life and Mana during eff
c["50% of Cold and Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=50}},nil}
c["50% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=50}},nil}
c["50% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=50}},nil}
-c["50% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={{}," if none was gained in the past 2 seconds "}
+c["50% of Evasion Rating also grants Elemental Damage reduction"]={{[1]={flags=0,keywordFlags=0,name="EvasionAppliesToFireDamageTaken",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="EvasionAppliesToColdDamageTaken",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="EvasionAppliesToLightningDamageTaken",type="BASE",value=50}},nil}
c["50% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=50}},nil}
c["50% of Physical Damage prevented Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," prevented Recouped as Life "}
+c["50% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=50}}," Skill s Converted to Life Costs during any Life Flask Effect "}
c["50% of charges used by Charms granted to your Life Flasks"]={{[1]={[3]={type="Multiplier",var="AvgCharmChargesUsed"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="MORE",value=0.5}},nil}
c["50% of your Base Life Regeneration is granted to Allies in your Presence"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to "}
c["50% of your Base Life Regeneration is granted to Allies in your Presence +10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to +10 to all Attributes "}
@@ -2445,37 +2847,41 @@ c["50% of your Base Life Regeneration is granted to Allies in your Presence +30
c["50% of your Base Life Regeneration is granted to Allies in your Presence +30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to +30 to Intelligence "}
c["50% of your Base Life Regeneration is granted to Allies in your Presence +30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to +30 to Strength "}
c["50% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-50}},nil}
-c["50% reduced Bleeding Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-50}},nil}
c["50% reduced Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=-50}},nil}
c["50% reduced Chill Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-50}},nil}
-c["50% reduced Darkness Reservation Duration"]={{[1]={flags=0,keywordFlags=0,name="Reserved",type="INC",value=-50}}," Darkness Duration "}
+c["50% reduced Duration of Bleeding on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Bleeding on You "}
c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you "}
c["50% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-50}},nil}
-c["50% reduced Enemy Chance to Block Sword Attacks"]={{[1]={flags=4194304,keywordFlags=0,name="reduceEnemyBlock",type="BASE",value=50}},nil}
c["50% reduced Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=-50}},nil}
c["50% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-50}},nil}
c["50% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-50}},nil}
c["50% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-50}},nil}
+c["50% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-50}},nil}
c["50% reduced Poison Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfPoisonDuration",type="INC",value=-50}},nil}
c["50% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-50}},nil}
+c["50% reduced Projectile Range"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=-50}}," Range "}
+c["50% reduced Projectile Range Adds 98 to 193 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="INC",value=-50}}," Range Adds 98 to 193 Fire Damage "}
c["50% reduced Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=-50}},nil}
c["50% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=-50}},nil}
c["50% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["50% reduced Slowing Potency of Debuffs on You 20 to 30 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=-50}}," Slowing Potency of Debuffs on You 20 to 30 Physical "}
-c["50% reduced effect of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-50}},nil}
c["50% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-50}},nil}
+c["50% reduced effect of Withered on you"]={{[1]={flags=0,keywordFlags=0,name="WitherEffectOnSelf",type="INC",value=-50}},nil}
c["500% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=500}},nil}
c["500% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=500}},nil}
c["53% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=53}},nil}
c["53% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=53}},nil}
+c["56% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=56}},nil}
c["6 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}
c["6 Life Regeneration per second per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}
-c["6 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=6}},nil}
c["6% chance for Spell Skills to fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="TwoAdditionalProjectilesChance",type="BASE",value=6}},nil}
c["6% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}
c["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}
+c["6% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}
+c["6% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}},nil}
c["6% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=6}},nil}
c["6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
+c["6% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
c["6% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
c["6% increased Attack Speed with Flails"]={{[1]={flags=134217733,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
@@ -2484,55 +2890,76 @@ c["6% increased Attack and Cast Speed if you've summoned a Totem Recently"]={{[1
c["6% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=6}},nil}
c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
c["6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"]={{[1]={[1]={type="Multiplier",var="NonInstantSpellCastRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}
+c["6% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=6}},nil}
c["6% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=6}},nil}
c["6% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=6}},nil}
c["6% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=6}},nil}
+c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil}
c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}
c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}
+c["6% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=6}},nil}
c["6% increased Magnitude of Damaging Ailments you inflict"]={{[1]={flags=0,keywordFlags=14680064,name="AilmentMagnitude",type="INC",value=6}},nil}
c["6% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=6}},nil}
+c["6% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=6}},nil}
c["6% increased Movement Speed if you've successfully Parried Recently"]={{[1]={[1]={type="Condition",var="ParriedRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}
c["6% increased Movement Speed while you have an active Charm"]={{[1]={[1]={type="Condition",var="UsingCharm"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}
c["6% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}
+c["6% increased Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=6}},nil}
+c["6% increased Reservation Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=6}},nil}
c["6% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=6}},nil}
+c["6% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}
+c["6% increased Spell Damage with Spells that cost Life"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}}," with Spells that cost Life "}
+c["6% increased Spell Damage with Spells that cost Life 8% of Spell Mana Cost Converted to Life Cost"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}}," with Spells that cost Life 8% of Spell Mana Cost Converted to Life Cost "}
+c["6% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=6}},nil}
+c["6% increased Spirit Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=6}},nil}
+c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil}
c["6% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=6}},nil}
c["6% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=6}},nil}
c["6% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=6}},nil}
c["6% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=6}},nil}
c["6% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=6}},nil}
c["6% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=6}},nil}
+c["6% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=6}},nil}
c["6% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=6}},nil}
c["6% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=-6}},nil}
-c["6% reduced Reservation of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-6}},nil}
+c["6% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-6}},nil}
c["60 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil}
c["60% chance for Lightning Skills to Chain an additional time"]={{}," for Lightning Skills to Chain an additional time "}
c["60% faster start of Energy Shield Recharge if you've been Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=60}},nil}
-c["60% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=60}},nil}
c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}
c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil}
c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil}
c["60% increased Armour from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}
c["60% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=60}},nil}
+c["60% increased Attack Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil}
c["60% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=60}},nil}
c["60% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=60}},nil}
+c["60% increased Critical Hit Chance against Immobilised enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}
c["60% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}
c["60% increased Effect of Poison you inflict on targets that are not Poisoned"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=60}}," of Poison you inflict on targets that are not Poisoned "}
c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}
c["60% increased Energy Shield from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}
c["60% increased Energy Shield from Equipped Focus"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingFocus"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}
c["60% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}
+c["60% increased Evasion Rating from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}
+c["60% increased Evasion Rating if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}
c["60% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=60}},nil}
c["60% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=60}},nil}
c["60% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=60}},nil}
c["60% increased Freeze Threshold"]={{[1]={flags=0,keywordFlags=0,name="FreezeThreshold",type="INC",value=60}},nil}
+c["60% increased Ice Crystal Life"]={{[1]={flags=0,keywordFlags=0,name="IceCrystalLife",type="INC",value=60}},nil}
+c["60% increased Magnitude of Abyssal Wasting you inflict"]={{}," Magnitude of Abyssal Wasting you inflict "}
+c["60% increased Magnitude of Abyssal Wasting you inflict Abyssal Wasting you inflict has Infinite Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=60}}," Magnitude of Abyssal Wasting you inflict Abyssal Wasting you inflict has Infinite "}
+c["60% increased Mana Cost Efficiency of Marks"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," Efficiency of Marks "}
+c["60% increased Mana Cost Efficiency of Marks 4% increased Movement Speed if you've used a Mark Recently"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," Efficiency of Marks 4% increased Movement Speed if you've used a Mark Recently "}
+c["60% increased Mana Regeneration Rate while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}
c["60% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil}
c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}
c["60% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=60}},nil}
c["60% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=60}},nil}
c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}
-c["60% increased Stun Threshold for each time you've been Stunned Recently"]={{[1]={[1]={type="Multiplier",var="StunnedRecently"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=60}},nil}
c["60% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}
-c["60% reduced Bleeding Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-60}},nil}
+c["60% reduced Duration of Bleeding on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}}," of Bleeding on You "}
c["60% reduced Ice Crystal Life"]={{[1]={flags=0,keywordFlags=0,name="IceCrystalLife",type="INC",value=-60}},nil}
c["60% reduced Poison Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfPoisonDuration",type="INC",value=-60}},nil}
c["60% reduced Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=-60}},nil}
@@ -2541,13 +2968,17 @@ c["65% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="Armour
c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil}
c["65% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=65}},nil}
c["65% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=65}},nil}
+c["650% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=650}},nil}
c["66% increased Freeze Buildup"]={{}," Freeze Buildup "}
c["666% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=666}},nil}
c["666% increased effect of Socketed Soul Cores"]={{[1]={flags=0,keywordFlags=0,name="SocketedSoulCoreEffect",type="INC",value=666}},nil}
-c["67% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=67}},nil}
-c["7% chance to Gain 100% of Damage with Hits as Extra Chaos Damage"]={{[1]={flags=4,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=7}},nil}
+c["68% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=68}},nil}
+c["7% increased Attack Speed while a Rare or Unique Enemy is in your Presence"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=1,keywordFlags=0,name="Speed",type="INC",value=7}},nil}
c["7% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=7},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=7},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=7},[4]={flags=0,keywordFlags=0,name="All",type="INC",value=7}},nil}
c["7% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=7}},nil}
+c["7% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=7}},nil}
+c["7% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=7}},nil}
+c["7% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=7}},nil}
c["7.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7.5}},nil}
c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil}
c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=70}},nil}
@@ -2559,6 +2990,7 @@ c["70% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name=
c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil}
c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}
c["700% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=700}},nil}
+c["700% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=700}},nil}
c["72% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=72}},nil}
c["74% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=74}},nil}
c["74% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=74}},nil}
@@ -2578,25 +3010,28 @@ c["75% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name=
c["75% increased Melee Damage with Spears while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=268435716,keywordFlags=0,name="Damage",type="INC",value=75}},nil}
c["75% increased Thorns damage if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=75}},nil}
c["75% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=75}},nil}
-c["75% less Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="MORE",value=-75}},nil}
c["75% of Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageConvertToFire",type="BASE",value=75}},nil}
-c["79% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=79}},nil}
c["8 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil}
c["8% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}
c["8% chance for Mace Slam Skills you use yourself to cause Aftershocks"]={{}," for Mace Slam Skills you use yourself to cause Aftershocks "}
c["8% chance to Blind Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="BlindChance",type="BASE",value=8}},nil}
c["8% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=8}},nil}
+c["8% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=8}},nil}
c["8% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}
c["8% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}
c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=38654705668,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}
+c["8% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=8}}," Archon Buff "}
+c["8% increased Archon Buff duration 5% increased effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=8}}," Archon Buff 5% increased effect of Archon Buffs on you "}
c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}
c["8% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}
c["8% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=8}},nil}
c["8% increased Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil}
c["8% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
+c["8% increased Attack Damage while you have an Ally in your Presence"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
c["8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
c["8% increased Attack Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
+c["8% increased Attack Speed while a Rare or Unique Enemy is in your Presence"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
c["8% increased Attack Speed with One Handed Weapons"]={{[1]={flags=17179869189,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
c["8% increased Attack Speed with Quarterstaves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
@@ -2609,40 +3044,59 @@ c["8% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=64,na
c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil}
c["8% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=8}},nil}
c["8% increased Critical Damage Bonus per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=8}},nil}
+c["8% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}
c["8% increased Critical Hit Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}
+c["8% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}
c["8% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil}
c["8% increased Damage for each time you've Warcried Recently"]={{[1]={[1]={type="Multiplier",var="WarcryUsedRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
-c["8% increased Damage while in the Presence of your Companion"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}," while in the Presence of your Companion "}
c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil}
c["8% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=8}},nil}
c["8% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=8}},nil}
c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}
+c["8% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=8}},nil}
+c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}
c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}
c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil}
+c["8% increased Flammability Magnitude"]={{},"Magnitude "}
+c["8% increased Flammability Magnitude 8% increased Ignite Magnitude"]={{[1]={[1]={includeTransfigured=true,skillName="Flammability",type="SkillName"},flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=8}},"Magnitude 8% increased "}
+c["8% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=8}},nil}
+c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil}
c["8% increased Flask and Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=8}},nil}
+c["8% increased Freeze Buildup"]={{}," Freeze Buildup "}
+c["8% increased Glory generation"]={{}," Glory generation "}
+c["8% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=8}},nil}
+c["8% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=8}},nil}
+c["8% increased Immobilisation buildup"]={{}," Immobilisation buildup "}
c["8% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=8}},nil}
c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil}
+c["8% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=8}}," Efficiency "}
+c["8% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=8}},nil}
c["8% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=8}},nil}
c["8% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
+c["8% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil}
c["8% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}
c["8% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
c["8% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=8}},nil}
c["8% increased Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=8}},nil}
+c["8% increased Reservation Efficiency of Companion Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=8}}," of Companion Skills "}
+c["8% increased Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=8}},nil}
c["8% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil}
c["8% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=8}},nil}
c["8% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
c["8% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC",value=8}},nil}
+c["8% increased Spirit Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=8}},nil}
c["8% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=8}},nil}
c["8% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=8}},nil}
+c["8% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=8}},nil}
+c["8% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=8}},nil}
c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil}
c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil}
-c["8% more chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=8}},nil}
c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil}
c["8% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=8}},nil}
-c["8% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-8}},nil}
-c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil}
+c["8% of Spell Mana Cost Converted to Life Cost"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=8}},nil}
+c["8% reduced Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-8}},nil}
c["8% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}}," Penalty from using Skills "}
-c["8% reduced Projectile Speed for Spell Skills"]={{[1]={flags=2,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-8}},nil}
+c["8% reduced Movement Speed Penalty from using Skills while moving 14% increased Skill Effect Duration"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}}," Penalty from using Skills 14% increased Skill Effect Duration "}
c["8% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-8}},nil}
c["8% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "}
c["80% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=80}},nil}
@@ -2659,6 +3113,9 @@ c["80% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritC
c["80% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}
c["80% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}
c["80% increased Damage with Hits against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=80}},nil}
+c["80% increased Desecrated Modifier magnitudes"]={{}," Desecrated Modifier magnitudes "}
+c["80% increased Desecrated Modifier magnitudes 120% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}}," Desecrated Modifier magnitudes 120% increased "}
+c["80% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=80}},nil}
c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil}
c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}
c["80% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=80}},nil}
@@ -2672,6 +3129,7 @@ c["80% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecover
c["80% increased bonuses gained from Equipped Rings"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 1",type="INC",value=80},[2]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 2",type="INC",value=80},[3]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 3",type="INC",value=80}},nil}
c["80% less Knockback Distance for Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="MORE",value=-80}}," for Blocked Hits "}
c["80% of Maximum Mana is Converted to twice that much Armour"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}}," is Converted to twice that much Armour "}
+c["80% reduced Grenade Damage"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-80}},nil}
c["800% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=800}},nil}
c["82% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=82}},nil}
c["82% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=82}},nil}
@@ -2683,16 +3141,30 @@ c["85% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t
c["86% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=86}},nil}
c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}
c["9% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}},nil}
+c["9% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=9}},nil}
+c["9% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=9}},nil}
c["9.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=9.5}},nil}
c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil}
c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil}
+c["90% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=90}},nil}
c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}
c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil}
c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil}
+c["90% less Life Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="MORE",value=-90}},nil}
c["A maximum of one Modifer can be granted this way"]={nil,"A maximum of one Modifer can be granted this way "}
+c["A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice"]={nil,"A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice "}
+c["Abyssal Wasting also applies % to Cold Resistance"]={nil,"Abyssal Wasting also applies % to Cold Resistance "}
+c["Abyssal Wasting also applies % to Cold Resistance 25% increased Magnitude of Chill you inflict"]={nil,"Abyssal Wasting also applies % to Cold Resistance 25% increased Magnitude of Chill you inflict "}
+c["Abyssal Wasting also applies % to Fire Resistance"]={nil,"Abyssal Wasting also applies % to Fire Resistance "}
+c["Abyssal Wasting also applies % to Fire Resistance +30% of Armour also applies to Elemental Damage"]={nil,"Abyssal Wasting also applies % to Fire Resistance +30% of Armour also applies to Elemental Damage "}
+c["Abyssal Wasting also applies % to Lightning Resistance"]={nil,"Abyssal Wasting also applies % to Lightning Resistance "}
+c["Abyssal Wasting also applies % to Lightning Resistance Projectiles have 50% chance for an additional Projectile when Forking"]={nil,"Abyssal Wasting also applies % to Lightning Resistance Projectiles have 50% chance for an additional Projectile when Forking "}
+c["Abyssal Wasting you inflict has Infinite Duration"]={nil,"Abyssal Wasting you inflict has Infinite Duration "}
+c["Abyssal Wasting you inflict has Infinite Duration Abyssal Wasting also applies % to Fire Resistance"]={nil,"Abyssal Wasting you inflict has Infinite Duration Abyssal Wasting also applies % to Fire Resistance "}
c["Accuracy Rating is Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="AccuracyDoubledLimit",type="Multiplier",var="AccuracyDoubled"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:AccuracyDoubled",type="OVERRIDE",value=1}},nil}
c["Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence"]={{[1]={[1]={div=20,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=20,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=10}},nil}
c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}
+c["Adds 1 to 111 Lightning Damage to Unarmed Melee Hits"]={{[1]={flags=16777476,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=16777476,keywordFlags=0,name="LightningMax",type="BASE",value=111}},nil}
c["Adds 1 to 120 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=120}},nil}
c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=24}},nil}
c["Adds 1 to 250 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=250}},nil}
@@ -2709,6 +3181,7 @@ c["Adds 1 to 50 Lightning damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,
c["Adds 1 to 53 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=53}},nil}
c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil}
c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}
+c["Adds 1 to 94 Lightning Damage to Unarmed Melee Hits"]={{[1]={flags=16777476,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=16777476,keywordFlags=0,name="LightningMax",type="BASE",value=94}},nil}
c["Adds 10 to 15 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=15}},nil}
c["Adds 10 to 16 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=16}},nil}
c["Adds 10 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}
@@ -2736,6 +3209,7 @@ c["Adds 17 to 26 Cold damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name
c["Adds 17 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}
c["Adds 17 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}
c["Adds 18 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}
+c["Adds 18 to 31 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=31}},nil}
c["Adds 18 to 36 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},nil}
c["Adds 184 to 300 Chaos damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=184},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=300}},nil}
c["Adds 20 to 26 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}
@@ -2743,6 +3217,7 @@ c["Adds 20 to 27 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM
c["Adds 20 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}
c["Adds 20 to 31 Cold damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=31}},nil}
c["Adds 201 to 333 Chaos damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=201},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=333}},nil}
+c["Adds 21 to 37 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=37}},nil}
c["Adds 22 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}
c["Adds 24 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}
c["Adds 24 to 41 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=41}},nil}
@@ -2762,30 +3237,29 @@ c["Adds 32 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type
c["Adds 33 to 78 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=33},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}},nil}
c["Adds 35 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}
c["Adds 36 to 55 Chaos damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=55}},nil}
-c["Adds 36 to 55 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=55}},nil}
c["Adds 36 to 81 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=81}},nil}
c["Adds 37 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=37},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}
-c["Adds 4 to 105 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=105}},nil}
c["Adds 4 to 7 Cold damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=7}},nil}
c["Adds 4 to 8 Cold damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8}},nil}
c["Adds 4 to 8 Fire damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=8}},nil}
c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}
c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=9}},nil}
c["Adds 41 to 53 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=53}},nil}
-c["Adds 44 to 66 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=44},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=66}},nil}
c["Adds 44 to 69 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=44},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=69}},nil}
c["Adds 44 to 74 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=44},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=74}},nil}
+c["Adds 47 to 71 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=47},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=71}},nil}
c["Adds 48 to 72 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=72}},nil}
c["Adds 48 to 79 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=79}},nil}
c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=10}},nil}
c["Adds 5 to 11 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=11}},nil}
+c["Adds 5 to 132 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=132}},nil}
c["Adds 5 to 8 Cold damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8}},nil}
c["Adds 5 to 8 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=8}},nil}
c["Adds 5 to 9 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=9}},nil}
c["Adds 5 to 9 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=9}},nil}
c["Adds 5 to 9 Fire damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=9}},nil}
c["Adds 5 to 9 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}
-c["Adds 51 to 77 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=51},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=77}},nil}
+c["Adds 53 to 86 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=86}},nil}
c["Adds 6 to 10 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=10}},nil}
c["Adds 6 to 10 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}
c["Adds 6 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}
@@ -2793,18 +3267,21 @@ c["Adds 6 to 11 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMi
c["Adds 6 to 11 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=11}},nil}
c["Adds 6 to 12 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=12}},nil}
c["Adds 6 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}
-c["Adds 6 to 149 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=149}},nil}
c["Adds 62 to 106 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=62},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=106}},nil}
-c["Adds 62 to 94 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=62},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}},nil}
c["Adds 65 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}
c["Adds 7 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}
c["Adds 7 to 13 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=13}},nil}
+c["Adds 7 to 200 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=200}},nil}
+c["Adds 70 to 107 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=107}},nil}
c["Adds 8 to 13 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=13}},nil}
c["Adds 8 to 14 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=14}},nil}
c["Adds 8 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}
+c["Adds 85 to 131 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=131}},nil}
+c["Adds 87 to 160 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=87},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=160}},nil}
c["Adds 9 to 14 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}
c["Adds 9 to 15 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=15}},nil}
c["Adds 9 to 17 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=17}},nil}
+c["Adds 98 to 193 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=193}},nil}
c["Aggravate Bleeding on Enemies when they Enter your Presence"]={nil,"Aggravate Bleeding on Enemies when they Enter your Presence "}
c["Aggravate Bleeding on Enemies when they Enter your Presence 100% increased Thorns damage"]={nil,"Aggravate Bleeding on Enemies when they Enter your Presence 100% increased Thorns damage "}
c["Aggravate Bleeding on targets you Critically Hit with Attacks"]={nil,"Aggravate Bleeding on targets you Critically Hit with Attacks "}
@@ -2825,13 +3302,16 @@ c["All Damage from Hits with this Weapon Contributes to Freeze Buildup Culling S
c["All Damage from Hits with this Weapon Contributes to Pin Buildup"]={nil,"All Damage from Hits with this Weapon Contributes to Pin Buildup "}
c["All Damage from Hits with this Weapon Contributes to Pin Buildup 30% increased Projectile Speed with this Weapon"]={nil,"All Damage from Hits with this Weapon Contributes to Pin Buildup 30% increased Projectile Speed with this Weapon "}
c["All Damage from you and Allies in your Presence"]={nil,"All Damage from you and "}
-c["All Damage from you and Allies in your Presence contributes to Ignite Chance and Magnitude"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}}},[3]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}}},[4]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true}}}},nil}
+c["All Damage from you and Allies in your Presence contributes to Flammability and Ignite Magnitudes"]={nil,"All Damage from you and contributes to Flammability and Ignite Magnitudes "}
c["All Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=100}},nil}
c["All Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="OVERRIDE",value=100},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="OVERRIDE",value=100},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="OVERRIDE",value=100},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="OVERRIDE",value=100},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="OVERRIDE",value=100}},nil}
c["All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you"]={nil,"All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you "}
c["All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you All Damage from Hits against Bleeding targets Contributes to Chill Magnitude"]={nil,"All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you All Damage from Hits against Bleeding targets Contributes to Chill Magnitude "}
c["All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you"]={nil,"All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you "}
c["All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you All Damage from Hits against Poisoned targets Contributes to Chill Magnitude"]={nil,"All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you All Damage from Hits against Poisoned targets Contributes to Chill Magnitude "}
+c["All Flames of Chayula that you manifest are Blue"]={nil,"All Flames of Chayula that you manifest are Blue "}
+c["All Flames of Chayula that you manifest are Purple"]={nil,"All Flames of Chayula that you manifest are Purple "}
+c["All Flames of Chayula that you manifest are Red"]={nil,"All Flames of Chayula that you manifest are Red "}
c["All bonuses from Equipped Amulet apply to your Minions instead of you"]={{},nil}
c["All damage with this Weapon causes Electrocution buildup"]={nil,"All damage with this Weapon causes Electrocution buildup "}
c["Allies in your Presence Gain 20% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=20},onlyAllies=true}}},nil}
@@ -2845,15 +3325,18 @@ c["Allies in your Presence deal 1 to 15 added Attack Lightning Damage"]={{[1]={f
c["Allies in your Presence deal 1 to 63 added Attack Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=63},onlyAllies=true}}},nil}
c["Allies in your Presence deal 1 to 70 added Attack Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=70},onlyAllies=true}}},nil}
c["Allies in your Presence deal 15 to 31 added Attack Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=15},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=31},onlyAllies=true}}},nil}
+c["Allies in your Presence deal 16% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=16},onlyAllies=true}}},nil}
c["Allies in your Presence deal 17 to 37 added Attack Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=17},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=37},onlyAllies=true}}},nil}
c["Allies in your Presence deal 19 to 32 added Attack Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=19},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=32},onlyAllies=true}}},nil}
c["Allies in your Presence deal 19 to 32 added Attack Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=19},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=32},onlyAllies=true}}},nil}
c["Allies in your Presence deal 23 to 35 added Attack Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=23},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=35},onlyAllies=true}}},nil}
c["Allies in your Presence deal 23 to 35 added Attack Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=23},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=35},onlyAllies=true}}},nil}
+c["Allies in your Presence deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40},onlyAllies=true}}},nil}
c["Allies in your Presence deal 5 to 8 added Attack Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=5},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8},onlyAllies=true}}},nil}
c["Allies in your Presence deal 50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=50},onlyAllies=true}}},nil}
c["Allies in your Presence deal 6 to 10 added Attack Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=6},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=10},onlyAllies=true}}},nil}
c["Allies in your Presence deal 70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70},onlyAllies=true}}},nil}
+c["Allies in your Presence deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8},onlyAllies=true}}},nil}
c["Allies in your Presence gain added Attack Damage equal"]={nil,"added Attack Damage equal "}
c["Allies in your Presence gain added Attack Damage equal to 25% of your main hand Weapon's Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="GainMainHandDmgFromParent",type="FLAG",value=true},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="Multiplier:MainHandDamageToAllies",type="BASE",value=25}},nil}
c["Allies in your Presence have +100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100},onlyAllies=true}}},nil}
@@ -2862,6 +3345,7 @@ c["Allies in your Presence have 15% increased Attack Speed"]={{[1]={flags=0,keyw
c["Allies in your Presence have 15% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=15},onlyAllies=true}}},nil}
c["Allies in your Presence have 20% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=20},onlyAllies=true}}},nil}
c["Allies in your Presence have 20% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=20},onlyAllies=true}}},nil}
+c["Allies in your Presence have 30% increased Glory generation"]={{}," Glory generation "}
c["Allies in your Presence have 32% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=32},onlyAllies=true}}},nil}
c["Allies in your Presence have 32% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32},onlyAllies=true}}},nil}
c["Allies in your Presence have 40% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40},onlyAllies=true}}},nil}
@@ -2881,6 +3365,10 @@ c["Allocates Adverse Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive
c["Allocates Afterimage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="afterimage"}},nil}
c["Allocates Aftershocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aftershocks"}},nil}
c["Allocates Aggravation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aggravation"}},nil}
+c["Allocates Agile Sprinter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile sprinter"}},nil}
+c["Allocates Agile Succession"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile succession"}},nil}
+c["Allocates Agonising Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agonising calamity"}},nil}
+c["Allocates All For One"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all for one"}},nil}
c["Allocates All Natural"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all natural"}},nil}
c["Allocates Altered Brain Chemistry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="altered brain chemistry"}},nil}
c["Allocates Alternating Current"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="alternating current"}},nil}
@@ -2897,20 +3385,26 @@ c["Allocates Arcane Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive
c["Allocates Arcane Blossom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane blossom"}},nil}
c["Allocates Arcane Intensity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane intensity"}},nil}
c["Allocates Arcane Mixtures"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane mixtures"}},nil}
+c["Allocates Arcane Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane remnants"}},nil}
+c["Allocates Archon of the Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the blizzard"}},nil}
+c["Allocates Archon of the Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the flame"}},nil}
+c["Allocates Archon of the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the storm"}},nil}
+c["Allocates Artillery Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="artillery strike"}},nil}
c["Allocates Asceticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="asceticism"}},nil}
c["Allocates Aspiring Genius"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aspiring genius"}},nil}
+c["Allocates At your Command"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="at your command"}},nil}
c["Allocates Austerity Measures"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="austerity measures"}},nil}
c["Allocates Authority"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="authority"}},nil}
+c["Allocates Avoiding Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="avoiding deflection"}},nil}
c["Allocates Back in Action"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="back in action"}},nil}
-c["Allocates Backstabbing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="backstabbing"}},nil}
c["Allocates Backup Plan"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="backup plan"}},nil}
-c["Allocates Ball and Chain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ball and chain"}},nil}
c["Allocates Bannerman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bannerman"}},nil}
c["Allocates Barbaric Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="barbaric strength"}},nil}
c["Allocates Battle Fever"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle fever"}},nil}
c["Allocates Battle Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle trance"}},nil}
c["Allocates Beastial Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beastial skin"}},nil}
c["Allocates Beef"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beef"}},nil}
+c["Allocates Behemoth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="behemoth"}},nil}
c["Allocates Bestial Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bestial rage"}},nil}
c["Allocates Blade Catcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade catcher"}},nil}
c["Allocates Blade Flurry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade flurry"}},nil}
@@ -2919,10 +3413,14 @@ c["Allocates Blinding Flash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive
c["Allocates Blinding Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blinding strike"}},nil}
c["Allocates Blood Rush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood rush"}},nil}
c["Allocates Blood Tearing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood tearing"}},nil}
+c["Allocates Blood Transfusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood transfusion"}},nil}
+c["Allocates Blood of Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood of rage"}},nil}
c["Allocates Bloodletting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodletting"}},nil}
c["Allocates Bloodthirsty"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodthirsty"}},nil}
c["Allocates Blurred Motion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blurred motion"}},nil}
c["Allocates Bolstering Yell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bolstering yell"}},nil}
+c["Allocates Bone Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bone chains"}},nil}
+c["Allocates Bounty Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bounty hunter"}},nil}
c["Allocates Branching Bolts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="branching bolts"}},nil}
c["Allocates Bravado"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bravado"}},nil}
c["Allocates Breakage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breakage"}},nil}
@@ -2933,6 +3431,8 @@ c["Allocates Breath of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive"
c["Allocates Breath of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of lightning"}},nil}
c["Allocates Bringer of Order"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bringer of order"}},nil}
c["Allocates Briny Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="briny carapace"}},nil}
+c["Allocates Brush Off"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brush off"}},nil}
+c["Allocates Brute Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brute strength"}},nil}
c["Allocates Building Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="building toxins"}},nil}
c["Allocates Burn Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burn away"}},nil}
c["Allocates Burning Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burning nature"}},nil}
@@ -2947,18 +3447,28 @@ c["Allocates Carved Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",
c["Allocates Casting Cascade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="casting cascade"}},nil}
c["Allocates Catalysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catalysis"}},nil}
c["Allocates Catapult"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catapult"}},nil}
+c["Allocates Chakra of Breathing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of breathing"}},nil}
+c["Allocates Chakra of Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of elements"}},nil}
+c["Allocates Chakra of Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of impact"}},nil}
+c["Allocates Chakra of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of life"}},nil}
+c["Allocates Chakra of Rhythm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of rhythm"}},nil}
+c["Allocates Chakra of Sight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of sight"}},nil}
+c["Allocates Chakra of Stability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of stability"}},nil}
+c["Allocates Chakra of Thought"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of thought"}},nil}
+c["Allocates Channelled Heritage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="channelled heritage"}},nil}
c["Allocates Chilled to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chilled to the bone"}},nil}
+c["Allocates Chillproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chillproof"}},nil}
c["Allocates Chronomancy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chronomancy"}},nil}
c["Allocates Clear Space"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="clear space"}},nil}
-c["Allocates Clever Construction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="clever construction"}},nil}
c["Allocates Climate Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="climate change"}},nil}
c["Allocates Close Confines"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="close confines"}},nil}
c["Allocates Cluster Bombs"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cluster bombs"}},nil}
c["Allocates Coated Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coated arms"}},nil}
-c["Allocates Coated Knife"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coated knife"}},nil}
c["Allocates Cold Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cold nature"}},nil}
c["Allocates Colossal Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="colossal weapon"}},nil}
c["Allocates Coming Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coming calamity"}},nil}
+c["Allocates Concussive Attack"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="concussive attack"}},nil}
+c["Allocates Conductive Embrace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conductive embrace"}},nil}
c["Allocates Conservative Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conservative casting"}},nil}
c["Allocates Consistent Intake"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="consistent intake"}},nil}
c["Allocates Controlled Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="controlled chaos"}},nil}
@@ -2970,6 +3480,7 @@ c["Allocates Counterstancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassiv
c["Allocates Coursing Energy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coursing energy"}},nil}
c["Allocates Covering Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="covering ward"}},nil}
c["Allocates Cranial Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cranial impact"}},nil}
+c["Allocates Cremating Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremating cries"}},nil}
c["Allocates Cremation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremation"}},nil}
c["Allocates Crippling Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crippling toxins"}},nil}
c["Allocates Critical Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="critical exploit"}},nil}
@@ -2979,61 +3490,91 @@ c["Allocates Crushing Judgement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPas
c["Allocates Crushing Verdict"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crushing verdict"}},nil}
c["Allocates Crystal Elixir"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystal elixir"}},nil}
c["Allocates Crystalline Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline flesh"}},nil}
+c["Allocates Crystalline Resistance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline resistance"}},nil}
+c["Allocates Crystallised Immunities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystallised immunities"}},nil}
c["Allocates Cull the Hordes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cull the hordes"}},nil}
c["Allocates Curved Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="curved weapon"}},nil}
c["Allocates Cut to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cut to the bone"}},nil}
c["Allocates Dark Entries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dark entries"}},nil}
+c["Allocates Dazing Blocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dazing blocks"}},nil}
c["Allocates Dead can Dance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dead can dance"}},nil}
c["Allocates Deadly Flourish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly flourish"}},nil}
c["Allocates Deadly Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly force"}},nil}
+c["Allocates Deadly Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly invocations"}},nil}
c["Allocates Deafening Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deafening cries"}},nil}
c["Allocates Death from Afar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="death from afar"}},nil}
c["Allocates Decisive Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decisive retreat"}},nil}
+c["Allocates Decrepifying Curse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decrepifying curse"}},nil}
c["Allocates Deep Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep trance"}},nil}
c["Allocates Deep Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep wounds"}},nil}
c["Allocates Defensive Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive reflexes"}},nil}
+c["Allocates Defensive Stance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive stance"}},nil}
c["Allocates Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defiance"}},nil}
c["Allocates Deft Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deft recovery"}},nil}
+c["Allocates Delayed Gratification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="delayed gratification"}},nil}
+c["Allocates Demolitionist"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="demolitionist"}},nil}
c["Allocates Dependable Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dependable ward"}},nil}
c["Allocates Desensitisation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desensitisation"}},nil}
c["Allocates Desperate Times"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desperate times"}},nil}
-c["Allocates Destructive Apparatus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="destructive apparatus"}},nil}
c["Allocates Deterioration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deterioration"}},nil}
c["Allocates Determined Precision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="determined precision"}},nil}
c["Allocates Devastation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="devastation"}},nil}
-c["Allocates Devestating Devices"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="devestating devices"}},nil}
c["Allocates Direct Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="direct approach"}},nil}
c["Allocates Disorientation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="disorientation"}},nil}
c["Allocates Dispatch Foes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dispatch foes"}},nil}
+c["Allocates Distant Dreamer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distant dreamer"}},nil}
+c["Allocates Distracted Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracted target"}},nil}
c["Allocates Distracting Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracting presence"}},nil}
+c["Allocates Dizzying Hits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dizzying hits"}},nil}
c["Allocates Doomsayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="doomsayer"}},nil}
c["Allocates Dreamcatcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dreamcatcher"}},nil}
c["Allocates Drenched"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="drenched"}},nil}
c["Allocates Dynamism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dynamism"}},nil}
c["Allocates Easy Going"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy going"}},nil}
+c["Allocates Easy Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy target"}},nil}
c["Allocates Echoing Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing flames"}},nil}
c["Allocates Echoing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing frost"}},nil}
c["Allocates Echoing Pulse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing pulse"}},nil}
c["Allocates Echoing Thunder"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing thunder"}},nil}
c["Allocates Effervescent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="effervescent"}},nil}
c["Allocates Efficient Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient alchemy"}},nil}
+c["Allocates Efficient Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient casting"}},nil}
c["Allocates Efficient Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient contraptions"}},nil}
+c["Allocates Efficient Inscriptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient inscriptions"}},nil}
+c["Allocates Efficient Killing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient killing"}},nil}
+c["Allocates Efficient Loading"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient loading"}},nil}
c["Allocates Eldritch Will"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eldritch will"}},nil}
c["Allocates Electric Amplification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric amplification"}},nil}
+c["Allocates Electric Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric blood"}},nil}
+c["Allocates Electrifying Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying daze"}},nil}
c["Allocates Electrifying Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying nature"}},nil}
+c["Allocates Electrocuting Exposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocuting exposure"}},nil}
c["Allocates Electrocution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocution"}},nil}
c["Allocates Electrotherapy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrotherapy"}},nil}
+c["Allocates Embodiment of Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of flame"}},nil}
+c["Allocates Embodiment of Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of frost"}},nil}
+c["Allocates Embodiment of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of lightning"}},nil}
c["Allocates Emboldened Avatar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldened avatar"}},nil}
+c["Allocates Emboldening Lead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldening lead"}},nil}
+c["Allocates Embracing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embracing frost"}},nil}
+c["Allocates Empowering Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering infusions"}},nil}
+c["Allocates Empowering Remains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remains"}},nil}
+c["Allocates Empowering Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remnants"}},nil}
c["Allocates Endless Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless blizzard"}},nil}
c["Allocates Endless Circuit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless circuit"}},nil}
c["Allocates Endurance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endurance"}},nil}
+c["Allocates Endured Suffering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endured suffering"}},nil}
+c["Allocates Enduring Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring archon"}},nil}
+c["Allocates Enduring Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring deflection"}},nil}
c["Allocates Energise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energise"}},nil}
+c["Allocates Energising Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising archon"}},nil}
+c["Allocates Energising Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising deflection"}},nil}
c["Allocates Enhanced Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced barrier"}},nil}
c["Allocates Enhanced Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced reflexes"}},nil}
-c["Allocates Enraged Reaver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enraged reaver"}},nil}
c["Allocates Entropic Incarnation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="entropic incarnation"}},nil}
c["Allocates Enveloping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enveloping presence"}},nil}
c["Allocates Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="equilibrium"}},nil}
+c["Allocates Eroding Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eroding chains"}},nil}
c["Allocates Erraticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="erraticism"}},nil}
c["Allocates Escalating Mayhem"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating mayhem"}},nil}
c["Allocates Escalating Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating toxins"}},nil}
@@ -3043,12 +3584,18 @@ c["Allocates Escape Velocity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassiv
c["Allocates Essence Infusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="essence infusion"}},nil}
c["Allocates Ether Flow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ether flow"}},nil}
c["Allocates Event Horizon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="event horizon"}},nil}
+c["Allocates Everlasting Glory"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting glory"}},nil}
+c["Allocates Everlasting Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting infusions"}},nil}
+c["Allocates Evocational Practitioner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="evocational practitioner"}},nil}
+c["Allocates Expendable Army"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="expendable army"}},nil}
c["Allocates Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit"}},nil}
c["Allocates Exploit the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit the elements"}},nil}
+c["Allocates Explosive Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive empowerment"}},nil}
c["Allocates Explosive Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive impact"}},nil}
c["Allocates Exposed to the Cosmos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the cosmos"}},nil}
c["Allocates Exposed to the Inferno"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the inferno"}},nil}
c["Allocates Exposed to the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the storm"}},nil}
+c["Allocates Extinguishing Exhalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="extinguishing exhalation"}},nil}
c["Allocates Falcon Dive"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon dive"}},nil}
c["Allocates Falcon Technique"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon technique"}},nil}
c["Allocates Fan the Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fan the flames"}},nil}
@@ -3057,7 +3604,8 @@ c["Allocates Fast Acting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPas
c["Allocates Fast Metabolism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fast metabolism"}},nil}
c["Allocates Fate Finding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fate finding"}},nil}
c["Allocates Fated End"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fated end"}},nil}
-c["Allocates Fear of Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fear of death"}},nil}
+c["Allocates Favourable Odds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="favourable odds"}},nil}
+c["Allocates Fearful Paralysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fearful paralysis"}},nil}
c["Allocates Feathered Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feathered fletching"}},nil}
c["Allocates Feel the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feel the earth"}},nil}
c["Allocates Feral Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feral force"}},nil}
@@ -3065,33 +3613,43 @@ c["Allocates Fervour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type=
c["Allocates Final Barrage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="final barrage"}},nil}
c["Allocates Finality"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finality"}},nil}
c["Allocates Finesse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finesse"}},nil}
+c["Allocates Finish Them"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finish them"}},nil}
c["Allocates Finishing Blows"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finishing blows"}},nil}
-c["Allocates Fireproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fireproof"}},nil}
c["Allocates Firestarter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="firestarter"}},nil}
c["Allocates First Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="first approach"}},nil}
+c["Allocates Flamewalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flamewalker"}},nil}
c["Allocates Flash Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flash storm"}},nil}
-c["Allocates Flashy Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flashy deflection"}},nil}
+c["Allocates Flashy Parrying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flashy parrying"}},nil}
c["Allocates Fleshcrafting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fleshcrafting"}},nil}
c["Allocates Flip the Script"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flip the script"}},nil}
-c["Allocates Flurry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flurry"}},nil}
c["Allocates Focused Thrust"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="focused thrust"}},nil}
c["Allocates For the Jugular"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="for the jugular"}},nil}
c["Allocates Forces of Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forces of nature"}},nil}
c["Allocates Forcewave"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forcewave"}},nil}
c["Allocates Forthcoming"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forthcoming"}},nil}
+c["Allocates Fortified Location"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortified location"}},nil}
c["Allocates Fortifying Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortifying blood"}},nil}
+c["Allocates Frantic Fighter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic fighter"}},nil}
+c["Allocates Frantic Swings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic swings"}},nil}
c["Allocates Frazzled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frazzled"}},nil}
c["Allocates Freedom of Movement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="freedom of movement"}},nil}
c["Allocates Frenetic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frenetic"}},nil}
+c["Allocates Frightening Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frightening shield"}},nil}
+c["Allocates Frostwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frostwalker"}},nil}
+c["Allocates Frozen Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frozen limit"}},nil}
c["Allocates Full Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full recovery"}},nil}
c["Allocates Full Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full salvo"}},nil}
c["Allocates Fulmination"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fulmination"}},nil}
+c["Allocates Gem Enthusiast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gem enthusiast"}},nil}
c["Allocates General Electric"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general electric"}},nil}
c["Allocates General's Bindings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general's bindings"}},nil}
c["Allocates Giantslayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="giantslayer"}},nil}
+c["Allocates Gigantic Following"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gigantic following"}},nil}
c["Allocates Glaciation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glaciation"}},nil}
+c["Allocates Glancing Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glancing deflection"}},nil}
c["Allocates Glancing Hits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glancing hits"}},nil}
c["Allocates Glazed Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glazed flesh"}},nil}
+c["Allocates Glorious Anticipation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glorious anticipation"}},nil}
c["Allocates Goring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="goring"}},nil}
c["Allocates Gravedigger"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gravedigger"}},nil}
c["Allocates Greatest Defence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="greatest defence"}},nil}
@@ -3099,8 +3657,10 @@ c["Allocates Grenadier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",typ
c["Allocates Grip of Evil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grip of evil"}},nil}
c["Allocates Grit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grit"}},nil}
c["Allocates Growing Swarm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="growing swarm"}},nil}
+c["Allocates Guided Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guided hand"}},nil}
c["Allocates Guts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guts"}},nil}
c["Allocates Guttural Roar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guttural roar"}},nil}
+c["Allocates Haemorrhaging Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="haemorrhaging cuts"}},nil}
c["Allocates Hale Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale heart"}},nil}
c["Allocates Hale Traveller"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale traveller"}},nil}
c["Allocates Hallowed"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hallowed"}},nil}
@@ -3108,13 +3668,15 @@ c["Allocates Hardened Wood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive"
c["Allocates Harmonic Generator"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harmonic generator"}},nil}
c["Allocates Harness the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harness the elements"}},nil}
c["Allocates Harsh Winter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harsh winter"}},nil}
+c["Allocates Hastening Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hastening barrier"}},nil}
+c["Allocates Headshot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="headshot"}},nil}
c["Allocates Heart Tissue"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heart tissue"}},nil}
c["Allocates Heartbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartbreaking"}},nil}
c["Allocates Heartstopping"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping"}},nil}
-c["Allocates Heatproofing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heatproofing"}},nil}
+c["Allocates Heartstopping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping presence"}},nil}
+c["Allocates Heatproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heatproof"}},nil}
c["Allocates Heavy Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy ammunition"}},nil}
c["Allocates Heavy Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy armour"}},nil}
-c["Allocates Heavy Blade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy blade"}},nil}
c["Allocates Heavy Buffer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy buffer"}},nil}
c["Allocates Heavy Contact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy contact"}},nil}
c["Allocates Heavy Drinker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy drinker"}},nil}
@@ -3123,15 +3685,18 @@ c["Allocates Heavy Weaponry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive
c["Allocates Hefty Unit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hefty unit"}},nil}
c["Allocates High Alert"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="high alert"}},nil}
c["Allocates Hindered Capabilities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindered capabilities"}},nil}
+c["Allocates Hindering Obstacles"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindering obstacles"}},nil}
c["Allocates Holy Protector"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="holy protector"}},nil}
c["Allocates Honourless"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="honourless"}},nil}
c["Allocates Hulking Smash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hulking smash"}},nil}
c["Allocates Hunker Down"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunker down"}},nil}
+c["Allocates Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter"}},nil}
c["Allocates Hunter's Talisman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter's talisman"}},nil}
c["Allocates Ice Walls"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ice walls"}},nil}
c["Allocates Icebreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="icebreaker"}},nil}
c["Allocates Ignore Pain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ignore pain"}},nil}
c["Allocates Illuminated Crown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="illuminated crown"}},nil}
+c["Allocates Imbibed Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="imbibed power"}},nil}
c["Allocates Immaterial"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immaterial"}},nil}
c["Allocates Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immolation"}},nil}
c["Allocates Immortal Infamy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immortal infamy"}},nil}
@@ -3147,40 +3712,55 @@ c["Allocates Incendiary"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",ty
c["Allocates Incision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="incision"}},nil}
c["Allocates Inescapable Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inescapable cold"}},nil}
c["Allocates Inevitable Rupture"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inevitable rupture"}},nil}
+c["Allocates Infernal Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infernal limit"}},nil}
c["Allocates Infused Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused flesh"}},nil}
+c["Allocates Infused Limits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused limits"}},nil}
+c["Allocates Infusing Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infusing power"}},nil}
c["Allocates Ingenuity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ingenuity"}},nil}
+c["Allocates Inherited Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inherited strength"}},nil}
c["Allocates Initiative"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="initiative"}},nil}
c["Allocates Inner Faith"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inner faith"}},nil}
c["Allocates Insightfulness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insightfulness"}},nil}
c["Allocates Inspiring Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring ally"}},nil}
c["Allocates Inspiring Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring leader"}},nil}
c["Allocates Instability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="instability"}},nil}
-c["Allocates Instant Reload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="instant reload"}},nil}
c["Allocates Insulated Treads"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insulated treads"}},nil}
c["Allocates Intense Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="intense flames"}},nil}
c["Allocates Internal Bleeding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="internal bleeding"}},nil}
c["Allocates Investing Energies"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="investing energies"}},nil}
+c["Allocates Invigorating Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating archon"}},nil}
+c["Allocates Invigorating Grandeur"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating grandeur"}},nil}
+c["Allocates Invocated Echoes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated echoes"}},nil}
c["Allocates Invocated Efficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated efficiency"}},nil}
+c["Allocates Invocated Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated limit"}},nil}
c["Allocates Irreparable"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="irreparable"}},nil}
c["Allocates Jack of all Trades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="jack of all trades"}},nil}
c["Allocates Javelin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="javelin"}},nil}
+c["Allocates Kept at Bay"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kept at bay"}},nil}
c["Allocates Killer Instinct"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="killer instinct"}},nil}
c["Allocates Kite Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kite runner"}},nil}
+c["Allocates Last Stand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="last stand"}},nil}
+c["Allocates Lasting Boons"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting boons"}},nil}
c["Allocates Lasting Incantations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting incantations"}},nil}
c["Allocates Lasting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting toxins"}},nil}
c["Allocates Lasting Trauma"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting trauma"}},nil}
+c["Allocates Lavianga's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lavianga's brew"}},nil}
c["Allocates Lay Siege"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lay siege"}},nil}
+c["Allocates Lead by Example"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lead by example"}},nil}
c["Allocates Leaping Ambush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leaping ambush"}},nil}
c["Allocates Leather Bound Gauntlets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leather bound gauntlets"}},nil}
c["Allocates Leeching Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leeching toxins"}},nil}
c["Allocates Left Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="left hand of darkness"}},nil}
c["Allocates Lifelong Friend"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lifelong friend"}},nil}
+c["Allocates Light on your Feet"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="light on your feet"}},nil}
c["Allocates Lightning Quick"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning quick"}},nil}
c["Allocates Lightning Rod"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning rod"}},nil}
c["Allocates Lingering Horror"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering horror"}},nil}
c["Allocates Lingering Whispers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering whispers"}},nil}
c["Allocates Living Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="living death"}},nil}
+c["Allocates Lockdown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lockdown"}},nil}
c["Allocates Locked On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="locked on"}},nil}
+c["Allocates Lone Warrior"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lone warrior"}},nil}
c["Allocates Long Distance Relationship"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="long distance relationship"}},nil}
c["Allocates Loose Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="loose flesh"}},nil}
c["Allocates Lord of Horrors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lord of horrors"}},nil}
@@ -3192,7 +3772,9 @@ c["Allocates Lust for Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPas
c["Allocates Made to Last"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="made to last"}},nil}
c["Allocates Madness in the Bones"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="madness in the bones"}},nil}
c["Allocates Maiming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="maiming strike"}},nil}
+c["Allocates Man's Beast Friend"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="man's beast friend"}},nil}
c["Allocates Manifold Method"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="manifold method"}},nil}
+c["Allocates Marathon Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marathon runner"}},nil}
c["Allocates Marked Agility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked agility"}},nil}
c["Allocates Marked for Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for death"}},nil}
c["Allocates Marked for Sickness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for sickness"}},nil}
@@ -3201,23 +3783,31 @@ c["Allocates Mass Hysteria"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive"
c["Allocates Mass Rejuvenation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mass rejuvenation"}},nil}
c["Allocates Master Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master fletching"}},nil}
c["Allocates Master of Hexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master of hexes"}},nil}
+c["Allocates Material Solidification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="material solidification"}},nil}
c["Allocates Meat Recycling"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="meat recycling"}},nil}
c["Allocates Melding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melding"}},nil}
+c["Allocates Melting Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melting flames"}},nil}
+c["Allocates Mending Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mending deflection"}},nil}
c["Allocates Mental Alacrity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental alacrity"}},nil}
c["Allocates Mental Perseverance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental perseverance"}},nil}
c["Allocates Mental Toughness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental toughness"}},nil}
c["Allocates Mind Eraser"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mind eraser"}},nil}
+c["Allocates Molten Being"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten being"}},nil}
+c["Allocates Molten Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten carapace"}},nil}
c["Allocates Moment of Truth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="moment of truth"}},nil}
-c["Allocates Morning Star"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="morning star"}},nil}
+c["Allocates Momentum"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="momentum"}},nil}
c["Allocates Multitasking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="multitasking"}},nil}
c["Allocates Natural Immunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="natural immunity"}},nil}
c["Allocates Near Sighted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near sighted"}},nil}
c["Allocates Near at Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near at hand"}},nil}
+c["Allocates Necromantic Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necromantic ward"}},nil}
c["Allocates Necrotic Touch"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotic touch"}},nil}
c["Allocates Necrotised Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotised flesh"}},nil}
+c["Allocates Nimble Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nimble strength"}},nil}
c["Allocates Nourishing Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nourishing ally"}},nil}
c["Allocates Nurturing Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nurturing guardian"}},nil}
-c["Allocates Offensive Stance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="offensive stance"}},nil}
+c["Allocates One For All"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one for all"}},nil}
+c["Allocates One With Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with flame"}},nil}
c["Allocates One with the River"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the river"}},nil}
c["Allocates One with the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the storm"}},nil}
c["Allocates Overexposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overexposure"}},nil}
@@ -3227,7 +3817,8 @@ c["Allocates Overload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type
c["Allocates Overwhelm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelm"}},nil}
c["Allocates Overwhelming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelming strike"}},nil}
c["Allocates Overzealous"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overzealous"}},nil}
-c["Allocates Parrying Motion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="parrying motion"}},nil}
+c["Allocates Paranoia"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="paranoia"}},nil}
+c["Allocates Passthrough Rounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="passthrough rounds"}},nil}
c["Allocates Patient Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="patient barrier"}},nil}
c["Allocates Perfect Opportunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfect opportunity"}},nil}
c["Allocates Perfectly Placed Knife"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfectly placed knife"}},nil}
@@ -3238,6 +3829,7 @@ c["Allocates Pierce the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassi
c["Allocates Piercing Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="piercing shot"}},nil}
c["Allocates Pile On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pile on"}},nil}
c["Allocates Pin and Run"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin and run"}},nil}
+c["Allocates Pin their Motivation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin their motivation"}},nil}
c["Allocates Pinpoint Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pinpoint shot"}},nil}
c["Allocates Pliable Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pliable flesh"}},nil}
c["Allocates Pocket Sand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pocket sand"}},nil}
@@ -3246,7 +3838,9 @@ c["Allocates Polymathy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",typ
c["Allocates Potent Incantation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="potent incantation"}},nil}
c["Allocates Power Conduction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power conduction"}},nil}
c["Allocates Power Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power shots"}},nil}
+c["Allocates Precise Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise invocations"}},nil}
c["Allocates Precise Point"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise point"}},nil}
+c["Allocates Precise Volatility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise volatility"}},nil}
c["Allocates Precision Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precision salvo"}},nil}
c["Allocates Preemptive Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="preemptive strike"}},nil}
c["Allocates Presence Present"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="presence present"}},nil}
@@ -3256,6 +3850,7 @@ c["Allocates Price of Freedom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassi
c["Allocates Primal Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal growth"}},nil}
c["Allocates Primal Protection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal protection"}},nil}
c["Allocates Primal Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal sundering"}},nil}
+c["Allocates Primed to Explode"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primed to explode"}},nil}
c["Allocates Prism Guard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prism guard"}},nil}
c["Allocates Profane Commander"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="profane commander"}},nil}
c["Allocates Proficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="proficiency"}},nil}
@@ -3264,44 +3859,56 @@ c["Allocates Prolonged Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPass
c["Allocates Prolonged Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prolonged fury"}},nil}
c["Allocates Protraction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="protraction"}},nil}
c["Allocates Psychic Fragmentation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="psychic fragmentation"}},nil}
+c["Allocates Punctured Lung"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="punctured lung"}},nil}
c["Allocates Pure Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure chaos"}},nil}
c["Allocates Pure Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure power"}},nil}
c["Allocates Push the Advantage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="push the advantage"}},nil}
c["Allocates Quick Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick recovery"}},nil}
c["Allocates Quick Response"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick response"}},nil}
-c["Allocates Quick-change Act"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick-change act"}},nil}
c["Allocates Rallying Icon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rallying icon"}},nil}
+c["Allocates Rapid Reload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid reload"}},nil}
c["Allocates Rapid Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid strike"}},nil}
c["Allocates Rattled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rattled"}},nil}
-c["Allocates Rattling Ball"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rattling ball"}},nil}
c["Allocates Raw Mana"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="raw mana"}},nil}
c["Allocates Reaching Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaching strike"}},nil}
c["Allocates Reaving"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaving"}},nil}
c["Allocates Refills"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refills"}},nil}
c["Allocates Refocus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refocus"}},nil}
+c["Allocates Reformed Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reformed barrier"}},nil}
c["Allocates Regenerative Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="regenerative flesh"}},nil}
c["Allocates Reinforced Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinforced barrier"}},nil}
+c["Allocates Reinforced Rallying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinforced rallying"}},nil}
c["Allocates Reinvigoration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinvigoration"}},nil}
c["Allocates Relentless Fallen"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="relentless fallen"}},nil}
c["Allocates Repeating Explosives"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repeating explosives"}},nil}
c["Allocates Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reprisal"}},nil}
c["Allocates Repulsion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repulsion"}},nil}
+c["Allocates Resolute Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolute reprisal"}},nil}
c["Allocates Resolution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolution"}},nil}
c["Allocates Restless Dead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="restless dead"}},nil}
+c["Allocates Resurging Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resurging archon"}},nil}
c["Allocates Retaliation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="retaliation"}},nil}
c["Allocates Reusable Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reusable ammunition"}},nil}
c["Allocates Revenge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="revenge"}},nil}
c["Allocates Reverberation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reverberation"}},nil}
c["Allocates Right Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="right hand of darkness"}},nil}
-c["Allocates Ripping Blade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ripping blade"}},nil}
+c["Allocates Roaring Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roaring cries"}},nil}
c["Allocates Roil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roil"}},nil}
c["Allocates Roll and Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roll and strike"}},nil}
c["Allocates Ruin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ruin"}},nil}
+c["Allocates Run and Gun"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="run and gun"}},nil}
+c["Allocates Rupturing Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rupturing pins"}},nil}
+c["Allocates Rusted Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rusted pins"}},nil}
+c["Allocates Sacrificial Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sacrificial blood"}},nil}
c["Allocates Sand in the Eyes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sand in the eyes"}},nil}
+c["Allocates Sanguimantic Rituals"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguimantic rituals"}},nil}
+c["Allocates Sanguine Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguine tolerance"}},nil}
c["Allocates Savagery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savagery"}},nil}
c["Allocates Savoured Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savoured blood"}},nil}
c["Allocates Savouring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savouring"}},nil}
+c["Allocates Secrets of the Orb"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="secrets of the orb"}},nil}
c["Allocates Seeing Stars"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="seeing stars"}},nil}
+c["Allocates Self Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self immolation"}},nil}
c["Allocates Self Mortification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self mortification"}},nil}
c["Allocates Serrated Edges"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="serrated edges"}},nil}
c["Allocates Shadow Dancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shadow dancing"}},nil}
@@ -3311,22 +3918,26 @@ c["Allocates Shatter Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",
c["Allocates Shattered Crystal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattered crystal"}},nil}
c["Allocates Shattering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering"}},nil}
c["Allocates Shattering Blow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering blow"}},nil}
+c["Allocates Shattering Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering daze"}},nil}
c["Allocates Shedding Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shedding skin"}},nil}
c["Allocates Shield Expertise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shield expertise"}},nil}
c["Allocates Shimmering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering"}},nil}
c["Allocates Shimmering Mirage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering mirage"}},nil}
+c["Allocates Shocking Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shocking limit"}},nil}
+c["Allocates Shockproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockproof"}},nil}
c["Allocates Shockwaves"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockwaves"}},nil}
c["Allocates Short Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="short shot"}},nil}
c["Allocates Shrapnel"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shrapnel"}},nil}
c["Allocates Shredding Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding contraptions"}},nil}
c["Allocates Shredding Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding force"}},nil}
+c["Allocates Sic 'Em"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sic 'em"}},nil}
c["Allocates Sigil of Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of fire"}},nil}
c["Allocates Sigil of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of ice"}},nil}
c["Allocates Sigil of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of lightning"}},nil}
c["Allocates Silent Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="silent guardian"}},nil}
-c["Allocates Silent Shiv"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="silent shiv"}},nil}
c["Allocates Singular Purpose"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="singular purpose"}},nil}
c["Allocates Siphon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="siphon"}},nil}
+c["Allocates Sitting Duck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sitting duck"}},nil}
c["Allocates Skullcrusher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="skullcrusher"}},nil}
c["Allocates Slippery Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slippery ice"}},nil}
c["Allocates Slow Burn"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slow burn"}},nil}
@@ -3341,29 +3952,38 @@ c["Allocates Spellblade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",ty
c["Allocates Spike Pit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spike pit"}},nil}
c["Allocates Spiked Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked armour"}},nil}
c["Allocates Spiked Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked shield"}},nil}
-c["Allocates Spiked Whip"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked whip"}},nil}
c["Allocates Spiral into Depression"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into depression"}},nil}
c["Allocates Spiral into Insanity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into insanity"}},nil}
c["Allocates Spiral into Mania"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into mania"}},nil}
c["Allocates Spirit Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit bond"}},nil}
c["Allocates Spirit Bonds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit bonds"}},nil}
+c["Allocates Splintering Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splintering force"}},nil}
+c["Allocates Splinters"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splinters"}},nil}
c["Allocates Split Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split shot"}},nil}
c["Allocates Split the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split the earth"}},nil}
+c["Allocates Splitting Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splitting ground"}},nil}
+c["Allocates Spray and Pray"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spray and pray"}},nil}
c["Allocates Spreading Shocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spreading shocks"}},nil}
c["Allocates Stacking Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stacking toxins"}},nil}
c["Allocates Staggering Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering palm"}},nil}
c["Allocates Staggering Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering wounds"}},nil}
-c["Allocates Stance Breaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stance breaker"}},nil}
c["Allocates Stand Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand ground"}},nil}
c["Allocates Stand and Deliver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand and deliver"}},nil}
c["Allocates Stars Aligned"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stars aligned"}},nil}
+c["Allocates Staunch Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunch deflection"}},nil}
c["Allocates Staunching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunching"}},nil}
+c["Allocates Steadfast Resolve"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steadfast resolve"}},nil}
+c["Allocates Steady Footing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steady footing"}},nil}
c["Allocates Stigmata"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stigmata"}},nil}
c["Allocates Stimulants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stimulants"}},nil}
+c["Allocates Storm Driven"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm driven"}},nil}
c["Allocates Storm Surge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm surge"}},nil}
c["Allocates Storm Swell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm swell"}},nil}
c["Allocates Stormbreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormbreaker"}},nil}
c["Allocates Stormcharged"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormcharged"}},nil}
+c["Allocates Stormwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormwalker"}},nil}
+c["Allocates Strike True"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strike true"}},nil}
+c["Allocates Stripped Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stripped defences"}},nil}
c["Allocates Strong Chin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strong chin"}},nil}
c["Allocates Strong Links"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strong links"}},nil}
c["Allocates Struck Through"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="struck through"}},nil}
@@ -3378,38 +3998,63 @@ c["Allocates Suffusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",typ
c["Allocates Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sundering"}},nil}
c["Allocates Supportive Ancestors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="supportive ancestors"}},nil}
c["Allocates Surging Currents"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="surging currents"}},nil}
+c["Allocates Swift Blocking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift blocking"}},nil}
c["Allocates Swift Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift claw"}},nil}
-c["Allocates Swift Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift deflection"}},nil}
+c["Allocates Swift Interruption"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift interruption"}},nil}
c["Allocates Symbol of Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="symbol of defiance"}},nil}
+c["Allocates Tactical Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tactical retreat"}},nil}
c["Allocates Tainted Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tainted strike"}},nil}
c["Allocates Tandem Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tandem assault"}},nil}
c["Allocates Taste for Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taste for blood"}},nil}
c["Allocates Taut Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taut flesh"}},nil}
+c["Allocates Tempered Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered defences"}},nil}
c["Allocates Tempered Mind"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered mind"}},nil}
+c["Allocates Temporal Mastery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="temporal mastery"}},nil}
c["Allocates Tenfold Attacks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tenfold attacks"}},nil}
+c["Allocates The Ancient Serpent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the ancient serpent"}},nil}
+c["Allocates The Cunning Fox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the cunning fox"}},nil}
+c["Allocates The Fabled Stag"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the fabled stag"}},nil}
+c["Allocates The Frenzied Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the frenzied bear"}},nil}
+c["Allocates The Great Boar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the great boar"}},nil}
+c["Allocates The Howling Primate"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the howling primate"}},nil}
+c["Allocates The Molten One's Gift"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the molten one's gift"}},nil}
+c["Allocates The Noble Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the noble wolf"}},nil}
c["Allocates The Power Within"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the power within"}},nil}
+c["Allocates The Raging Ox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the raging ox"}},nil}
+c["Allocates The Spring Hare"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the spring hare"}},nil}
+c["Allocates The Wild Cat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the wild cat"}},nil}
+c["Allocates The Winter Owl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the winter owl"}},nil}
c["Allocates Thickened Arteries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thickened arteries"}},nil}
c["Allocates Thicket Warding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thicket warding"}},nil}
c["Allocates Thin Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thin ice"}},nil}
+c["Allocates Thirst of Kitava"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst of kitava"}},nil}
c["Allocates Thirsting Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirsting ally"}},nil}
c["Allocates Thornhide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thornhide"}},nil}
c["Allocates Thousand Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thousand cuts"}},nil}
c["Allocates Thrill of Battle"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of battle"}},nil}
+c["Allocates Thrill of the Fight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of the fight"}},nil}
c["Allocates Throatseeker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="throatseeker"}},nil}
c["Allocates Thunderstruck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thunderstruck"}},nil}
c["Allocates Tides of Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tides of change"}},nil}
c["Allocates Time Manipulation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="time manipulation"}},nil}
c["Allocates Titanic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="titanic"}},nil}
+c["Allocates Tolerant Equipment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tolerant equipment"}},nil}
c["Allocates Total Incineration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="total incineration"}},nil}
c["Allocates Touch the Arcane"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="touch the arcane"}},nil}
c["Allocates Tough Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tough claw"}},nil}
c["Allocates Towering Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="towering shield"}},nil}
+c["Allocates Toxic Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="toxic tolerance"}},nil}
+c["Allocates Trained Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained deflection"}},nil}
+c["Allocates Trained Turrets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained turrets"}},nil}
+c["Allocates Tribal Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tribal fury"}},nil}
c["Allocates Trick Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trick shot"}},nil}
c["Allocates True Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="true strike"}},nil}
+c["Allocates Tukohama's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tukohama's brew"}},nil}
c["Allocates Turn the Clock Back"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock back"}},nil}
c["Allocates Turn the Clock Forward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock forward"}},nil}
c["Allocates Twinned Tethers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="twinned tethers"}},nil}
c["Allocates Unbending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbending"}},nil}
+c["Allocates Unbothering Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbothering cold"}},nil}
c["Allocates Unbound Forces"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbound forces"}},nil}
c["Allocates Unbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbreaking"}},nil}
c["Allocates Unerring Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unerring impact"}},nil}
@@ -3423,13 +4068,17 @@ c["Allocates Unsight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type=
c["Allocates Unspoken Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unspoken bond"}},nil}
c["Allocates Unstable Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstable bond"}},nil}
c["Allocates Unstoppable Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstoppable barrier"}},nil}
+c["Allocates Unyielding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unyielding"}},nil}
c["Allocates Urgent Call"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="urgent call"}},nil}
+c["Allocates Utility Ordnance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utility ordnance"}},nil}
+c["Allocates Utmost Offering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utmost offering"}},nil}
c["Allocates Vale Shelter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vale shelter"}},nil}
c["Allocates Vengeance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeance"}},nil}
c["Allocates Vengeful Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeful fury"}},nil}
c["Allocates Versatile Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="versatile arms"}},nil}
c["Allocates Viciousness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="viciousness"}},nil}
c["Allocates Vigilance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigilance"}},nil}
+c["Allocates Vigorous Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigorous remnants"}},nil}
c["Allocates Vile Mending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vile mending"}},nil}
c["Allocates Vocal Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vocal empowerment"}},nil}
c["Allocates Void"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="void"}},nil}
@@ -3437,17 +4086,20 @@ c["Allocates Volatile Grenades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPass
c["Allocates Volcanic Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="volcanic skin"}},nil}
c["Allocates Voracious"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="voracious"}},nil}
c["Allocates Vulgar Methods"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vulgar methods"}},nil}
+c["Allocates Waning Hindrances"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waning hindrances"}},nil}
c["Allocates Warding Fetish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding fetish"}},nil}
c["Allocates Warding Potions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding potions"}},nil}
+c["Allocates Warlord Berserker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord berserker"}},nil}
+c["Allocates Warlord Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord leader"}},nil}
c["Allocates Warm the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warm the heart"}},nil}
+c["Allocates Wary Dodging"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wary dodging"}},nil}
c["Allocates Wasting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wasting"}},nil}
c["Allocates Watchtowers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="watchtowers"}},nil}
c["Allocates Waters of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waters of life"}},nil}
-c["Allocates Way of the Wind"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="way of the wind"}},nil}
c["Allocates Wellspring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wellspring"}},nil}
c["Allocates Whirling Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="whirling assault"}},nil}
-c["Allocates Whirling Onslaught"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="whirling onslaught"}},nil}
c["Allocates Wide Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wide barrier"}},nil}
+c["Allocates Widespread Coverage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="widespread coverage"}},nil}
c["Allocates Wild Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wild storm"}},nil}
c["Allocates Wither Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wither away"}},nil}
c["Allocates Woodland Aspect"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="woodland aspect"}},nil}
@@ -3458,12 +4110,20 @@ c["Alternating every 5 seconds: Take 30% less Damage from Hits"]={nil,"Alternati
c["Always Hits"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}
c["Always Poison on Hit with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="PoisonChance",type="OVERRIDE",value=100}},nil}
c["Always deals Critical Hits against Heavy Stunned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil}
+c["Ancestrally Boosted Attacks deal 16% increased Damage"]={nil,"Ancestrally Boosted Attacks deal 16% increased Damage "}
+c["Ancestrally Boosted Attacks deal 30% increased Damage"]={nil,"Ancestrally Boosted Attacks deal 30% increased Damage "}
+c["Ancestrally Boosted Attacks deal 30% increased Damage On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted"]={nil,"Ancestrally Boosted Attacks deal 30% increased Damage On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted "}
+c["Ancestrally Boosted Attacks deal 8% increased Damage"]={nil,"Ancestrally Boosted Attacks deal 8% increased Damage "}
c["Any number of Poisons from this Weapon can affect a target at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=0,keywordFlags=0,name="PoisonStacks",type="OVERRIDE",value=math.huge}},nil}
-c["Apply Elemental Exposure to Enemies 3 metres in front of you"]={nil,"Apply Elemental Exposure to Enemies 3 metres in front of you "}
-c["Apply Elemental Exposure to Enemies 3 metres in front of you for 4 seconds while Shield is raised"]={nil,"Apply Elemental Exposure to Enemies 3 metres in front of you for 4 seconds while Shield is raised "}
+c["Apply 5 Critical Weakness to Enemies when Consuming a Mark on them"]={nil,"Apply 5 Critical Weakness to Enemies when Consuming a Mark on them "}
+c["Apply Debilitate to Enemies 3 Metres in front of you while actively Blocking"]={nil,"Apply Debilitate to Enemies 3 Metres in front of you while actively Blocking "}
+c["Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"]={nil,"Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate "}
+c["Archon Buffs also grant +20% to all Elemental Resistances"]={nil,"Archon Buffs also grant +20% to all Elemental Resistances "}
+c["Archon Buffs also grant +20% to all Elemental Resistances Archon Buffs also grant 10% increased Movement Speed"]={nil,"Archon Buffs also grant +20% to all Elemental Resistances Archon Buffs also grant 10% increased Movement Speed "}
+c["Archon Buffs also grant 10% increased Movement Speed"]={nil,"Archon Buffs also grant 10% increased Movement Speed "}
+c["Archon recovery period expires 10% faster"]={nil,"Archon recovery period expires 10% faster "}
+c["Archon recovery period expires 25% faster"]={nil,"Archon recovery period expires 25% faster "}
c["Area Skills have 20% chance to Knock Enemies Back on Hit"]={{[1]={[1]={skillType=8,type="SkillType"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=20}},nil}
-c["Armour also applies to Lightning damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100}},nil}
-c["Armour applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100}},nil}
c["Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100},[4]={flags=0,keywordFlags=0,name="ArmourDoesNotApplyToPhysicalDamageTaken",type="FLAG",value=true}},nil}
c["Armour is increased by Overcapped Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="ArmourIncreasedByOvercappedFireRes",type="FLAG",value=true}},nil}
c["Arrows Fork"]={nil,"Arrows Fork "}
@@ -3474,8 +4134,9 @@ c["Arrows gain Critical Hit Chance as they travel farther, up to"]={nil,"Arrows
c["Arrows gain Critical Hit Chance as they travel farther, up to 60% increased Critical Hit Chance after 7 metres"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=131072,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}
c["Attack Damage Penetrates 15% of Enemy Elemental Resistances"]={{[1]={flags=1,keywordFlags=0,name="ElementalPenetration",type="BASE",value=15}},nil}
c["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"]={nil,"Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds "}
+c["Attack Hits inflict Spectral Fire for 8 seconds"]={nil,"Attack Hits inflict Spectral Fire for 8 seconds "}
c["Attack Skills deal 10% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}
-c["Attack Skills have +1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}
+c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={[1]={skillType=114,type="SkillType"},flags=0,keywordFlags=65536,name="ActiveBallistaLimit",type="BASE",value=1}},nil}
c["Attacks Chain 2 additional times"]={{[1]={flags=1,keywordFlags=0,name="ChainCountMax",type="BASE",value=2}},nil}
c["Attacks Chain an additional time"]={nil,"Attacks Chain an additional time "}
c["Attacks Chain an additional time Attacks Chain 2 additional times"]={nil,"Attacks Chain an additional time Attacks Chain 2 additional times "}
@@ -3495,27 +4156,38 @@ c["Attacks have 25% chance to Maim on Hit"]={{}," to Maim "}
c["Attacks have Added maximum Lightning Damage equal to 8% of maximum Mana"]={{[1]={[1]={percent=8,stat="Mana",type="PercentStat"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil}
c["Attacks have Added maximum Lightning Damage equal to 9% of maximum Mana"]={{[1]={[1]={percent=9,stat="Mana",type="PercentStat"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil}
c["Attacks have added Physical damage equal to 3% of maximum Life"]={{[1]={[1]={percent=3,stat="Life",type="PercentStat"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={percent=3,stat="Life",type="PercentStat"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=1}},nil}
-c["Attacks used by Totems have 2% increased Attack Speed per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=1,keywordFlags=16384,name="Speed",type="INC",value=2}},nil}
+c["Attacks used by Ballistas have 10% increased Attack Speed"]={nil,"Attacks used by Ballistas have 10% increased Attack Speed "}
+c["Attacks used by Ballistas have 10% increased Attack Speed 50% increased Ballista Immobilisation buildup"]={nil,"Attacks used by Ballistas have 10% increased Attack Speed 50% increased Ballista Immobilisation buildup "}
+c["Attacks used by Ballistas have 4% increased Attack Speed"]={nil,"Attacks used by Ballistas have 4% increased Attack Speed "}
+c["Attacks used by Totems have 3% increased Attack Speed per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=1,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}
c["Attacks used by Totems have 4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=4}},nil}
c["Attacks used by Totems have 4% increased Attack Speed per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=1,keywordFlags=16384,name="Speed",type="INC",value=4}},nil}
c["Attacks using your Weapons have Added Physical Damage equal"]={nil,"Added Physical Damage equal "}
c["Attacks using your Weapons have Added Physical Damage equal to 25% of the Accuracy Rating on the Weapon"]={{[1]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1},[3]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[4]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1}},nil}
-c["Attacks with One-Handed Weapons have 12% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=12}},nil}
+c["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=15}},nil}
c["Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil}
c["Attacks with this Weapon gain 50% of Physical damage as Extra damage of each Element"]={{[1]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=50},[2]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50},[3]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=50}},nil}
c["Attribute Requirements of Gems can be satisified by your highest Attribute"]={{[1]={flags=0,keywordFlags=0,name="GemAttributeRequirementsSatisfiedByHighestAttribute",type="FLAG",value=true}},nil}
c["Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={div=2,stat="ManaReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="AuraEffect",type="MORE",value=1}},nil}
+c["Aura Skills have 10% increased Magnitudes"]={{}," Magnitudes "}
+c["Aura Skills have 10% increased Magnitudes +10 to Intelligence"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="Int",type="INC",value=10}}," Magnitudes +10 to "}
c["Aura Skills have 12% increased Magnitudes"]={{}," Magnitudes "}
+c["Aura Skills have 14% increased Magnitudes"]={{}," Magnitudes "}
+c["Aura Skills have 14% increased Magnitudes Your Aura Buffs do not affect Allies"]={{}," Magnitudes Your Aura Buffs do not affect Allies "}
c["Aura Skills have 5% increased Magnitudes"]={{}," Magnitudes "}
c["Aura Skills have 6% increased Magnitudes"]={{}," Magnitudes "}
c["Auras from your Skills can only affect you"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasOnlyAffectYou",type="FLAG",value=true}},nil}
-c["Banner Buffs linger on you for 4 seconds after you leave the Area"]={nil,"Banner Buffs linger on you for 4 seconds after you leave the Area "}
+c["Banner Buffs linger on you for 2 seconds after you leave the Area"]={nil,"Banner Buffs linger on you for 2 seconds after you leave the Area "}
c["Banner Skills have 12% increased Aura Magnitudes"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil}
c["Banner Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
c["Banner Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
c["Banner Skills have 20% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
-c["Banners also grant +5% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil}
+c["Banner Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}
+c["Banner Skills have 30% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}
+c["Banners also grant +25% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}}}},nil}
c["Banners always have maximum Valour"]={nil,"Banners always have maximum Valour "}
+c["Banners gain 5 Glory per second"]={nil,"Banners gain 5 Glory per second "}
+c["Banners gain 5 Glory per second There is no Limit on the number of Banners you can place"]={nil,"Banners gain 5 Glory per second There is no Limit on the number of Banners you can place "}
c["Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence"]={nil,"Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence "}
c["Base Bleeding Duration is 1 second"]={{[1]={flags=0,keywordFlags=0,name="BleedDurationBase",type="OVERRIDE",value="1"}},nil}
c["Base Critical Hit Chance for Attacks with Weapons is 7%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=7}},nil}
@@ -3524,20 +4196,26 @@ c["Base Critical Hit Chance for Spells is 15%"]={{[1]={[1]={skillType=2,type="Sk
c["Base Maximum Darkness is 100"]={{[1]={flags=0,keywordFlags=0,name="PlayerHasDarkness",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Darkness",type="BASE",value=100}},nil}
c["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second"]={nil,"Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second "}
c["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second 50% more Critical Damage Bonus"]={nil,"Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second 50% more Critical Damage Bonus "}
+c["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="FlaskChargesDoubledLimit",type="Multiplier",var="FlaskChargesDoubled"},flags=0,keywordFlags=0,name="FlaskCharges",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:FlaskChargesDoubled",type="OVERRIDE",value=1}},"Benefits from consuming Frenzy for your Skills have 50% chance to be d "}
+c["Bifurcates Critical Hits"]={nil,"Bifurcates Critical Hits "}
+c["Bifurcates Critical Hits 10% of Skill Mana Costs Converted to Life Costs"]={nil,"Bifurcates Critical Hits 10% of Skill Mana Costs Converted to Life Costs "}
c["Bleeding you inflict deals Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=10}},nil}
c["Bleeding you inflict is Aggravated"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:BleedAggravated",type="FLAG",value=true}}}},nil}
c["Bleeding you inflict on Cursed targets is Aggravated"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:BleedAggravated",type="FLAG",value=true}}}},nil}
+c["Bleeding you inflict on Pinned Enemies is Aggravated"]={nil,"Bleeding you inflict on Pinned Enemies is Aggravated "}
c["Blind Chilled enemies on Hit"]={nil,"Blind Chilled enemies on Hit "}
c["Blind Enemies when they Stun you"]={nil,"Blind Enemies when they Stun you "}
c["Blind Targets when you Poison them"]={nil,"Blind Targets when you Poison them "}
c["Blind does not affect your Light Radius"]={nil,"Blind does not affect your Light Radius "}
c["Blind does not affect your Light Radius 25% more Melee Critical Hit Chance while Blinded"]={nil,"Blind does not affect your Light Radius 25% more Melee Critical Hit Chance while Blinded "}
c["Block Chance is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="BlockChanceDoubledLimit",type="Multiplier",var="BlockChanceDoubled"},flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:BlockChanceDoubled",type="OVERRIDE",value=1}},nil}
-c["Block chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceIsLucky",type="FLAG",value=true}},nil}
c["Blocking Damage Poisons the Enemy as though dealing 100 Base Chaos Damage"]={nil,"Blocking Damage Poisons the Enemy as though dealing 100 Base Chaos Damage "}
c["Blocking Damage Poisons the Enemy as though dealing 100 Base Chaos Damage Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage"]={nil,"Blocking Damage Poisons the Enemy as though dealing 100 Base Chaos Damage Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage "}
c["Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage"]={nil,"Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage "}
-c["Body Armour grants +5% to Maximum Fire Resistance"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}
+c["Blue: Skills have 30% less cost"]={nil,"Blue: Skills have 30% less cost "}
+c["Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving"]={nil,"Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving "}
+c["Body Armour grants +100% of Armour also applies to Chaos Damage"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=100}}," also applies to Chaos Damage "}
+c["Body Armour grants +50% of Armour also applies to Elemental Damage"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=50}}," also applies to Elemental Damage "}
c["Body Armour grants +75% to Cold Resistance"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil}
c["Body Armour grants +75% to Fire Resistance"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=75}},nil}
c["Body Armour grants +75% to Lightning Resistance"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=75}},nil}
@@ -3545,10 +4223,9 @@ c["Body Armour grants 100% increased Stun Threshold"]={{[1]={[1]={itemSlot="Body
c["Body Armour grants 15% increased maximum Life"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}
c["Body Armour grants 20% increased Strength"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="Str",type="INC",value=20}},nil}
c["Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsFire",type="BASE",value=25}},nil}
-c["Body Armour grants Armour also applies to Chaos Damage taken from Hits"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="ArmourAppliesToChaosDamageTaken",type="BASE",value=100}},nil}
c["Body Armour grants Hits against you have 50% reduced Critical Damage Bonus"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=50}},nil}
c["Body Armour grants Unaffected by Ignite"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="SelfIgniteEffect",type="MORE",value=-100}},nil}
-c["Body Armour grants regenerate 5% of maximum Life per second"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}
+c["Body Armour grants regenerate 3% of maximum Life per second"]={{[1]={[1]={itemSlot="Body Armour",rarityCond="NORMAL",type="ItemCondition"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}
c["Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to 5% of Flask's Life Recovery amount"]={nil,"Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to 5% of Flask's Life Recovery amount "}
c["Bow Attacks fire 3 additional Arrows"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileCount",type="BASE",value=3}},nil}
c["Bow Attacks fire an additional Arrow"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}
@@ -3558,6 +4235,7 @@ c["Break 20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourBreakP
c["Break 25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourBreakPerHit",type="INC",value=25}},nil}
c["Break 40% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourBreakPerHit",type="INC",value=40}},nil}
c["Break 50% of Armour on Heavy Stunning an Enemy"]={{[1]={[1]={effectName="ArmourBreak",effectType="Buff",type="GlobalEffect"},flags=0,keywordFlags=0,name="Condition:CanArmourBreak",type="FLAG",value=true}},nil}
+c["Break 50% of Armour on Pinning an Enemy"]={nil,"Break 50% of Armour on Pinning an Enemy "}
c["Break 60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourBreakPerHit",type="INC",value=60}},nil}
c["Break Armour equal to 10% of Hit Damage dealt"]={{[1]={[1]={effectName="ArmourBreak",effectType="Buff",type="GlobalEffect"},flags=0,keywordFlags=0,name="Condition:CanArmourBreak",type="FLAG",value=true}},nil}
c["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt"]={{[1]={[1]={effectName="ArmourBreak",effectType="Buff",type="GlobalEffect"},[2]={neg=true,type="Condition",var="NeverCrit"},flags=0,keywordFlags=0,name="Condition:CanArmourBreak",type="FLAG",value=true}},nil}
@@ -3567,19 +4245,18 @@ c["Break enemy Concentration on Hit equal to 100% of Damage Dealt Enemies regain
c["Breaks Armour equal to 40% of damage from Hits with this weapon"]={nil,"Breaks Armour equal to 40% of damage from Hits with this weapon "}
c["Breaks Armour equal to 40% of damage from Hits with this weapon Fully Armour Broken enemies you kill with Hits Shatter"]={nil,"Breaks Armour equal to 40% of damage from Hits with this weapon Fully Armour Broken enemies you kill with Hits Shatter "}
c["Buffs on you expire 10% slower"]={{[1]={[1]={skillType=5,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}
-c["Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=5,chance=1,keyOfScaledMod="chance",type="Tenth"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
-c["Can Block Damage from all Hits while Shield is not Raised"]={nil,"Can Block Damage from all Hits while Shield is not Raised "}
-c["Can Block damage from all Hits"]={nil,"Can Block damage from all Hits "}
-c["Can Block damage from all Hits Cannot use Shield Skills"]={nil,"Can Block damage from all Hits Cannot use Shield Skills "}
-c["Can Evade all Hits"]={nil,"Can Evade all Hits "}
-c["Can Evade all Hits 75% less Evasion Rating"]={nil,"Can Evade all Hits 75% less Evasion Rating "}
-c["Can Evade all Hits if you have not been Hit Recently"]={nil,"Can Evade all Hits if you have not been Hit Recently "}
+c["Burning Enemies you kill have a 5% chance to Explode, dealing a"]={nil,"Burning Enemies you kill have a 5% chance to Explode, dealing a "}
+c["Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=0.05,keyOfScaledMod="chance",type="Fire"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
+c["Can Attack as though using a Quarterstaff while both of your hand slots are empty"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty "}
+c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain:"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: "}
+c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level "}
+c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 25 Item Evasion Rating on Equipped Armour Items"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 25 Item Evasion Rating on Equipped Armour Items "}
+c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 25 Item Evasion Rating on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={{[1]={[1]={type="Condition",var="HollowPalm"},[2]={div=25,stat="EvasionOnAllArmourItems",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=1},[2]={[1]={type="Condition",var="HollowPalm"},[2]={div="10",stat="EnergyShieldOnAllArmourItems",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil}
c["Can Socket a non-Unique Basic Jewel into the Phylactery"]={{},nil}
c["Can be modified while Corrupted"]={nil,"Can be modified while Corrupted "}
c["Can be modified while Corrupted +150 to maximum Life"]={nil,"Can be modified while Corrupted +150 to maximum Life "}
c["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"]={nil,"Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges "}
c["Can only use a Normal Body Armour"]={nil,"Can only use a Normal Body Armour "}
-c["Can place multiple Banners"]={nil,"Can place multiple Banners "}
c["Can't use Body Armour"]={nil,"Can't use Body Armour "}
c["Can't use Body Armour You can wield Two-Handed Axes, Maces and Swords in one hand"]={nil,"Can't use Body Armour You can wield Two-Handed Axes, Maces and Swords in one hand "}
c["Can't use Helmets"]={nil,"Can't use Helmets "}
@@ -3587,16 +4264,19 @@ c["Can't use Helmets Your Critical Hit Chance is Lucky"]={nil,"Can't use Helmets
c["Can't use Helmets Your Critical Hit Chance is Lucky Your Damage with Critical Hits is Lucky"]={nil,"Can't use Helmets Your Critical Hit Chance is Lucky Your Damage with Critical Hits is Lucky "}
c["Can't use Helmets Your Critical Hit Chance is Lucky Your Damage with Critical Hits is Lucky Enemies' Damage with Critical Hits against you is Lucky"]={nil,"Can't use Helmets Your Critical Hit Chance is Lucky Your Damage with Critical Hits is Lucky Enemies' Damage with Critical Hits is Lucky "}
c["Can't use other Rings"]={{[1]={[1]={slotName="Ring 2",type="DisablesItem"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseRightRing",type="Flag",value=1},[2]={[1]={slotName="Ring 1",type="DisablesItem"},[2]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseLeftRing",type="Flag",value=1}},nil}
-c["Cannot Dodge Roll"]={nil,"Cannot Dodge Roll "}
+c["Cannot Block"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}
+c["Cannot Dodge Roll or Sprint"]={nil,"Cannot Dodge Roll or Sprint "}
c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}
c["Cannot Immobilise enemies"]={nil,"Cannot Immobilise enemies "}
c["Cannot Recharge or Regenerate Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="NoEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="NoEnergyShieldRegen",type="FLAG",value=true}},nil}
c["Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="NoManaRegen",type="FLAG",value=true}},nil}
+c["Cannot be Blinded"]={{[1]={flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="BlindImmune",type="FLAG",value=true}},nil}
c["Cannot be Blinded while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true}},nil}
c["Cannot be Critically Hit while Parrying"]={nil,"Cannot be Critically Hit while Parrying "}
c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil}
c["Cannot be Light Stunned"]={nil,"Cannot be Light Stunned "}
-c["Cannot be Light Stunned Cannot Dodge Roll"]={nil,"Cannot be Light Stunned Cannot Dodge Roll "}
+c["Cannot be Light Stunned Cannot Dodge Roll or Sprint"]={nil,"Cannot be Light Stunned Cannot Dodge Roll or Sprint "}
+c["Cannot be Light Stunned if you haven't been Hit Recently"]={nil,"Cannot be Light Stunned if you haven't been Hit Recently "}
c["Cannot be Poisoned"]={{[1]={flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil}
c["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil}
c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},nil}
@@ -3613,20 +4293,21 @@ c["Causes 200% increased Stun Buildup All Damage from Hits with this Weapon Cont
c["Causes 50% increased Stun Buildup"]={nil,"Causes 50% increased Stun Buildup "}
c["Causes 50% increased Stun Buildup 172% increased Physical Damage"]={nil,"Causes 50% increased Stun Buildup 172% increased Physical Damage "}
c["Causes 50% increased Stun Buildup 80% increased Physical Damage"]={nil,"Causes 50% increased Stun Buildup 80% increased Physical Damage "}
-c["Causes 50% increased Stun Buildup Adds 62 to 94 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=62},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}},"Causes 50% increased Stun Buildup "}
+c["Causes 50% increased Stun Buildup Adds 85 to 131 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=131}},"Causes 50% increased Stun Buildup "}
c["Causes 50% increased Stun Buildup Always deals Critical Hits against Heavy Stunned Enemies"]={nil,"Causes 50% increased Stun Buildup Always deals Critical Hits against Heavy Stunned Enemies "}
+c["Causes 60% increased Stun Buildup"]={nil,"Causes 60% increased Stun Buildup "}
+c["Causes 60% increased Stun Buildup Heavy Stuns Enemies that are on Full Life"]={nil,"Causes 60% increased Stun Buildup Heavy Stuns Enemies that are on Full Life "}
c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}
-c["Causes Daze buildup equal to 100% of Damage dealt"]={nil,"Causes Daze buildup equal to 100% of Damage dealt "}
-c["Causes Daze buildup equal to 100% of Damage dealt 172% increased Physical Damage"]={nil,"Causes Daze buildup equal to 100% of Damage dealt 172% increased Physical Damage "}
-c["Causes Daze buildup equal to 100% of Damage dealt Adds 44 to 66 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=44},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=66}},"Causes Daze buildup equal to 100% of dealt "}
c["Causes Double Stun Buildup"]={{}," Stun Buildup "}
-c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage"]={nil,"Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage "}
-c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage 120% increased Physical Damage"]={nil,"Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage 120% increased Physical Damage "}
-c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage 172% increased Physical Damage"]={nil,"Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage 172% increased Physical Damage "}
-c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage Adds 62 to 94 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=62},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}},"Causes Enemies to Explode on Critical kill, for 10% of their as Physical Damage "}
+c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
c["Chance is doubled against Undead and Demons"]={{},"Chance against Undead and Demons "}
+c["Chance to Block Damage is Lucky"]={nil,"Chance to Block Damage is Lucky "}
+c["Chance to Block Damage is Lucky You take 20% of damage from Blocked Hits"]={nil,"Chance to Block Damage is Lucky You take 20% of damage from Blocked Hits "}
+c["Chance to Deflect is Lucky"]={nil,"Chance to Deflect is Lucky "}
+c["Chance to Evade is Unlucky"]={nil,"Chance to Evade is Unlucky "}
+c["Chance to Evade is Unlucky Chance to Deflect is Lucky"]={nil,"Chance to Evade is Unlucky Chance to Deflect is Lucky "}
c["Chance to Hit with Attacks can exceed 100%"]={{[1]={[1]={skillType=1,type="Skilltype"},flags=0,keywordFlags=0,name="Condition:HitChanceCanExceed100",type="FLAG",value=true}},nil}
-c["Chance to Ignite is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="EnemyIgniteChanceDoubledLimit",type="Multiplier",var="EnemyIgniteChanceDoubled"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:EnemyIgniteChanceDoubled",type="OVERRIDE",value=1}},nil}
+c["Chaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes"]={{[1]={[1]={skillType=2,type="SkillType"},[2]={skillType=28,type="SkillType"},flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}},nil}
c["Chaos Damage from Hits also Contributes to Electrocute Buildup"]={nil,"Chaos Damage from Hits also Contributes to Electrocute Buildup "}
c["Chaos Damage from Hits also Contributes to Electrocute Buildup Attacks Gain 20% of Physical Damage as extra Chaos Damage"]={nil,"Chaos Damage from Hits also Contributes to Electrocute Buildup Attacks Gain 20% of Physical Damage as extra Chaos Damage "}
c["Chaos Damage from Hits also Contributes to Freeze Buildup"]={nil,"Chaos Damage from Hits also Contributes to Freeze Buildup "}
@@ -3639,42 +4320,46 @@ c["Charms applied to you have 25% increased Effect"]={{[1]={[1]={actor="player",
c["Charms gain 0.15 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGenerated",type="BASE",value=0.15}},nil}
c["Charms gain 0.5 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGenerated",type="BASE",value=0.5}},nil}
c["Charms use no Charges"]={{[1]={flags=0,keywordFlags=0,name="CharmsUseNoCharges",type="FLAG",value=true}},nil}
-c["Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup"]={nil,"Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup "}
-c["Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance"]={nil,"Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance "}
-c["Cold Exposure you inflict lowers Total Cold Resistance by an extra 5%"]={{[1]={flags=0,keywordFlags=0,name="ExtraColdExposure",type="BASE",value=-5}},nil}
+c["Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup"]={nil,"Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup "}
+c["Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance"]={nil,"Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance "}
c["Cold Resistance is unaffected by Area Penalties"]={nil,"Cold Resistance is unaffected by Area Penalties "}
c["Cold Resistance is unaffected by Area Penalties Fire Resistance is unaffected by Area Penalties"]={nil,"Cold Resistance is unaffected by Area Penalties Fire Resistance is unaffected by Area Penalties "}
c["Companions deal 12% increased Damage"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}
-c["Companions gain your Dexterity"]={{[1]={flags=0,keywordFlags=0,name="DexterityAddedToCompanions",type="FLAG",value=true}},nil}
+c["Companions deal 60% increased damage against Immobilised enemies"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}}},nil}
c["Companions gain your Strength"]={{[1]={flags=0,keywordFlags=0,name="StrengthAddedToCompanions",type="FLAG",value=true}},nil}
c["Companions have +1 to each Defence for every 2 of that Defence you have"]={{}," each Defence for every 2 of that Defence you have "}
c["Companions have +12% to all Elemental Resistances"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}}}},nil}
c["Companions have +30% to Chaos Resistance"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}}}},nil}
c["Companions have +30% to all Elemental Resistances"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}}}},nil}
-c["Companions have 10% increased Accuracy Rating"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}}}},nil}
c["Companions have 10% increased Area of Effect"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}
c["Companions have 12% increased maximum Life"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}
c["Companions have 20% increased maximum Life"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}
-c["Companions have 20% reduced Reservation"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-20}},nil}
c["Companions have 4% increased Attack Speed"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}
-c["Companions have 5% reduced Reservation"]={{[1]={[1]={skillType=198,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-5}},nil}
+c["Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%"]={nil,"Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60% "}
c["Converts all Energy Shield to Mana"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldConvertToMana",type="BASE",value=100}},nil}
c["Converts all Evasion Rating to Armour"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EvasionConvertToArmour",type="BASE",value=100}},nil}
+c["Coral Circlet"]={nil,"Coral Circlet "}
+c["Coral Circlet League: Dawn of the Hunt"]={nil,"Coral Circlet League: Dawn of the Hunt "}
c["Corrupted Blood cannot be inflicted on you"]={{[1]={flags=0,keywordFlags=0,name="CorruptedBloodImmune",type="FLAG",value=true}},nil}
c["Creates Consecrated Ground on use"]={{},nil}
+c["Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life"]={nil,"Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life "}
c["Critical Hits Ignore Enemy Monster Lightning Resistance"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreLightningResistance",type="FLAG",value=true}},nil}
c["Critical Hits Poison the enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="OVERRIDE",value=100}},nil}
c["Critical Hits cannot Extract Impale"]={nil,"Critical Hits cannot Extract Impale "}
c["Critical Hits cannot Extract Impale 31 to 49 Physical Thorns damage"]={nil,"Critical Hits cannot Extract Impale 31 to 49 Physical Thorns damage "}
c["Critical Hits do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}
c["Critical Hits ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil}
-c["Critical Hits ignore Monster Armour"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreEnemyArmour",type="FLAG",value=true}},nil}
c["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreNonNegativeEleRes",type="FLAG",value=true}},nil}
c["Critical Hits inflict Impale"]={nil,"Critical Hits inflict Impale "}
c["Critical Hits inflict Impale Critical Hits cannot Extract Impale"]={nil,"Critical Hits inflict Impale Critical Hits cannot Extract Impale "}
c["Critical Hits with Daggers have a 25% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=524288,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}
+c["Critical Hits with Spells apply 3 Stack of Critical Weakness"]={nil,"Critical Hits with Spells apply 3 Stack of Critical Weakness "}
c["Critical Hits with Spells apply 5 Stacks of Critical Weakness"]={nil,"Critical Hits with Spells apply 5 Stacks of Critical Weakness "}
+c["Critical Hits with Spells apply 5 Stacks of Critical Weakness Critical Hits with Spells apply 3 Stack of Critical Weakness"]={nil,"Critical Hits with Spells apply 5 Stacks of Critical Weakness Critical Hits with Spells apply 3 Stack of Critical Weakness "}
+c["Crushes Enemies on Hit"]={nil,"Crushes Enemies on Hit "}
+c["Crushes Enemies on Hit +150 Strength Requirement"]={nil,"Crushes Enemies on Hit +150 Strength Requirement "}
c["Culling Strike"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil}
+c["Culling Strike against Beasts while your Companion is in your Presence"]={nil,"Culling Strike against Beasts while your Companion is in your Presence "}
c["Culling Strike against Enemies you Mark"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil}
c["Culling Strike against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil}
c["Current Energy Shield also grants Elemental Damage reduction"]={nil,"Current Energy Shield also grants Elemental Damage reduction "}
@@ -3682,9 +4367,14 @@ c["Curse Enemies with Enfeeble on Block"]={{[1]={flags=0,keywordFlags=0,name="Ex
c["Curse Skills have 15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=15}},nil}
c["Curse Skills have 20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=20}},nil}
c["Curse Skills have 20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=20}},nil}
+c["Curse zones erupt after 10% reduced delay"]={nil,"Curse zones erupt after 10% reduced delay "}
c["Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,chance=0.33,keyOfScaledMod="chance",type="Chaos"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
+c["Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,chance=0.33,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
c["Curses have no Activation Delay"]={{[1]={flags=0,keywordFlags=0,name="CurseDelay",type="MORE",value=-100}},nil}
c["Curses you inflict are reflected back to you"]={nil,"Curses you inflict are reflected back to you "}
+c["Curses you inflict have infinite Duration"]={nil,"Curses you inflict have infinite Duration "}
+c["Curses you inflict have infinite Duration Curses you inflict can affect Hexproof Enemies"]={{[1]={[1]={type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil}
+c["Curses you inflict have infinite Duration You can apply an additional Curse"]={nil,"Curses you inflict have infinite Duration You can apply an additional Curse "}
c["DNT Ded."]={nil,"DNT Ded. "}
c["Damage Blocked is Recouped as Mana"]={nil,"Damage Blocked is Recouped as Mana "}
c["Damage Penetrates (2-4)% Cold Resistance"]={nil,"Damage Penetrates (2-4)% Cold Resistance "}
@@ -3707,6 +4397,7 @@ c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="Fi
c["Damage Penetrates 6% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=6}},nil}
c["Damage Penetrates 75% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=75}},nil}
c["Damage Penetrates 8% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil}
+c["Damage Penetrates 8% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil}
c["Damage Penetrates 8% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}
c["Damage of Enemies Hitting you is Unlucky while you are on Low Life"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Low Life "}
c["Damage of Enemies Hitting you is Unlucky while you are on Low Life 50% chance to Avoid Death from Hits"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Low Life 50% chance to Avoid Death from Hits "}
@@ -3715,16 +4406,20 @@ c["Damage over Time bypasses your Energy Shield While not on Full Life, Sacrific
c["Damage over Time bypasses your Energy Shield While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life"]={nil,"Damage over Time bypasses your Energy Shield While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life "}
c["Damage taken Recouped as Life is also Recouped as Energy Shield"]={nil,"Damage taken Recouped as Life is also Recouped as Energy Shield "}
c["Damage taken is Reserved from Darkness before being taken from Life or Energy Shield"]={nil,"Damage taken is Reserved from Darkness before being taken from Life or Energy Shield "}
-c["Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 10 seconds"]={nil,"Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 10 seconds "}
-c["Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 10 seconds +8 to Maximum Darkness per Level"]={nil,"Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 10 seconds +8 to Maximum Darkness per Level "}
+c["Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 5 seconds"]={nil,"Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 5 seconds "}
+c["Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 5 seconds +8 to Maximum Darkness per Level"]={nil,"Damage taken is Reserved from Darkness before being taken from Life or Energy Shield Darkness Reservation lasts for 5 seconds +8 to Maximum Darkness per Level "}
c["Damage with Hits is Lucky against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}},nil}
c["Damage with Hits is Lucky against Heavy Stunned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}},nil}
c["Damaging Ailments Cannot Be inflicted on you while you already have one"]={nil,"Damaging Ailments Cannot Be inflicted on you while you already have one "}
c["Damaging Ailments Cannot Be inflicted on you while you already have one 20% increased Magnitude of Damaging Ailments you inflict"]={nil,"Damaging Ailments Cannot Be inflicted on you while you already have one 20% increased Magnitude of Damaging Ailments you inflict "}
c["Damaging Ailments deal damage 12% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=12},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=12},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=12}},nil}
+c["Damaging Ailments deal damage 4% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=4},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=4}},nil}
c["Damaging Ailments deal damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=5}},nil}
-c["Darkness Reservation lasts for 10 seconds"]={nil,"Darkness Reservation lasts for 10 seconds "}
-c["Darkness Reservation lasts for 10 seconds +8 to Maximum Darkness per Level"]={nil,"Darkness Reservation lasts for 10 seconds +8 to Maximum Darkness per Level "}
+c["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"]={nil,"Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition "}
+c["Darkness Reservation lasts for 5 seconds"]={nil,"Darkness Reservation lasts for 5 seconds "}
+c["Darkness Reservation lasts for 5 seconds +8 to Maximum Darkness per Level"]={nil,"Darkness Reservation lasts for 5 seconds +8 to Maximum Darkness per Level "}
+c["Dazes on Hit"]={nil,"Dazes on Hit "}
+c["Dazes on Hit 50% increased Melee Damage against Heavy Stunned enemies"]={nil,"Dazes on Hit 50% increased Melee Damage against Heavy Stunned enemies "}
c["Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," Overkill to enemies within 2 metres of the enemy killed "}
c["Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%"]={{[1]={[1]={actor="enemy",limit=200,limitTotal=true,type="Multiplier",var="EnemyPresenceSeconds"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=4}},nil}
c["Deal no Non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}
@@ -3732,10 +4427,17 @@ c["Deal up to 40% more Damage to Enemies based on their missing Concentration"]=
c["Deal your Thorns Damage to Enemies you Stun with Melee Attacks"]={nil,"your Thorns Damage to Enemies you Stun with Melee Attacks "}
c["Deal your Thorns Damage to Enemies you Stun with Melee Attacks 35 to 53 Physical Thorns damage"]={nil,"your Thorns Damage to Enemies you Stun with Melee Attacks 35 to 53 Physical Thorns damage "}
c["Deals 25% of current Mana as Chaos Damage to you when Effect ends"]={nil,"Deals 25% of current Mana as Chaos Damage to you when Effect ends "}
+c["Debuffs inflicted by Hazards have 30% increased Slow Magnitude"]={nil,"Debuffs inflicted by Hazards have 30% increased Slow Magnitude "}
+c["Debuffs inflicted by Hazards have 30% increased Slow Magnitude 30% increased Hazard Immobilisation buildup"]={nil,"Debuffs inflicted by Hazards have 30% increased Slow Magnitude 30% increased Hazard Immobilisation buildup "}
c["Debuffs on you expire 10% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=10}},nil}
c["Debuffs on you expire 20% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=20}},nil}
+c["Debuffs on you expire 25% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=25}},nil}
+c["Debuffs on you expire 3% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=3}},nil}
+c["Debuffs on you expire 8% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=8}},nil}
c["Debuffs you inflict have 10% increased Slow Magnitude"]={nil,"Debuffs you inflict have 10% increased Slow Magnitude "}
c["Debuffs you inflict have 10% increased Slow Magnitude Debuffs on you expire 20% faster"]={nil,"Debuffs you inflict have 10% increased Slow Magnitude Debuffs on you expire 20% faster "}
+c["Debuffs you inflict have 20% increased Slow Magnitude"]={nil,"Debuffs you inflict have 20% increased Slow Magnitude "}
+c["Debuffs you inflict have 20% increased Slow Magnitude 6% increased Spirit"]={nil,"Debuffs you inflict have 20% increased Slow Magnitude 6% increased Spirit "}
c["Debuffs you inflict have 30% increased Slow Magnitude"]={nil,"Debuffs you inflict have 30% increased Slow Magnitude "}
c["Debuffs you inflict have 30% increased Slow Magnitude Cannot Immobilise enemies"]={nil,"Debuffs you inflict have 30% increased Slow Magnitude Cannot Immobilise enemies "}
c["Debuffs you inflict have 4% increased Slow Magnitude"]={nil,"Debuffs you inflict have 4% increased Slow Magnitude "}
@@ -3744,15 +4446,25 @@ c["Debuffs you inflict have 5% increased Slow Magnitude"]={nil,"Debuffs you infl
c["Debuffs you inflict have 6% increased Slow Magnitude"]={nil,"Debuffs you inflict have 6% increased Slow Magnitude "}
c["Decimating Strike"]={nil,"Decimating Strike "}
c["Defend against Hits as though you had 1% more Armour per 1% current Energy Shield"]={nil,"Defend against Hits as though you had 1% more Armour per 1% current Energy Shield "}
+c["Defend against Hits as though you had 1% more Armour per 1% current Energy Shield 50% reduced Duration of Bleeding on You"]={nil,"Defend against Hits as though you had 1% more Armour per 1% current Energy Shield 50% reduced Duration of Bleeding on You "}
c["Defend with 120% of Armour against Projectile Attacks"]={nil,"Defend with 120% of Armour against Projectile Attacks "}
c["Defend with 120% of Armour while not on Low Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="LowEnergyShield"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour and Energy Shield Mastery",type="MAX",value=20}},nil}
-c["Defend with 150% of Armour against Attacks from further than 6m"]={nil,"Defend with 150% of Armour against Attacks from further than 6m "}
+c["Defend with 150% of Armour against Hits from Enemies that are further than 6m away"]={nil,"Defend with 150% of Armour against Hits from Enemies that are further than 6m away "}
c["Defend with 200% of Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourDefense",type="MAX",value=100}},nil}
c["Defend with 200% of Armour against Critical Hits"]={nil,"Defend with 200% of Armour against Critical Hits "}
c["Defend with 200% of Armour against Critical Hits +15 to Strength"]={nil,"Defend with 200% of Armour against Critical Hits +15 to Strength "}
c["Defend with 200% of Armour during effect"]={nil,"Defend with 200% of Armour during effect "}
+c["Deflected Hits cannot inflict Bleeding on you"]={nil,"Deflected Hits cannot inflict Bleeding on you "}
+c["Deflected Hits cannot inflict Maim on you"]={nil,"Deflected Hits cannot inflict Maim on you "}
+c["Deflected Hits cannot inflict Maim on you Deflected Hits cannot inflict Bleeding on you"]={nil,"Deflected Hits cannot inflict Maim on you Deflected Hits cannot inflict Bleeding on you "}
c["Demonflame has no maximum"]={nil,"Demonflame has no maximum "}
+c["Detonator skills have 40% increased Area of Effect"]={nil,"Detonator skills have 40% increased Area of Effect "}
+c["Detonator skills have 40% increased Area of Effect Detonator skills have 80% reduced damage"]={nil,"Detonator skills have 40% increased Area of Effect Detonator skills have 80% reduced damage "}
+c["Detonator skills have 8% increased Area of Effect"]={nil,"Detonator skills have 8% increased Area of Effect "}
+c["Detonator skills have 80% reduced damage"]={nil,"Detonator skills have 80% reduced damage "}
c["Dexterity's inherent bonus is 1% increased Armour per 2 Dexterity instead"]={{[1]={[1]={div="2",stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoDexBonusToAccuracy",type="FLAG",value=true}},nil}
+c["Diviner Cuffs"]={nil,"Diviner Cuffs "}
+c["Diviner Cuffs League: Dawn of the Hunt"]={nil,"Diviner Cuffs League: Dawn of the Hunt "}
c["Dodge Roll avoids all Hits"]={nil,"Dodge Roll avoids all Hits "}
c["Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds"]={nil,"Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds "}
c["Dodge Roll cannot Avoid Damage"]={nil,"Dodge Roll cannot Avoid Damage "}
@@ -3765,19 +4477,25 @@ c["Doubles Mana Costs"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="MORE
c["Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life"]={nil,"Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life "}
c["Drop Shocked Ground while moving, lasting 8 seconds"]={nil,"Drop Shocked Ground while moving, lasting 8 seconds "}
c["Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow"]={nil,"Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow "}
-c["Effect and Duration of Flames of Chayula on You is Doubled"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:FlameEffect",type="BASE",value=1}},nil}
+c["Each Totem applies 2% increased Damage taken to Enemies in their Presence"]={nil,"Each Totem applies 2% increased Damage taken to Enemies in their Presence "}
+c["Effect is not removed when Unreserved Life is Filled"]={nil,"Effect is not removed when Unreserved Life is Filled "}
+c["Effect is not removed when Unreserved Life is Filled 30% of Damage taken during effect Recouped as Life"]={nil,"Effect is not removed when Unreserved Life is Filled 30% of Damage taken during effect Recouped as Life "}
c["Effect is not removed when Unreserved Mana is Filled"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskEffectNotRemoved",type="FLAG",value=true}},nil}
c["Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eldritch Battery"}},nil}
c["Elemental Ailment Threshold is increased by Overcapped Chaos Resistance"]={nil,"Elemental Ailment Threshold is increased by Overcapped Chaos Resistance "}
c["Elemental Ailment Threshold is increased by Overcapped Chaos Resistance Armour is increased by Overcapped Fire Resistance"]={nil,"Elemental Ailment Threshold is increased by Overcapped Chaos Resistance Armour is increased by Overcapped Fire Resistance "}
c["Elemental Damage also Contributes to Bleeding Magnitude"]={{[1]={flags=0,keywordFlags=0,name="FireCanBleed",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCanBleed",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="LightningCanBleed",type="FLAG",value=true}},nil}
-c["Elemental Storm has 150% more Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Elemental Storm",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="MORE",value=150}},nil}
+c["Empowered Attacks Gain 15% of Physical Damage as Extra Fire damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil}
c["Empowered Attacks deal 10% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
c["Empowered Attacks deal 16% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}
+c["Empowered Attacks deal 20% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["Empowered Attacks deal 30% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
c["Empowered Attacks deal 50% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}
+c["Empowered Attacks deal 8% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}
c["Empowered Attacks have 50% increased Stun Buildup"]={{}," Stun Buildup "}
c["Empowered Attacks have 50% increased Stun Buildup 100% increased Stun Threshold during Empowered Attacks"]={{[1]={[1]={type="Condition",var="Empowered"},[2]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="StunThreshold",type="INC",value=50}}," Stun Buildup 100% increased "}
+c["Enemies Blinded by you have 15% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-15}}}},nil}
+c["Enemies Blinded by you have 50% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-50}}}},nil}
c["Enemies Chilled by your Hits can be Shattered as though Frozen"]={nil,"your Hits can be Shattered as though Frozen "}
c["Enemies Chilled by your Hits increase damage taken by Chill Magnitude"]={nil,"your Hits increase damage taken by Chill Magnitude "}
c["Enemies Chilled by your Hits increase damage taken by Chill Magnitude Attacks Gain 10% of Damage as Extra Cold Damage"]={nil,"your Hits increase damage taken by Chill Magnitude Attacks Gain 10% of Damage as Extra Cold Damage "}
@@ -3786,11 +4504,14 @@ c["Enemies Frozen by you take 50% increased Damage"]={{[1]={flags=0,keywordFlags
c["Enemies Hitting you have 10% chance to gain an Endurance, "]={nil,"Enemies Hitting you have 10% chance to gain an Endurance, "}
c["Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge"]={nil,"Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge "}
c["Enemies Ignited by you have -5% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-5}}}},nil}
+c["Enemies Ignited by you permanently take 1% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%"]={nil,"you permanently take 1% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10% "}
c["Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite"]={{[1]={flags=0,keywordFlags=0,name="IgniteToChaos",type="FLAG",value=true}},nil}
c["Enemies Immobilised by you take 25% less Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Immobilised"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-25}}}},nil}
c["Enemies affected by your Hazards Recently have 25% reduced Armour"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="ActorCondition",var="AffectedByHazardRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=-25}}}},nil}
c["Enemies affected by your Hazards Recently have 25% reduced Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="ActorCondition",var="AffectedByHazardRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=-25}}}},nil}
c["Enemies are Culled on Block"]={nil,"Enemies are Culled on Block "}
+c["Enemies are Intimidated for 4 seconds when you Immobilise them"]={nil,"Enemies are Intimidated for 4 seconds when you Immobilise them "}
+c["Enemies are Maimed for 4 seconds after becoming Unpinned"]={nil,"Enemies are Maimed for 4 seconds after becoming Unpinned "}
c["Enemies have Maximum Concentration equal to 40% of their Maximum Life"]={nil,"Enemies have Maximum Concentration equal to 40% of their Maximum Life "}
c["Enemies have Maximum Concentration equal to 40% of their Maximum Life Break enemy Concentration on Hit equal to 100% of Damage Dealt"]={nil,"Enemies have Maximum Concentration equal to 40% of their Maximum Life Break enemy Concentration on Hit equal to 100% of Damage Dealt "}
c["Enemies have Maximum Concentration equal to 40% of their Maximum Life Break enemy Concentration on Hit equal to 100% of Damage Dealt Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"]={nil,"Enemies have Maximum Concentration equal to 40% of their Maximum Life Break enemy Concentration on Hit equal to 100% of Damage Dealt Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds "}
@@ -3802,11 +4523,13 @@ c["Enemies in your Presence Resist Elemental Damage based on their Lowest Resist
c["Enemies in your Presence are Blinded"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}}}},nil}
c["Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage"]={nil,"Ignited as though dealt 100 Base Fire Damage "}
c["Enemies in your Presence are Intimidated"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="Condition:Intimidated",type="FLAG",value=true}}}},nil}
-c["Enemies in your Presence are Slowed by 20%"]={nil,"Slowed by 20% "}
+c["Enemies in your Presence are Slowed by 20%"]={{[1]={[1]={type="Condition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ActionSpeed",type="INC",value=-20}}}},nil}
c["Enemies in your Presence count as being on Low Life"]={{[1]={[1]={type="Condition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:LowLife",type="FLAG",value=true}}}},nil}
c["Enemies in your Presence count as having double Power"]={{},"count as having Power "}
+c["Enemies in your Presence have +1% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=1}}}},nil}
+c["Enemies in your Presence have -10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}}}},nil}
c["Enemies in your Presence have 10% reduced Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-10}}}},nil}
-c["Enemies in your Presence have Fire Exposure"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="FireExposure",type="BASE",value=-20}}}},nil}
+c["Enemies in your Presence have 75% reduced Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-75}}}},nil}
c["Enemies in your Presence have Lightning Resistance equal to yours"]={{[1]={[1]={type="Condition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="EnemyLightningResistEqualToYours",type="FLAG",value=true}},nil}
c["Enemies in your Presence have at least 10% of Life Reserved"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="LifeReservationPercent",type="BASE",value=10}}}},nil}
c["Enemies in your Presence have no Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="EnemyInPresence"},flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}}}},nil}
@@ -3821,11 +4544,20 @@ c["Enemies take 20% increased Damage for each Elemental Ailment type among your
c["Enemies you Curse are Hindered, with 15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:Hindered",type="FLAG",value=true}}}},nil}
c["Enemies you Curse cannot Recharge Energy Shield"]={{[1]={[1]={type="Condition",var="Curse"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="NoEnergyShieldRecharge",type="FLAG",value=true}}}},nil}
c["Enemies you Curse have -3% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Curse"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-3}}}},nil}
+c["Enemies you Curse have -5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Curse"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}}}},nil}
+c["Enemies you Curse have -7% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Curse"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-7}}}},nil}
+c["Enemies you Curse have at least 15% of Life Reserved"]={nil,"at least 15% of Life Reserved "}
c["Enemies you Electrocute have 20% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Electrocuted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=20}}}},nil}
+c["Enemies you Fully Armour Break are Maimed"]={nil,"Enemies you Fully Armour Break are Maimed "}
+c["Enemies you Fully Armour Break cannot Regenerate Life"]={nil,"Enemies you Fully Armour Break cannot Regenerate Life "}
+c["Enemies you Fully Armour Break cannot Regenerate Life Enemies you Fully Armour Break are Maimed"]={nil,"Enemies you Fully Armour Break cannot Regenerate Life Enemies you Fully Armour Break are Maimed "}
+c["Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,chance=0.1,keyOfScaledMod="chance",type="Chaos"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
c["Enemies you Mark cannot deal Critical Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}}}},nil}
c["Enemies you Mark have 10% reduced Accuracy Rating"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-10}}}},nil}
c["Enemies you Mark take 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}
c["Enemies you apply Incision to take 2% increased Physical Damage per Incision"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Multiplier",var="IncisionStack"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=2}}}},nil}
+c["Enemies you inflict Bleeding on cannot Regenerate Life"]={nil,"Enemies you inflict Bleeding on cannot Regenerate Life "}
+c["Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"]={nil,"Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage "}
c["Enemies' Damage with Critical Hits against you is Lucky"]={nil,"Enemies' Damage with Critical Hits is Lucky "}
c["Energy Generation is doubled"]={{},"Energy Generation "}
c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently "}
@@ -3843,9 +4575,9 @@ c["Equipment and Skill Gems have 4% reduced Attribute Requirements"]={{[1]={flag
c["Equipment and Skill Gems have 50% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-50}},nil}
c["Evasion Rating from Equipped Body Armour is halved"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Evasion",type="MORE",value=-50}},nil}
c["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled"]={{[1]={[1]={slotNameList={[1]="Helmet",[2]="Boots",[3]="Gloves"},type="SlotName"},flags=0,keywordFlags=0,name="Evasion",type="MORE",value=100}},nil}
+c["Evasion Rating is doubled if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},[2]={globalLimit=100,globalLimitKey="EvasionDoubledLimit",type="Multiplier",var="EvasionDoubled"},flags=0,keywordFlags=0,name="Evasion",type="MORE",value=100},[2]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Multiplier:EvasionDoubled",type="OVERRIDE",value=1}},nil}
c["Evasion Rating is increased by Overcapped Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="EvasionRatingIncreasedByOvercappedLightningRes",type="FLAG",value=true}},nil}
c["Everlasting Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="Condition:EverlastingSacrifice",type="FLAG",value=true}},nil}
-c["Every 10 seconds, gain 50% more Cast Speed for 5 seconds"]={{[1]={[1]={effectName="Quicksand Hourglass",effectType="Buff",type="GlobalEffect"},[2]={type="Condition",var="QuicksandHourglass"},flags=16,keywordFlags=0,name="Speed",type="MORE",value="50"},[2]={flags=0,keywordFlags=0,name="Condition:CanGainQuicksandHourglass",type="FLAG",value=true}},nil}
c["Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres"]={nil,"Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres "}
c["Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres Recover all Mana when Used"]={nil,"Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres Recover all Mana when Used "}
c["Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life"]={nil,"Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life "}
@@ -3859,50 +4591,69 @@ c["Every second, inflicts Critical Weakness on enemies in your Presence for 15 s
c["Excess Life Recovery added as Guard for 10 seconds"]={nil,"Excess Life Recovery added as Guard for 10 seconds "}
c["Excess Life Recovery from Leech is applied to Energy Shield"]={nil,"Excess Life Recovery from Leech is applied to Energy Shield "}
c["Excess Life Recovery from Regeneration is applied to Energy Shield"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}
-c["Exposure you inflict lowers the affected Resistance by an additional 12%"]={{[1]={flags=0,keywordFlags=0,name="ExtraExposure",type="BASE",value=-12}},nil}
-c["Final Repeat of Spells has 40% increased Area of Effect"]={{[1]={[1]={neg=true,type="Condition",var="CastOnFrostbolt"},[2]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=2,keywordFlags=0,name="RepeatFinalAreaOfEffect",type="INC",value=40}},nil}
-c["Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude"]={nil,"Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude "}
-c["Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup"]={nil,"Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup "}
-c["Fire Exposure you inflict lowers Total Fire Resistance by an extra 5%"]={{[1]={flags=0,keywordFlags=0,name="ExtraFireExposure",type="BASE",value=-5}},nil}
+c["Exposure you inflict lowers Resistances by an additional 5%"]={nil,"Exposure you inflict lowers Resistances by an additional 5% "}
+c["Final Repeat of Spells has 30% increased Area of Effect"]={{[1]={[1]={neg=true,type="Condition",var="CastOnFrostbolt"},[2]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=2,keywordFlags=0,name="RepeatFinalAreaOfEffect",type="INC",value=30}},nil}
+c["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes"]={nil,"Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes "}
+c["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup"]={nil,"Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup "}
c["Fire Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties "}
c["Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties "}
+c["Fire Spells Convert 100% of Fire Damage to Chaos Damage"]={{[1]={[1]={skillType=2,type="SkillType"},[2]={skillType=28,type="SkillType"},flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value="100"}},nil}
+c["Fissure Skills have a 20% chance to create an additional Fissure"]={nil,"Fissure Skills have a 20% chance to create an additional Fissure "}
+c["Flammability Magnitude is doubled"]={{},"Magnitude "}
c["Flasks gain 0.17 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.17}},nil}
-c["Forks Critical Hits"]={{[1]={flags=0,keywordFlags=0,name="ForkCrit",type="FLAG",value=true}},nil}
-c["Freeze as though dealing Cold damage equal to 10% of your maximum Mana when Hit"]={nil,"Freeze as though dealing Cold damage equal to 10% of your maximum Mana when Hit "}
+c["For each colour of Socketed Support Gem that is most numerous, gain:"]={nil,"For each colour of Socketed Support Gem that is most numerous, gain: "}
+c["For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits against you have no Critical Damage Bonus"]={nil,"For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits have no Critical Damage Bonus "}
+c["For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits against you have no Critical Damage Bonus Blue: Skills have 30% less cost"]={nil,"For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits have no Critical Damage Bonus Blue: Skills have 30% less cost "}
+c["For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits against you have no Critical Damage Bonus Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving"]={nil,"For each colour of Socketed Support Gem that is most numerous, gain: Red: Hits have no Critical Damage Bonus Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving "}
c["Frenzy or Power Charge"]={nil,"Frenzy or Power Charge "}
c["Fully Armour Broken enemies you kill with Hits Shatter"]={nil,"Fully Armour Broken enemies you kill with Hits Shatter "}
+c["Fully Broken Armour effects also apply to Fire Damage Taken from Hits"]={nil,"Fully Broken Armour effects also apply to Fire Damage Taken from Hits "}
c["Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveGamblesprint",type="FLAG",value=true}},nil}
c["Gain 1 Endurance Charge every second if you've been Hit Recently"]={{}," Endurance Charge every second "}
c["Gain 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "}
+c["Gain 1 Life Flask Charge per 4% Life spent"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 4% Life spent "}
+c["Gain 1 Life Flask Charge per 4% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed"]={{[1]={flags=4,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 4% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed "}
+c["Gain 1 Life Flask Charge per 4% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={{[1]={flags=4,keywordFlags=0,name="LifeAsPhysical",type="BASE",value=1}}," Flask Charge per 4% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage per Charge consumed this way "}
c["Gain 1 Rage on Melee Axe Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
c["Gain 1 Rage on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
+c["Gain 1 Volatility on inflicting an Elemental Ailment"]={{}," Volatility on inflicting an Elemental Ailment "}
+c["Gain 1 Volatility on inflicting an Elemental Ailment Take no Damage from Volatility"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=1}}," Volatility on inflicting an Elemental Ailment Take no from Volatility "}
c["Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=1}}," per 1% Chill Magnitude on enemy "}
-c["Gain 1% of Damage as Extra Chaos Damage per 20 Unreserved Darkness"]={{[1]={[1]={div=20,stat="UnreservedDarkness",type="PerStat"},flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=1}},nil}
c["Gain 1% of damage as Fire damage per 1% Chance to Block"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="DamageAsFire",type="BASE",value=1}},nil}
+c["Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={{[1]={flags=0,keywordFlags=0,name="DamageAsPhysical",type="BASE",value=1}}," per Charge consumed this way "}
c["Gain 10 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}
c["Gain 10 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}
c["Gain 10 Rage when Critically Hit by an Enemy"]={{}," Rage when Critically Hit by an Enemy "}
c["Gain 10% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=10}},nil}
+c["Gain 10% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=10}},nil}
c["Gain 10% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=10}},nil}
-c["Gain 10% of Elemental Damage Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=10}}," Damage "}
-c["Gain 10% of Elemental Damage Damage as Extra Lightning Damage 33% of Elemental Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=10}}," Damage 33% of Elemental Damage Converted to Cold Damage "}
c["Gain 10% of Elemental Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsCold",type="BASE",value=10}},nil}
c["Gain 10% of Elemental Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsFire",type="BASE",value=10}},nil}
-c["Gain 100% of Armour as extra Stun Threshold"]={{[1]={[1]={percent=100,stat="Armour",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
+c["Gain 10% of Elemental Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=10}},nil}
c["Gain 100% of Evasion Rating as extra Ailment Threshold"]={{[1]={[1]={percent=100,stat="Evasion",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain 11% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=11}},nil}
+c["Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=12}},nil}
c["Gain 12% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=12}},nil}
+c["Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=12}},nil}
c["Gain 13 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=13}},nil}
c["Gain 13 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=13}},nil}
+c["Gain 13% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=13}},nil}
c["Gain 13% of maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=13}},nil}
c["Gain 15 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil}
c["Gain 15 Mana per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="ManaOnHit",type="BASE",value=15}},nil}
c["Gain 15 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=15}},nil}
+c["Gain 15% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=15}},nil}
+c["Gain 15% of Damage as Extra Cold Damage while on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=15}}," while "}
+c["Gain 15% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=15}},nil}
+c["Gain 15% of Damage as Extra Fire Damage while on Ignited Ground"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=15}}," while on Ignited Ground "}
+c["Gain 15% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=15}},nil}
+c["Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=15}}," while "}
+c["Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground 40% reduced effect of Shock on you"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=15}}," while 40% reduced effect of Shock on you "}
+c["Gain 15% of maximum Energy Shield as additional Freeze Threshold"]={{[1]={[1]={percent=15,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="FreezeThreshold",type="BASE",value=1}},nil}
c["Gain 15% of maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=15}},nil}
c["Gain 18 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=18}},nil}
c["Gain 2 Rage on Melee Axe Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
c["Gain 2 Rage when Hit by an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
-c["Gain 2% of Physical Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=2}},nil}
c["Gain 20 Energy Shield when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnBlock",type="BASE",value=20}},nil}
c["Gain 20 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}
c["Gain 25 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=25}},nil}
@@ -3912,6 +4663,8 @@ c["Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"]={{[1]={
c["Gain 25% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=25}},nil}
c["Gain 25% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=25}},nil}
c["Gain 25% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=25}},nil}
+c["Gain 25% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}},nil}
+c["Gain 25% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}},nil}
c["Gain 26% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=26}},nil}
c["Gain 26% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=26}},nil}
c["Gain 26% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=26}},nil}
@@ -3924,21 +4677,29 @@ c["Gain 3 random Charge on reaching Maximum Rage"]={{[1]={flags=0,keywordFlags=0
c["Gain 3 random Charge on reaching Maximum Rage Lose all Rage on reaching Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=3}}," random Charge on reaching Lose all Rage on reaching Maximum Rage "}
c["Gain 3% of Damage as Chaos Damage per Undead Minion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageAsChaos",type="BASE",value=3}}}}," per Undead "}
c["Gain 3% of Damage as Chaos Damage per Undead Minion Gain 5% of Damage as Chaos Damage per Undead Minion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageAsChaos",type="BASE",value=3}}}}," per Undead Gain 5% of Damage as Chaos Damage per Undead Minion "}
+c["Gain 3% of Physical Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=3}},nil}
c["Gain 30 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}},nil}
c["Gain 30 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=30}},nil}
c["Gain 30% of maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=30}},nil}
c["Gain 30% of maximum Mana as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=30}},nil}
c["Gain 35 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=35}},nil}
+c["Gain 35% Base Chance to Block from Equipped Shield instead of the Shield's value"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ReplaceShieldBlock",type="OVERRIDE",value=35}},nil}
c["Gain 35% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=35}},nil}
+c["Gain 4% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=4}},nil}
+c["Gain 4% of Damage as Extra Fire Damage for"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=4}}," for "}
+c["Gain 4% of Damage as Extra Fire Damage for every different Grenade fired in the past 8 seconds"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=4}}," for every different fired in the past 8 seconds "}
c["Gain 40 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=40}},nil}
-c["Gain 40% Base Chance to Block from Equipped Shield instead of the Shield's value"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ReplaceShieldBlock",type="OVERRIDE",value=40}},nil}
c["Gain 40% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=40}},nil}
c["Gain 5 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=5}},nil}
c["Gain 5 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=5}},nil}
c["Gain 5 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}
c["Gain 5 Rage when Hit by an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil}
+c["Gain 5 Rage when Hit by an Enemy during effect"]={{}," Rage when Hit by an Enemy "}
+c["Gain 5 Rage when Hit by an Enemy during effect No Inherent loss of Rage during effect"]={{}," Rage when Hit by an Enemy No Inherent loss of Rage "}
c["Gain 5% of Damage as Chaos Damage per Undead Minion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageAsChaos",type="BASE",value=5}}}}," per Undead "}
+c["Gain 5% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=5}},nil}
c["Gain 5% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=5}},nil}
+c["Gain 5% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=5}},nil}
c["Gain 5% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=5}},nil}
c["Gain 5% of Lightning Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=5}},nil}
c["Gain 5% of Maximum Mana as Extra Maximum Energy Shield while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=5}},nil}
@@ -3948,27 +4709,59 @@ c["Gain 50% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name=
c["Gain 50% of Maximum Mana as Armour"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," as Armour "}
c["Gain 50% of maximum Energy Shield as additional Freeze Threshold"]={{[1]={[1]={percent=50,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="FreezeThreshold",type="BASE",value=1}},nil}
c["Gain 6 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=6}},nil}
-c["Gain 6% of Physical Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=6}},nil}
+c["Gain 6% of Elemental Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsCold",type="BASE",value=6}},nil}
+c["Gain 6% of Elemental Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsFire",type="BASE",value=6}},nil}
+c["Gain 6% of Elemental Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=6}},nil}
c["Gain 6% of maximum Mana as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=6}},nil}
c["Gain 60% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=60}},nil}
c["Gain 8 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=8}},nil}
+c["Gain 8 Rage when you use a Life Flask"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=8}}," Rage when you use a Flask "}
c["Gain 8% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=8}},nil}
+c["Gain 8% of Damage as Extra Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsPhysical",type="BASE",value=8}},nil}
c["Gain 8% of Elemental Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsCold",type="BASE",value=8}},nil}
c["Gain 8% of Elemental Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsFire",type="BASE",value=8}},nil}
+c["Gain 8% of Elemental Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=8}},nil}
c["Gain 8% of Evasion Rating as extra Armour"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsArmour",type="BASE",value=8}},nil}
+c["Gain 8% of Physical Damage as Extra Cold Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=8}},nil}
+c["Gain 8% of Physical Damage as Extra Lightning Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=8}},nil}
+c["Gain 8% of Physical Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=8}},nil}
c["Gain 9 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=9}},nil}
c["Gain Accuracy Rating equal to your Intelligence"]={{[1]={[1]={stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil}
c["Gain Accuracy Rating equal to your Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil}
c["Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"]={{[1]={[1]={stat="LowestOfArmourAndEvasionOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion"]={{[1]={[1]={type="Condition",var="HitSpellRecently"},[2]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil}
+c["Gain Arcane Surge when a Minion Dies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}}}," when a Dies "}
+c["Gain Arcane Surge when a Minion Dies 30% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}}}," when a Dies 30% increased "}
+c["Gain Cold Thorns Damage equal to 18% of your maximum Mana"]={nil,"Cold Thorns Damage equal to 18% of your maximum Mana "}
+c["Gain Deflection Rating equal to 10% of Evasion Rating"]={nil,"Deflection Rating equal to 10% of Evasion Rating "}
+c["Gain Deflection Rating equal to 10% of Evasion Rating 40% increased Evasion Rating while moving"]={nil,"Deflection Rating equal to 10% of Evasion Rating 40% increased Evasion Rating "}
+c["Gain Deflection Rating equal to 10% of Evasion Rating 40% increased Evasion Rating while moving +10 to Dexterity"]={nil,"Deflection Rating equal to 10% of Evasion Rating 40% increased Evasion Rating +10 to Dexterity "}
+c["Gain Deflection Rating equal to 16% of Evasion Rating"]={nil,"Deflection Rating equal to 16% of Evasion Rating "}
+c["Gain Deflection Rating equal to 16% of Evasion Rating +20 to Spirit while you have at least 200 Dexterity"]={nil,"Deflection Rating equal to 16% of Evasion Rating +20 to Spirit "}
+c["Gain Deflection Rating equal to 20% of Armour"]={nil,"Deflection Rating equal to 20% of Armour "}
+c["Gain Deflection Rating equal to 20% of Armour +300 to Stun Threshold"]={nil,"Deflection Rating equal to 20% of Armour +300 to Stun Threshold "}
+c["Gain Deflection Rating equal to 20% of Armour Gain 100% of Evasion Rating as extra Ailment Threshold"]={nil,"Deflection Rating equal to 20% of Armour Gain 100% of Evasion Rating as extra Ailment Threshold "}
+c["Gain Deflection Rating equal to 3% of Evasion Rating"]={nil,"Deflection Rating equal to 3% of Evasion Rating "}
+c["Gain Deflection Rating equal to 30% of Evasion Rating"]={nil,"Deflection Rating equal to 30% of Evasion Rating "}
+c["Gain Deflection Rating equal to 5% of Evasion Rating"]={nil,"Deflection Rating equal to 5% of Evasion Rating "}
+c["Gain Deflection Rating equal to 5% of Evasion Rating 8% increased Dexterity"]={nil,"Deflection Rating equal to 5% of Evasion Rating 8% increased Dexterity "}
+c["Gain Deflection Rating equal to 6% of Evasion Rating"]={nil,"Deflection Rating equal to 6% of Evasion Rating "}
+c["Gain Deflection Rating equal to 60% of Evasion Rating"]={nil,"Deflection Rating equal to 60% of Evasion Rating "}
+c["Gain Deflection Rating equal to 60% of Evasion Rating 20 Life Regeneration per second"]={nil,"Deflection Rating equal to 60% of Evasion Rating 20 Life Regeneration per second "}
c["Gain Endurance Charges instead of Power Charges"]={nil,"Endurance Charges instead of Power Charges "}
c["Gain Frenzy Charges instead of Endurance Charges"]={nil,"Frenzy Charges instead of Endurance Charges "}
c["Gain Frenzy Charges instead of Endurance Charges Gain Endurance Charges instead of Power Charges"]={nil,"Frenzy Charges instead of Endurance Charges Gain Endurance Charges instead of Power Charges "}
+c["Gain Ice Archon when your Energy Shield Recharge begins"]={nil,"Ice Archon when your Energy Shield Recharge begins "}
c["Gain Infernal Flame instead of spending Mana for Skill costs"]={nil,"Infernal Flame instead of spending Mana for Skill costs "}
c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum"]={nil,"Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum "}
c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame "}
-c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
-c["Gain Physical Thorns damage equal to 3% of Armour on Equipped Body Armour"]={nil,"Physical Thorns damage equal to 3% of Armour on Equipped Body Armour "}
+c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
+c["Gain Lightning Archon after spending 100% of your Maximum Mana"]={nil,"Lightning Archon after spending 100% of your Maximum Mana "}
+c["Gain Onslaught for 4 seconds when a Minion Dies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}}}," when a Dies "}
+c["Gain Onslaught for 4 seconds when a Minion Dies 15% increased Area of Effect for Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}}}," when a Dies 15% increased for Attacks "}
+c["Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour"]={nil,"Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour "}
+c["Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour"]={nil,"Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour "}
+c["Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour 12% chance for Trigger skills to refund half of Energy Spent"]={nil,"Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour 12% chance for Trigger skills to refund half of Energy Spent "}
c["Gain Power Charges instead of Frenzy Charges"]={nil,"Power Charges instead of Frenzy Charges "}
c["Gain Power Charges instead of Frenzy Charges Gain Frenzy Charges instead of Endurance Charges"]={nil,"Power Charges instead of Frenzy Charges Gain Frenzy Charges instead of Endurance Charges "}
c["Gain Power Charges instead of Frenzy Charges Gain Frenzy Charges instead of Endurance Charges Gain Endurance Charges instead of Power Charges"]={nil,"Power Charges instead of Frenzy Charges Gain Frenzy Charges instead of Endurance Charges Gain Endurance Charges instead of Power Charges "}
@@ -3979,6 +4772,7 @@ c["Gain Tailwind on Skill use"]={{[1]={flags=0,keywordFlags=0,name="Condition:Ca
c["Gain a random Shrine buff every 10 seconds"]={nil,"a random Shrine buff every 10 seconds "}
c["Gain a stack of Jade every second"]={nil,"a stack of Jade every second "}
c["Gain a stack of Jade every second Grants Skill: Encase in Jade"]={nil,"a stack of Jade every second Grants Skill: Encase in Jade "}
+c["Gain additional Ailment Threshold equal to 10% of maximum Energy Shield"]={{[1]={[1]={percent="10",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain additional Ailment Threshold equal to 12% of maximum Energy Shield"]={{[1]={[1]={percent="12",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain additional Ailment Threshold equal to 15% of maximum Energy Shield"]={{[1]={[1]={percent="15",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain additional Ailment Threshold equal to 16% of maximum Energy Shield"]={{[1]={[1]={percent="16",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
@@ -3986,14 +4780,15 @@ c["Gain additional Ailment Threshold equal to 20% of maximum Energy Shield"]={{[
c["Gain additional Ailment Threshold equal to 30% of maximum Energy Shield"]={{[1]={[1]={percent="30",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield"]={{[1]={[1]={percent="8",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil}
c["Gain additional Critical Hit Chance equal to 25% of excess chance to Hit with Attacks"]={{[1]={[1]={type="Multiplier",var="ExcessHitChance"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.25}},nil}
+c["Gain additional Stun Threshold equal to 10% of maximum Energy Shield"]={{[1]={[1]={percent="10",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"]={{[1]={[1]={percent="12",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 15% of maximum Energy Shield"]={{[1]={[1]={percent="15",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 16% of maximum Energy Shield"]={{[1]={[1]={percent="16",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 20% of maximum Energy Shield"]={{[1]={[1]={percent="20",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
+c["Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items"]={{[1]={[1]={percent=30,stat="ArmourOnHelmet",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[2]={[1]={percent=30,stat="ArmourOnGloves",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[3]={[1]={percent=30,stat="ArmourOnBoots",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[4]={[1]={percent=30,stat="ArmourOnBody Armour",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 30% of maximum Energy Shield"]={{[1]={[1]={percent="30",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
-c["Gain additional Stun Threshold equal to 50% of Armour on Equipped Items"]={{[1]={[1]={percent=50,stat="ArmourOnHelmet",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[2]={[1]={percent=50,stat="ArmourOnGloves",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[3]={[1]={percent=50,stat="ArmourOnBoots",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[4]={[1]={percent=50,stat="ArmourOnBody Armour",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
c["Gain additional Stun Threshold equal to 8% of maximum Energy Shield"]={{[1]={[1]={percent="8",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil}
-c["Gain additional maximum Life equal to 100% of the Energy Shield on Equipped Body Armour"]={{[1]={[1]={percent=100,stat="EnergyShieldOnBody Armour",type="PercentStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}
+c["Gain additional maximum Life equal to 100% of the Item Energy Shield on Equipped Body Armour"]={{[1]={[1]={percent=100,stat="EnergyShieldOnBody Armour",type="PercentStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}
c["Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"]={nil,"an Endurance Charge when you Heavy Stun a Rare or Unique Enemy "}
c["Gain an additional Charge when you gain a Charge"]={nil,"an additional Charge when you gain a Charge "}
c["Gain no inherent bonus from Intelligence"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil}
@@ -4005,29 +4800,37 @@ c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoint
c["Grants 1 additional Skill Slot"]={{[1]={flags=0,keywordFlags=0,name="SkillSlots",type="BASE",value=1}},nil}
c["Grants 5 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=5}},nil}
c["Grants Onslaught during effect"]={nil,"Grants Onslaught during effect "}
+c["Grants Sands of Time"]={nil,"Grants Sands of Time "}
+c["Grants Skill: Acidic Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AcidicConcoctionPlayer"}}},nil}
c["Grants Skill: Ancestral Spirits"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AncestralSpiritsPlayer"}}},nil}
c["Grants Skill: Bleeding Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BleedingConcoctionPlayer"}}},nil}
c["Grants Skill: Blood Boil"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BloodBoilPlayer"}}},nil}
+c["Grants Skill: Called Shots"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaDeadeyeMarksPlayer"}}},nil}
c["Grants Skill: Cast on Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaCastOnBlockPlayer"}}},nil}
c["Grants Skill: Demon Form"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="DemonFormPlayer"}}},nil}
c["Grants Skill: Elemental Expression"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ElementalExpressionTriggeredPlayer"}}},nil}
c["Grants Skill: Elemental Storm"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ElementalStormPlayer"}}},nil}
+c["Grants Skill: Elemental Surge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AmazonTriggerElementalSurgePlayer"}}},nil}
c["Grants Skill: Encase in Jade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="EncaseInJadePlayer"}}},nil}
c["Grants Skill: Explosive Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ExplosiveConcoctionPlayer"}}},nil}
c["Grants Skill: Fire Spell on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaCastFireSpellOnHitPlayer"}}},nil}
c["Grants Skill: Fulminating Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="FulminatingConcoctionPlayer"}}},nil}
-c["Grants Skill: Infuse Weapon"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AmazonTriggerElementalInfusionPlayer"}}},nil}
+c["Grants Skill: Inevitable Agony"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="InevitableAgonyPlayer"}}},nil}
c["Grants Skill: Into the Breach"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IntoTheBreachPlayer"}}},nil}
+c["Grants Skill: Level 11 Black Powder Blitz"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="BlackPowderBlitzReservationPlayer"}}},nil}
c["Grants Skill: Level 11 Bone Blast"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="BoneBlastPlayer"}}},nil}
c["Grants Skill: Level 11 Bursting Fen Toad"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ExplodingPoisonToadPlayer"}}},nil}
c["Grants Skill: Level 11 Chaos Bolt"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="WeaponGrantedChaosboltPlayer"}}},nil}
-c["Grants Skill: Level 11 Chaotic Infusion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ChaosSpearTriggerChaosInfusionPlayer"}}},nil}
c["Grants Skill: Level 11 Compose Requiem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="CrossbowRequiemAmmoPlayer"}}},nil}
+c["Grants Skill: Level 11 Crackling Palm"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="CracklingPalmPlayer"}}},nil}
c["Grants Skill: Level 11 Decompose"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="CorpseCloudPlayer"}}},nil}
c["Grants Skill: Level 11 Discipline"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="DisciplinePlayer"}}},nil}
-c["Grants Skill: Level 11 Ember Fusillade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="BlazingClusterPlayer"}}},nil}
+c["Grants Skill: Level 11 Ember Fusillade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="EmberFusilladePlayer"}}},nil}
+c["Grants Skill: Level 11 Feast of Flesh"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="FeastOfFleshPlayer"}}},nil}
c["Grants Skill: Level 11 Firebolt"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="FireboltPlayer"}}},nil}
c["Grants Skill: Level 11 Freezing Shards"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="FreezingShardsPlayer"}}},nil}
+c["Grants Skill: Level 11 Future-Past"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="FuturePastPlayer"}}},nil}
+c["Grants Skill: Level 11 Gemini Surge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="GeminiSurgePlayer"}}},nil}
c["Grants Skill: Level 11 Heart of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="HeartOfIcePlayer"}}},nil}
c["Grants Skill: Level 11 Herald of Ash"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="HeraldOfAshPlayer"}}},nil}
c["Grants Skill: Level 11 Herald of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="HeraldOfIcePlayer"}}},nil}
@@ -4038,54 +4841,74 @@ c["Grants Skill: Level 11 Lightning Bolt"]={{[1]={flags=0,keywordFlags=0,name="E
c["Grants Skill: Level 11 Living Bomb"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="LivingBombPlayer"}}},nil}
c["Grants Skill: Level 11 Malice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="MalicePlayer"}}},nil}
c["Grants Skill: Level 11 Mana Drain"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ManaDrainPlayer"}}},nil}
-c["Grants Skill: Level 11 Parry"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ParryPlayer"}}},nil}
+c["Grants Skill: Level 11 Phantasmal Arrow"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="PhantasmalArrowPlayer"}}},nil}
c["Grants Skill: Level 11 Power Siphon"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="PowerSiphonPlayer"}}},nil}
c["Grants Skill: Level 11 Purity of Fire"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="PurityOfFirePlayer"}}},nil}
c["Grants Skill: Level 11 Purity of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="PurityOfIcePlayer"}}},nil}
c["Grants Skill: Level 11 Purity of Lightning"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="PurityOfLightningPlayer"}}},nil}
-c["Grants Skill: Level 11 Raise Shield"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ShieldBlockPlayer"}}},nil}
c["Grants Skill: Level 11 Sigil of Power"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="SigilOfPowerPlayer"}}},nil}
c["Grants Skill: Level 11 Skeletal Warrior Minion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="SummonSkeletalWarriorsPlayer"}}},nil}
+c["Grants Skill: Level 11 Solar Orb"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="SolarOrbPlayer"}}},nil}
c["Grants Skill: Level 11 Spark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="SparkPlayer"}}},nil}
c["Grants Skill: Level 11 Thundergod's Wrath"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="MetaCastLightningSpellOnHitPlayer"}}},nil}
+c["Grants Skill: Level 11 Valako's Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="ValakosChargePlayer"}}},nil}
c["Grants Skill: Level 11 Volatile Dead"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="VolatileDeadPlayer"}}},nil}
+c["Grants Skill: Level 11 Withering Presence"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=11,skillId="WitheringPresencePlayer"}}},nil}
+c["Grants Skill: Level 20 Black Powder Blitz"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BlackPowderBlitzReservationPlayer"}}},nil}
c["Grants Skill: Level 20 Bone Blast"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BoneBlastPlayer"}}},nil}
c["Grants Skill: Level 20 Bursting Fen Toad"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ExplodingPoisonToadPlayer"}}},nil}
c["Grants Skill: Level 20 Chaos Bolt"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="WeaponGrantedChaosboltPlayer"}}},nil}
-c["Grants Skill: Level 20 Chaotic Infusion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChaosSpearTriggerChaosInfusionPlayer"}}},nil}
+c["Grants Skill: Level 20 Chaotic Infusion"]={nil,nil}
+c["Grants Skill: Level 20 Chaotic Infusion 20% increased Attack Speed"]={nil,nil}
c["Grants Skill: Level 20 Compose Requiem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrossbowRequiemAmmoPlayer"}}},nil}
+c["Grants Skill: Level 20 Crackling Palm"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CracklingPalmPlayer"}}},nil}
c["Grants Skill: Level 20 Decompose"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CorpseCloudPlayer"}}},nil}
c["Grants Skill: Level 20 Discipline"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="DisciplinePlayer"}}},nil}
-c["Grants Skill: Level 20 Ember Fusillade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BlazingClusterPlayer"}}},nil}
+c["Grants Skill: Level 20 Ember Fusillade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="EmberFusilladePlayer"}}},nil}
+c["Grants Skill: Level 20 Feast of Flesh"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FeastOfFleshPlayer"}}},nil}
c["Grants Skill: Level 20 Firebolt"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FireboltPlayer"}}},nil}
c["Grants Skill: Level 20 Freezing Shards"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FreezingShardsPlayer"}}},nil}
+c["Grants Skill: Level 20 Future-Past"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FuturePastPlayer"}}},nil}
+c["Grants Skill: Level 20 Gemini Surge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="GeminiSurgePlayer"}}},nil}
c["Grants Skill: Level 20 Heart of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="HeartOfIcePlayer"}}},nil}
c["Grants Skill: Level 20 Herald of Ash"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="HeraldOfAshPlayer"}}},nil}
c["Grants Skill: Level 20 Herald of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="HeraldOfIcePlayer"}}},nil}
c["Grants Skill: Level 20 Herald of Thunder"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="HeraldOfThunderPlayer"}}},nil}
+c["Grants Skill: Level 20 His Dark Horizon"]={nil,nil}
+c["Grants Skill: Level 20 His Dark Horizon Grants Skill: Level 20 His Foul Emergence"]={nil,nil}
+c["Grants Skill: Level 20 His Foul Emergence"]={nil,nil}
+c["Grants Skill: Level 20 His Foul Emergence Grants Skill: Level 20 His Grave Command"]={nil,nil}
+c["Grants Skill: Level 20 His Grave Command"]={nil,nil}
+c["Grants Skill: Level 20 His Grave Command Grants Skill: Level 20 His Scattering Calamity"]={nil,nil}
+c["Grants Skill: Level 20 His Scattering Calamity"]={nil,nil}
+c["Grants Skill: Level 20 His Scattering Calamity Grants Skill: Level 20 His Vile Intrusion"]={nil,nil}
+c["Grants Skill: Level 20 His Vile Intrusion"]={nil,nil}
+c["Grants Skill: Level 20 His Vile Intrusion Grants Skill: Level 20 His Winnowing Flame"]={nil,nil}
+c["Grants Skill: Level 20 His Winnowing Flame"]={nil,nil}
c["Grants Skill: Level 20 Icestorm"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="IcestormPlayer"}}},nil}
c["Grants Skill: Level 20 Impurity"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ImpurityPlayer"}}},nil}
c["Grants Skill: Level 20 Lightning Bolt"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningBoltPlayer"}}},nil}
c["Grants Skill: Level 20 Living Bomb"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LivingBombPlayer"}}},nil}
c["Grants Skill: Level 20 Malice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MalicePlayer"}}},nil}
c["Grants Skill: Level 20 Mana Drain"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ManaDrainPlayer"}}},nil}
-c["Grants Skill: Level 20 Parry"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ParryPlayer"}}},nil}
+c["Grants Skill: Level 20 Phantasmal Arrow"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PhantasmalArrowPlayer"}}},nil}
c["Grants Skill: Level 20 Pinnacle of Power"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PinnacleOfPowerPlayer"}}},nil}
c["Grants Skill: Level 20 Power Siphon"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PowerSiphonPlayer"}}},nil}
c["Grants Skill: Level 20 Purity of Fire"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PurityOfFirePlayer"}}},nil}
c["Grants Skill: Level 20 Purity of Ice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PurityOfIcePlayer"}}},nil}
c["Grants Skill: Level 20 Purity of Lightning"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PurityOfLightningPlayer"}}},nil}
-c["Grants Skill: Level 20 Raise Shield"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShieldBlockPlayer"}}},nil}
c["Grants Skill: Level 20 Sigil of Power"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SigilOfPowerPlayer"}}},nil}
c["Grants Skill: Level 20 Skeletal Warrior Minion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonSkeletalWarriorsPlayer"}}},nil}
+c["Grants Skill: Level 20 Solar Orb"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SolarOrbPlayer"}}},nil}
c["Grants Skill: Level 20 Spark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SparkPlayer"}}},nil}
c["Grants Skill: Level 20 Thundergod's Wrath"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MetaCastLightningSpellOnHitPlayer"}}},nil}
+c["Grants Skill: Level 20 Valako's Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ValakosChargePlayer"}}},nil}
c["Grants Skill: Level 20 Volatile Dead"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="VolatileDeadPlayer"}}},nil}
+c["Grants Skill: Level 20 Withering Presence"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="WitheringPresencePlayer"}}},nil}
c["Grants Skill: Life Remnants"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="LifeRemnantsPlayer"}}},nil}
c["Grants Skill: Manifest Weapon"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ManifestWeaponPlayer"}}},nil}
c["Grants Skill: Meditate"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MeditatePlayer"}}},nil}
c["Grants Skill: Parry"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ParryPlayer"}}},nil}
-c["Grants Skill: Poisonous Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="PoisonousConcoctionPlayer"}}},nil}
c["Grants Skill: Raise Shield"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ShieldBlockPlayer"}}},nil}
c["Grants Skill: Ritual Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="RitualSacrificePlayer"}}},nil}
c["Grants Skill: Shattering Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ShatteringConcoctionPlayer"}}},nil}
@@ -4098,7 +4921,9 @@ c["Grants Skill: Temporal Rift"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill"
c["Grants Skill: Time Freeze"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TimeFreezePlayer"}}},nil}
c["Grants Skill: Time Snap"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TimeSnapPlayer"}}},nil}
c["Grants Skill: Unbound Avatar"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="UnboundAvatarPlayer"}}},nil}
-c["Grants Skill: Unleash"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="UnleashPlayer"}}},nil}
+c["Grants Skill: Void Illusion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="VoidIllusionPlayer"}}},nil}
+c["Grants Thaumaturgical Dynamism"]={nil,"Grants Thaumaturgical Dynamism "}
+c["Grants Unravelling"]={nil,"Grants Unravelling "}
c["Grants a Frenzy Charge on use"]={nil,"Grants a Frenzy Charge on use "}
c["Grants a Power Charge on use"]={nil,"Grants a Power Charge on use "}
c["Grants effect of Dreaming Gloom Shrine"]={nil,"Grants effect of Dreaming Gloom Shrine "}
@@ -4106,6 +4931,7 @@ c["Grants effect of Guided Freezing Shrine"]={nil,"Grants effect of Guided Freez
c["Grants effect of Guided Meteoric Shrine"]={nil,"Grants effect of Guided Meteoric Shrine "}
c["Grants effect of Guided Tempest Shrine"]={nil,"Grants effect of Guided Tempest Shrine "}
c["Grants up to your maximum Rage on use"]={nil,"Grants up to your maximum Rage on use "}
+c["Green: 40% less Movement Speed Penalty from using Skills while Moving"]={nil,"Green: 40% less Movement Speed Penalty from using Skills while Moving "}
c["Grenade Skills Fire an additional Projectile"]={{[1]={[1]={skillType=158,type="SkillType"},flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}
c["Grenade Skills have +1 Cooldown Use"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=1}},nil}
c["Grenades have 15% chance to activate a second time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=1024,keywordFlags=0,name="DPS",type="MORE",value=15}},nil}
@@ -4114,11 +4940,13 @@ c["Has 2 Charm Slots"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BAS
c["Has 3 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=3}},nil}
c["Has 3 Charm Slots"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=3}},nil}
c["Has 6 Rune Sockets"]={nil,"Has 6 Rune Sockets "}
+c["Hazards cannot be triggered for 3 seconds after being created"]={nil,"Hazards cannot be triggered for 3 seconds after being created "}
c["Hazards have 15% chance to rearm after they are triggered"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="HazardRearmChance",type="BASE",value=15}},nil}
c["Hazards have 5% chance to rearm after they are triggered"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="HazardRearmChance",type="BASE",value=5}},nil}
+c["Heavy Stuns Enemies that are on Full Life"]={nil,"Heavy Stuns Enemies that are on Full Life "}
c["Herald Skills deal 20% increased Damage"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}
c["Herald Skills deal 30% increased Damage"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}
-c["Herald Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}
+c["Herald Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}
c["Historic"]={{},nil}
c["Hits Break 30% increased Armour on targets with Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Electrocuted",[5]="Ignited",[6]="Poisoned",[7]="Bleeding"}},flags=0,keywordFlags=0,name="ArmourBreakPerHit",type="INC",value=30}},nil}
c["Hits Break 50 Armour"]={nil,"Hits Break 50 Armour "}
@@ -4127,30 +4955,44 @@ c["Hits Break 50% increased Armour on targets with Ailments"]={{[1]={[1]={actor=
c["Hits against you have 15% reduced Critical Damage Bonus per Socket filled"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=4,keywordFlags=0,name="CritMultiplier",type="INC",value=-15}}}},nil}
c["Hits against you have 20% reduced Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=4,keywordFlags=0,name="CritMultiplier",type="INC",value=-20}}}},nil}
c["Hits against you have 25% reduced Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=4,keywordFlags=0,name="CritMultiplier",type="INC",value=-25}}}},nil}
+c["Hits against you have 30% reduced Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=4,keywordFlags=0,name="CritMultiplier",type="INC",value=-30}}}},nil}
+c["Hits against you have 5% reduced Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=4,keywordFlags=0,name="CritMultiplier",type="INC",value=-5}}}},nil}
c["Hits have 25% reduced Critical Hit Chance against you"]={{[1]={flags=0,keywordFlags=0,name="EnemyCritChance",type="INC",value=-25}},nil}
c["Hits ignore non-negative Elemental Resistances of Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="IgnoreNonNegativeEleRes",type="FLAG",value=true}},nil}
c["Hits that Heavy Stun Enemies have Culling Strike"]={{[1]={[1]={type="Condition",var="AlwaysHeavyStunning"},flags=0,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil}
-c["Hits that Heavy Stun inflict Fire Exposure"]={nil,"Hits that Heavy Stun inflict Fire Exposure "}
-c["Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure"]={nil,"Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure "}
-c["Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure"]={nil,"Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure "}
-c["Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure"]={nil,"Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure "}
-c["Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure"]={nil,"Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure "}
-c["Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure"]={nil,"Hits that deal Fire Damage remove Fire Exposure and inflict Lightning Exposure Hits that deal Cold Damage remove Cold Exposure and inflict Fire Exposure Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure "}
-c["Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure"]={nil,"Hits that deal Lightning Damage remove Lightning Exposure and inflict Cold Exposure "}
c["If you would gain a Charge, Allies in your Presence gain that Charge instead"]={nil,"If you would gain a Charge, that Charge instead "}
-c["Ignite Enemies in Presence as though dealing Fire damage equal to 500% of your maximum Life when used"]={nil,"Ignite Enemies in Presence as though dealing Fire damage equal to 500% of your maximum Life when used "}
+c["Ignite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage"]={{[1]={[1]={skillType=2,type="SkillType"},[2]={skillType=28,type="SkillType"},flags=0,keywordFlags=0,name="IgniteToChaos",type="FLAG",value=true},[2]={[1]={skillType=2,type="SkillType"},[2]={skillType=28,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="IgniteToChaos",value=true}}},nil}
+c["Ignites you cause are reflected back to you"]={nil,"Ignites you cause are reflected back to you "}
+c["Ignites you cause are reflected back to you 40% reduced Magnitude of Ignite on you"]={nil,"Ignites you cause are reflected back to you 40% reduced Magnitude of Ignite on you "}
c["Ignites you inflict deal Damage 15% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=15}},nil}
c["Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second"]={nil,"Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second "}
c["Ignore Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="IgnoreAttributeRequirements",type="FLAG",value=true}},nil}
c["Ignore Warcry Cooldowns"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="OVERRIDE",value=0}},nil}
+c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil}
c["Immobilise enemies at 50% buildup instead of 100%"]={nil,"Immobilise enemies at 50% buildup instead of 100% "}
c["Immobilise enemies at 50% buildup instead of 100% Enemies Immobilised by you take 25% less Damage"]={nil,"Immobilise enemies at 50% buildup instead of 100% Enemies Immobilised by you take 25% less Damage "}
+c["Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating"]={{[1]={[1]={type="Condition",var="HelmetArmourHigherThanEvasion"},flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil}
c["Immune to Chaos Damage and Bleeding"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-100},[3]={flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil}
+c["Immune to Chill if a majority of your Socketed Support Gems are Blue"]={nil,"Immune to Chill if a majority of your Socketed Support Gems are Blue "}
+c["Immune to Chill if a majority of your Socketed Support Gems are Blue Immune to Ignite if a majority of your Socketed Support Gems are Red"]={nil,"Immune to Chill if a majority of your Socketed Support Gems are Blue Immune to Ignite if a majority of your Socketed Support Gems are Red "}
+c["Immune to Chill if a majority of your Socketed Support Gems are Blue Immune to Ignite if a majority of your Socketed Support Gems are Red Immune to Shock if a majority of your Socketed Support Gems are Green"]={nil,"Immune to Chill if a majority of your Socketed Support Gems are Blue Immune to Ignite if a majority of your Socketed Support Gems are Red Immune to Shock if a majority of your Socketed Support Gems are Green "}
+c["Immune to Corrupted Blood"]={nil,"Immune to Corrupted Blood "}
+c["Immune to Corrupted Blood 40% reduced Duration of Bleeding on You"]={nil,"Immune to Corrupted Blood 40% reduced Duration of Bleeding on You "}
c["Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},[2]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalAilmentImmune",type="FLAG",value=true}},nil}
c["Immune to Freeze"]={{[1]={flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil}
+c["Immune to Freeze and Chill while affected by Ice Archon"]={nil,"Immune to Freeze and Chill while affected by Ice Archon "}
+c["Immune to Hinder"]={nil,"Immune to Hinder "}
+c["Immune to Hinder Immune to Maim"]={nil,"Immune to Hinder Immune to Maim "}
c["Immune to Ignite"]={{[1]={flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil}
+c["Immune to Ignite if a majority of your Socketed Support Gems are Red"]={nil,"Immune to Ignite if a majority of your Socketed Support Gems are Red "}
+c["Immune to Ignite if a majority of your Socketed Support Gems are Red Immune to Shock if a majority of your Socketed Support Gems are Green"]={nil,"Immune to Ignite if a majority of your Socketed Support Gems are Red Immune to Shock if a majority of your Socketed Support Gems are Green "}
+c["Immune to Ignite while affected by Flame Archon"]={nil,"Immune to Ignite while affected by Flame Archon "}
+c["Immune to Maim"]={nil,"Immune to Maim "}
c["Immune to Poison"]={{[1]={flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil}
+c["Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"]={{[1]={[1]={type="Condition",var="HelmetEvasionHigherThanArmour"},flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil}
c["Immune to Shock"]={{[1]={flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil}
+c["Immune to Shock if a majority of your Socketed Support Gems are Green"]={nil,"Immune to Shock if a majority of your Socketed Support Gems are Green "}
+c["Immune to Shock while affected by Lightning Archon"]={nil,"Immune to Shock while affected by Lightning Archon "}
c["Increases and Reductions to Armour also apply to Energy Shield"]={nil,"Increases and Reductions to Armour also apply to Energy Shield "}
c["Increases and Reductions to Armour also apply to Energy Shield Recharge Rate at 40% of their value"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedArmourAppliesToEnergyShieldRecharge",type="MAX",value=40}},nil}
c["Increases and Reductions to Companion Damage also apply to you"]={nil,"Increases and Reductions to Companion Damage also apply to you "}
@@ -4160,24 +5002,43 @@ c["Increases and Reductions to Minion Attack Speed also affect you"]={{[1]={flag
c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedMinionDamageAppliesToPlayer",type="MAX",value=100}},nil}
c["Increases and Reductions to Projectile Speed also apply to Damage with Bows"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeedAppliesToBowDamage",type="FLAG",value=true}},nil}
c["Increases and Reductions to Spell damage also apply to Attacks"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=100}},nil}
-c["Infinite Projectile Parry Range"]={nil,"Infinite Projectile Parry Range "}
-c["Infinite Projectile Parry Range 50% increased Parried Debuff Duration"]={nil,"Infinite Projectile Parry Range 50% increased Parried Debuff Duration "}
-c["Inflict Cold Exposure on Hit, lowering Total Cold Resistance by 30%"]={nil,"Inflict Cold Exposure on Hit, lowering Total Cold Resistance by 30% "}
+c["Infinite Parry Range"]={nil,"Infinite Parry Range "}
+c["Infinite Parry Range 50% increased Parried Debuff Duration"]={nil,"Infinite Parry Range 50% increased Parried Debuff Duration "}
+c["Inflict Abyssal Wasting on Hit"]={nil,"Inflict Abyssal Wasting on Hit "}
+c["Inflict Abyssal Wasting on Hit 60% increased Magnitude of Abyssal Wasting you inflict"]={nil,"Inflict Abyssal Wasting on Hit 60% increased Magnitude of Abyssal Wasting you inflict "}
c["Inflict Cold Exposure on Igniting an Enemy"]={nil,"Inflict Cold Exposure on Igniting an Enemy "}
c["Inflict Cold Exposure on Igniting an Enemy Inflict Fire Exposure on Shocking an Enemy"]={nil,"Inflict Cold Exposure on Igniting an Enemy Inflict Fire Exposure on Shocking an Enemy "}
c["Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of"]={nil,"Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of "}
c["Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of your maximum Life as Physical damage per second"]={nil,"Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of your maximum Life as Physical damage per second "}
+c["Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by 30%"]={nil,"Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by 30% "}
+c["Inflict Elemental Exposure to Enemies 3 metres in front of you"]={nil,"Inflict Elemental Exposure to Enemies 3 metres in front of you "}
+c["Inflict Elemental Exposure to Enemies 3 metres in front of you for 4 seconds, every 0.25 seconds while raised"]={nil,"Inflict Elemental Exposure to Enemies 3 metres in front of you for 4 seconds, every 0.25 seconds while raised "}
c["Inflict Fire Exposure on Shocking an Enemy"]={nil,"Inflict Fire Exposure on Shocking an Enemy "}
c["Inflict Fire Exposure on Shocking an Enemy Inflict Lightning Exposure on Critical Hit"]={nil,"Inflict Fire Exposure on Shocking an Enemy Inflict Lightning Exposure on Critical Hit "}
c["Inflict Lightning Exposure on Critical Hit"]={nil,"Inflict Lightning Exposure on Critical Hit "}
c["Inflicts Fire Exposure when this Weapon Fully Breaks Armour"]={nil,"Inflicts Fire Exposure when this Weapon Fully Breaks Armour "}
c["Inflicts a random Curse on you when your Totems die, ignoring Curse limit"]={nil,"Inflicts a random Curse on you when your Totems die, ignoring Curse limit "}
+c["Infusion Remnants you create are always a Random Element"]={nil,"Infusion Remnants you create are always a Random Element "}
+c["Inherent Life granted by Strength is halved"]={nil,"Inherent Life granted by Strength is halved "}
c["Inherent Rage Loss starts 1 second later"]={{[1]={flags=0,keywordFlags=0,name="InherentRageLossDelay",type="BASE",value=1}},nil}
c["Inherent bonuses gained from Attributes are doubled"]={{[1]={flags=0,keywordFlags=0,name="DoubledInherentAttributeBonuses",type="FLAG",value=true}},nil}
-c["Inherent loss of Rage is 10% slower"]={{[1]={flags=0,keywordFlags=0,name="InherentRageLoss",type="INC",value=-10}},nil}
+c["Inherent loss of Rage is 20% slower"]={{[1]={flags=0,keywordFlags=0,name="InherentRageLoss",type="INC",value=-20}},nil}
c["Inherent loss of Rage is 25% slower"]={{[1]={flags=0,keywordFlags=0,name="InherentRageLoss",type="INC",value=-25}},nil}
c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil}
c["Intelligence's inherent bonus is 1% increased Evasion Rating per 2 Intelligence instead"]={{[1]={[1]={div="2",stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil}
+c["Invocated Spells deal 15% increased Damage"]={nil,"Invocated Spells deal 15% increased Damage "}
+c["Invocated Spells have 15% increased Critical Hit Chance"]={nil,"Invocated Spells have 15% increased Critical Hit Chance "}
+c["Invocated Spells have 40% chance to consume half as much Energy"]={nil,"Invocated Spells have 40% chance to consume half as much Energy "}
+c["Invocated Spells have 40% increased Critical Hit Chance"]={nil,"Invocated Spells have 40% increased Critical Hit Chance "}
+c["Invocated skills have 30% increased Maximum Energy"]={nil,"Invocated skills have 30% increased Maximum Energy "}
+c["Invocation Skills cannot gain Energy while Triggering Spells"]={nil,"Invocation Skills cannot gain Energy while Triggering Spells "}
+c["Invocation Skills cannot gain Energy while Triggering Spells Invoked Spells consume 50% less Energy"]={nil,"Invocation Skills cannot gain Energy while Triggering Spells Invoked Spells consume 50% less Energy "}
+c["Invocation Skills instead Trigger Spells every 2 seconds"]={nil,"Invocation Skills instead Trigger Spells every 2 seconds "}
+c["Invocation Skills instead Trigger Spells every 2 seconds Invocation Skills cannot gain Energy while Triggering Spells"]={nil,"Invocation Skills instead Trigger Spells every 2 seconds Invocation Skills cannot gain Energy while Triggering Spells "}
+c["Invocation Skills instead Trigger Spells every 2 seconds Invocation Skills cannot gain Energy while Triggering Spells Invoked Spells consume 50% less Energy"]={nil,"Invocation Skills instead Trigger Spells every 2 seconds Invocation Skills cannot gain Energy while Triggering Spells Invoked Spells consume 50% less Energy "}
+c["Invocation Spells have 20% increased Critical Damage Bonus"]={nil,"Invocation Spells have 20% increased Critical Damage Bonus "}
+c["Invocation Spells have 50% increased Critical Damage Bonus"]={nil,"Invocation Spells have 50% increased Critical Damage Bonus "}
+c["Invoked Spells consume 50% less Energy"]={nil,"Invoked Spells consume 50% less Energy "}
c["Iron Grip"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}
c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}
c["Iron Will"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}
@@ -4191,6 +5052,7 @@ c["Leech Life 20% slower"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",ty
c["Leech Life 25% faster"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=25}},nil}
c["Leech Life 5% slower"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-5}},nil}
c["Leech from Critical Hits is instant"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=100},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=100}},nil}
+c["Leech recovers based on Chaos Damage as well as Physical Damage"]={nil,"Leech recovers based on Chaos Damage as well as Physical Damage "}
c["Leeches 0.1% of Physical Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.1}},nil}
c["Leeches 1% of maximum Life when you Cast a Spell"]={nil,"Leeches 1% of maximum Life when you Cast a Spell "}
c["Leeches 10% of Physical Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=10}},nil}
@@ -4207,6 +5069,7 @@ c["Life Flask Effects are not removed when Unreserved Life is Filled"]={{[1]={fl
c["Life Flask Effects do not Queue"]={nil,"Life Flask Effects do not Queue "}
c["Life Flasks also recover Mana"]={nil,"Life Flasks also recover Mana "}
c["Life Flasks also recover Mana Mana Flasks also recover Life"]={nil,"Life Flasks also recover Mana Mana Flasks also recover Life "}
+c["Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply"]={nil,"Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply "}
c["Life Flasks do not recover Life"]={nil,"Life Flasks do not recover Life "}
c["Life Flasks do not recover Life On-Kill Effects happen twice"]={nil,"Life Flasks do not recover Life On-Kill Effects happen twice "}
c["Life Flasks gain 0.1 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.1}},nil}
@@ -4215,6 +5078,7 @@ c["Life Flasks gain 0.22 charges per Second"]={{[1]={flags=0,keywordFlags=0,name
c["Life Flasks gain 0.25 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.25}},nil}
c["Life Flasks used while on Low Life apply Recovery Instantly"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskInstantRecovery",type="BASE",value=100}},nil}
c["Life Leech can Overflow Maximum Life"]={nil,"Life Leech can Overflow Maximum Life "}
+c["Life Leech can Overflow Maximum Life 60% reduced Duration of Bleeding on You"]={nil,"Life Leech can Overflow Maximum Life 60% reduced Duration of Bleeding on You "}
c["Life Leech effects Recover Energy Shield instead while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},[2]={type="Condition",var="LeechingLife"},flags=0,keywordFlags=0,name="ImmortalAmbition",type="FLAG",value=true}},nil}
c["Life Leech effects are not removed when Unreserved Life is Filled"]={{[1]={flags=0,keywordFlags=0,name="CanLeechLifeOnFullLife",type="FLAG",value=true}},nil}
c["Life Leech from your Hits also applies to your Companion"]={nil,"Life Leech from your Hits also applies to your Companion "}
@@ -4222,6 +5086,7 @@ c["Life Leech is Converted to Energy Shield Leech"]={{[1]={flags=0,keywordFlags=
c["Life Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100}},nil}
c["Life Leech recovers based on your Chaos damage instead of Physical damage"]={nil,"Life Leech recovers based on your Chaos damage instead of Physical damage "}
c["Life Leech recovers based on your Elemental damage as well as Physical damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalAsElementalDamageLifeLeech",type="FLAG",value=true}},nil}
+c["Life Leeched from Empowered Attacks is Instant"]={nil,"Life Leeched from Empowered Attacks is Instant "}
c["Life Recharges"]={nil,"Life Recharges "}
c["Life Recharges instead of Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeAppliesToLife",type="FLAG",value=true}},nil}
c["Life Recovery from Flasks also applies to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskAppliesToEnergyShield",type="FLAG",value=true}},nil}
@@ -4261,7 +5126,7 @@ c["Lose 5% of maximum Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="Mana
c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "}
c["Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second"]={nil,"Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second "}
c["Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Lose all Infernal Flame on reaching maximum Infernal Flame "}
-c["Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
+c["Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
c["Lose all Power Charges on reaching maximum Power Charges"]={nil,"Lose all Power Charges on reaching maximum Power Charges "}
c["Lose all Power Charges on reaching maximum Power Charges Shocks you when you reach maximum Power Charges"]={nil,"Lose all Power Charges on reaching maximum Power Charges Shocks you when you reach maximum Power Charges "}
c["Lose all Rage on reaching Maximum Rage"]={nil,"Lose all Rage on reaching Maximum Rage "}
@@ -4272,56 +5137,74 @@ c["Mana Flasks gain 0.1 charges per Second"]={{[1]={flags=0,keywordFlags=0,name=
c["Mana Flasks gain 0.22 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.22}},nil}
c["Mana Flasks gain 0.25 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.25}},nil}
c["Mana Flasks used while on Low Mana apply Recovery Instantly"]={{[1]={[1]={type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaFlaskInstantRecovery",type="BASE",value=100}},nil}
-c["Mana Leech effects also Recover Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRecoversEnergyShield",type="FLAG",value=true}},nil}
-c["Mana Leech recovers based on other Damage Types damage as well as Physical damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalAsAllDamageManaLeech",type="FLAG",value=true}},nil}
+c["Mana Leech recovers based on Elemental Damage Types instead of Physical Damage"]={nil,"Mana Leech recovers based on Elemental Damage Types instead of Physical Damage "}
c["Mana Recovery from Regeneration is not applied"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedByManaRegen",type="FLAG",value=true}},nil}
c["Mana Recovery other than Regeneration cannot Recover Mana"]={nil,"Mana Recovery other than Regeneration cannot Recover Mana "}
-c["Mark Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}
+c["Mark Skills have 10% increased Use Speed"]={{}," Use Speed "}
c["Mark Skills have 25% increased Skill Effect Duration"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}
c["Maximum 10 Fragile Regrowth"]={nil,"Maximum 10 Fragile Regrowth "}
c["Maximum 10 Fragile Regrowth 0.5% of maximum Life Regenerated per second per Fragile Regrowth"]={nil,"Maximum 10 Fragile Regrowth 0.5% of maximum Life Regenerated per second per Fragile Regrowth "}
+c["Maximum Block chance is 75%"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="OVERRIDE",value=75}},nil}
c["Maximum Chance to Evade is 50%"]={{[1]={flags=0,keywordFlags=0,name="EvadeChanceMax",type="MAX",value=50}},nil}
c["Maximum Life is 1"]={{[1]={flags=0,keywordFlags=0,name="Life",type="OVERRIDE",value=1}},nil}
-c["Maximum Mana is replaced by Maximum Infernal Flame"]={nil,"Maximum Mana is replaced by Maximum Infernal Flame "}
-c["Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs"]={nil,"Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs "}
-c["Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum"]={nil,"Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum "}
-c["Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame "}
-c["Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Maximum Mana is replaced by Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
+c["Maximum Mana is replaced by twice as much Maximum Infernal Flame"]={nil,"Maximum Mana is replaced by twice as much Maximum Infernal Flame "}
+c["Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs"]={nil,"Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs "}
+c["Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum"]={nil,"Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum "}
+c["Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame "}
+c["Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Maximum Mana is replaced by twice as much Maximum Infernal Flame Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
c["Maximum Physical Damage Reduction is 50%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReductionMax",type="MAX",value=50}},nil}
c["Maximum Volatility is 30"]={{},"Maximum Volatility "}
+c["Melee Attack Skills have +1 to maximum number of Summoned Totems"]={nil,"Melee Attack Skills have +1 to maximum number of Summoned Totems "}
+c["Melee Attack Skills have +1 to maximum number of Summoned Totems 20% increased Totem Placement range"]={nil,"Melee Attack Skills have +1 to maximum number of Summoned Totems 20% increased Totem Placement range "}
c["Meta Skills gain 15% increased Energy"]={nil,"Meta Skills gain 15% increased Energy "}
+c["Meta Skills gain 16% increased Energy"]={nil,"Meta Skills gain 16% increased Energy "}
+c["Meta Skills gain 16% increased Energy 1% increased Cast Speed per 20 Spirit"]={nil,"Meta Skills gain 16% increased Energy 1% increased Cast Speed per 20 Spirit "}
+c["Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently"]={nil,"Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently "}
c["Meta Skills gain 35% more Energy"]={nil,"Meta Skills gain 35% more Energy "}
+c["Meta Skills gain 4% increased Energy"]={nil,"Meta Skills gain 4% increased Energy "}
+c["Meta Skills gain 4% increased Energy 5% increased Critical Hit Chance"]={nil,"Meta Skills gain 4% increased Energy 5% increased Critical Hit Chance "}
c["Meta Skills gain 8% increased Energy"]={nil,"Meta Skills gain 8% increased Energy "}
-c["Minions Recoup 10% of Damage taken as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=10}}}},nil}
+c["Meta Skills have 20% increased Reservation Efficiency"]={nil,"Meta Skills have 20% increased Reservation Efficiency "}
+c["Minions Break Armour equal to 3% of Physical damage dealt"]={nil,"Break Armour equal to 3% of Physical damage dealt "}
+c["Minions Recoup 15% of Damage taken as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=15}}}},nil}
c["Minions Regenerate 3% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}}}},nil}
+c["Minions Revive 10% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-10}},nil}
c["Minions Revive 13% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-13}},nil}
c["Minions Revive 15% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-15}},nil}
c["Minions Revive 15% faster if all your Minions are Companions"]={nil,"Revive 15% faster if all your Minions are Companions "}
c["Minions Revive 25% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-25}},nil}
+c["Minions Revive 3% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-3}},nil}
c["Minions Revive 35% faster if all your Minions are Companions"]={nil,"Revive 35% faster if all your Minions are Companions "}
c["Minions Revive 5% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-5}},nil}
c["Minions Revive 50% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalTime",type="INC",value=-50}},nil}
+c["Minions cannot Die while affected by a Life Flask"]={nil,"cannot Die while affected by a Life Flask "}
+c["Minions cannot Die while affected by a Life Flask 30% increased Flask Charges gained"]={nil,"cannot Die while affected by a Life Flask 30% increased Flask Charges gained "}
+c["Minions cause 15% increased Stun Buildup"]={nil,"cause 15% increased Stun Buildup "}
c["Minions deal (25-35)% increased Damage"]={nil,"(25-35)% increased Damage "}
c["Minions deal (8-13)% increased Damage"]={nil,"(8-13)% increased Damage "}
c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}
+c["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}}," with Command Skills for each different type of Persistent in your Presence "}
c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}
c["Minions deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}
+c["Minions deal 15% increased Damage with Command Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}}," with Command Skills "}
c["Minions deal 16% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=16}}}},nil}
c["Minions deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}
+c["Minions deal 20% increased Damage with Command Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}}," with Command Skills "}
c["Minions deal 25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}}},nil}
c["Minions deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}
+c["Minions deal 30% increased Damage if you've Hit Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}
c["Minions deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}
+c["Minions deal 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=6}}}},nil}
c["Minions deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}}},nil}
c["Minions deal 80% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil}
+c["Minions gain 10% of Physical Damage as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageAsChaos",type="BASE",value=10}}}},nil}
c["Minions gain 15% of their maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=15,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}}},nil}
c["Minions gain 25% of their maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=25,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}}},nil}
c["Minions gain 30% of their maximum Life as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=30,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}}},nil}
-c["Minions gain 8% of Physical Damage as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageAsChaos",type="BASE",value=8}}}},nil}
c["Minions have (15-20)% increased maximum Life"]={nil,"(15-20)% increased maximum Life "}
c["Minions have (15-20)% increased maximum Life Minions deal (25-35)% increased Damage"]={nil,"(15-20)% increased maximum Life Minions deal (25-35)% increased Damage "}
c["Minions have +13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}}}},nil}
c["Minions have +15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}}}},nil}
-c["Minions have +150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}}}},nil}
c["Minions have +20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}}}},nil}
c["Minions have +20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}}}},nil}
c["Minions have +20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20}}}},nil}
@@ -4329,23 +5212,29 @@ c["Minions have +20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,nam
c["Minions have +20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}
c["Minions have +22% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=22}}}},nil}
c["Minions have +23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}}}},nil}
+c["Minions have +3% to Maximum Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3}}}}," s "}
+c["Minions have +3% to Maximum Fire Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3}}}}," s "}
+c["Minions have +3% to Maximum Fire Resistances Minions have +20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3}}}}," s s have +20% to Fire Resistance "}
+c["Minions have +3% to Maximum Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3}}}}," s "}
c["Minions have +3% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3}}}},nil}
+c["Minions have +4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}}}},nil}
c["Minions have +5% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5}}}},nil}
c["Minions have +7% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=7}}}},nil}
c["Minions have +8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}}}},nil}
c["Minions have 10% chance to inflict Withered on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}}}},nil}
-c["Minions have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}
c["Minions have 10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=10}}}},nil}
c["Minions have 10% reduced Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=-10}}}},nil}
c["Minions have 12% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=12}}}},nil}
+c["Minions have 12% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=12}}}},nil}
c["Minions have 12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}
-c["Minions have 12% reduced Reservation"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-12}},nil}
c["Minions have 13% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=13}}}},nil}
+c["Minions have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}}},nil}
c["Minions have 15% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=15}}}},nil}
c["Minions have 15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}
c["Minions have 20% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=20}}}},nil}
c["Minions have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}}}},nil}
c["Minions have 20% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}}}},nil}
+c["Minions have 20% increased Cooldown Recovery Rate for Command Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}}}}," for Command Skills "}
c["Minions have 20% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}}}},nil}
c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}
c["Minions have 20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}
@@ -4353,11 +5242,15 @@ c["Minions have 25% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,nam
c["Minions have 25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil}
c["Minions have 3% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}
c["Minions have 30% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=30}}}},nil}
+c["Minions have 4% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}
c["Minions have 40% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40}}}},nil}
c["Minions have 40% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}}}},nil}
c["Minions have 40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=40}}}},nil}
+c["Minions have 5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}
c["Minions have 50% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=-50}}}},nil}
+c["Minions have 6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=6}}}},nil}
c["Minions have 8% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}}}},nil}
+c["Minions have 8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil}
c["Minions have 8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil}
c["Minions have 8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=8}}}},nil}
c["Minions have 80% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=80}}}},nil}
@@ -4366,30 +5259,38 @@ c["Minions' Resistances are equal to yours"]={{[1]={flags=0,keywordFlags=0,name=
c["Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="FireResConvertToCold",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="FireResConvertToLightning",type="BASE",value=50}},nil}
c["Modifiers to Maximum Block Chance instead apply to Maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="MaxBlockChanceModsApplyMaxResist",type="FLAG",value=true}},nil}
c["Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireMaxResConvertToCold",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="FireMaxResConvertToLightning",type="BASE",value=100}},nil}
+c["Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry"]={nil,"Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry "}
+c["Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry 100% of Parry Physical Damage Converted to Cold Damage"]={nil,"Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry 100% of Parry Physical Damage Converted to Cold Damage "}
c["Moving while Bleeding doesn't cause you to take extra damage"]={nil,"Moving while Bleeding doesn't cause you to take extra damage "}
c["Nearby Allies and Enemies Share Charges with you"]={nil,"Nearby Allies and Enemies Share Charges with you "}
c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "}
c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge"]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge "}
c["Never deal Critical Hits"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}},nil}
c["No Inherent loss of Rage"]={nil,"No Inherent loss of Rage "}
+c["No Inherent loss of Rage during effect"]={nil,"No Inherent loss of Rage during effect "}
+c["No Inherent loss of Rage during effect 50% increased Duration"]={nil,"No Inherent loss of Rage during effect 50% increased Duration "}
c["No Movement Speed Penalty while Shield is Raised"]={nil,"No Movement Speed Penalty while Shield is Raised "}
c["No Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMin"}},[2]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMax"}},[3]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalDPS"}}},nil}
c["No inherent Mana Regeneration"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoInherentManaRegen",type="FLAG",value=true}},nil}
-c["Non-Channelling Spells consume a Power Charge if able to deal 25% more Damage"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={threshold=1,type="MultiplierThreshold",var="RemovablePowerCharge"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=25}},nil}
-c["Non-Channelling Spells cost an additional 3% of maximum Energy Shield"]={{[1]={[1]={percent=3,stat="EnergyShield",type="PercentStat"},[2]={neg=true,skillType=48,type="SkillType"},flags=0,keywordFlags=131072,name="ESCostBase",type="BASE",value=1}},nil}
c["Non-Channelling Spells cost an additional 6% of your maximum Life"]={nil,"cost an additional 6% of your maximum Life "}
c["Non-Channelling Spells cost an additional 6% of your maximum Life Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life"]={nil,"cost an additional 6% of your maximum Life Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life "}
c["Non-Channelling Spells deal 10% increased Damage per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}
-c["Non-Channelling Spells deal 30% more Damage"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}},nil}
c["Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=5}},nil}
+c["Offering Skills have 15% increased Buff effect"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=15}},nil}
c["Offering Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
+c["Offering Skills have 20% increased Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}
c["Offering Skills have 30% increased Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}
c["Offering Skills have 30% reduced Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}},nil}
+c["Offerings cannot be damaged if they have been created Recently"]={nil,"Offerings cannot be damaged if they have been created Recently "}
+c["Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={nil,"Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy "}
c["Offerings have 15% increased Maximum Life"]={nil,"Offerings have 15% increased Maximum Life "}
c["Offerings have 30% increased Maximum Life"]={nil,"Offerings have 30% increased Maximum Life "}
c["Offerings have 30% increased Maximum Life Recover 3% of maximum Life when you create an Offering"]={nil,"Offerings have 30% increased Maximum Life Recover 3% of maximum Life when you create an Offering "}
c["Offerings have 30% reduced Maximum Life"]={nil,"Offerings have 30% reduced Maximum Life "}
c["On Freezing Enemies create Chilled Ground"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnChilledGround"},flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=10}},nil}
+c["On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted"]={nil,"On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted "}
+c["On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed"]={nil,"On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed "}
+c["On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={nil,"On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way "}
c["On Hitting an enemy, gains maximum added Lightning damage equal to"]={nil,"On Hitting an enemy, gains maximum added Lightning damage equal to "}
c["On Hitting an enemy, gains maximum added Lightning damage equal to the enemy's Power for 6 seconds, up to a total of 500"]={nil,"On Hitting an enemy, gains maximum added Lightning damage equal to the enemy's Power for 6 seconds, up to a total of 500 "}
c["On-Kill Effects happen twice"]={nil,"On-Kill Effects happen twice "}
@@ -4402,6 +5303,7 @@ c["Only affects Passives in Small Ring"]={{[1]={flags=0,keywordFlags=0,name="Jew
c["Only affects Passives in Very Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=11}}},nil}
c["Only affects Passives in Very Small Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=5}}},nil}
c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}
+c["Orb Skills have +1 to Limit"]={nil,"Orb Skills have +1 to Limit "}
c["Other Modifiers to Movement Speed do not apply"]={nil,"Other Modifiers to Movement Speed do not apply "}
c["Other Modifiers to Movement Speed do not apply Other Modifiers to Movement Speed do not apply"]={nil,"Other Modifiers to Movement Speed do not apply Other Modifiers to Movement Speed do not apply "}
c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil}
@@ -4416,6 +5318,7 @@ c["Passives in radius are Conquered by the Kalguur"]={{},nil}
c["Passives in radius of Acrobatics can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="acrobatics"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="acrobatics",value=true}}},nil}
c["Passives in radius of Ancestral Bond can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="ancestral bond"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="ancestral bond",value=true}}},nil}
c["Passives in radius of Avatar of Fire can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="avatar of fire"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="avatar of fire",value=true}}},nil}
+c["Passives in radius of Blackflame Covenant can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="blackflame covenant"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="blackflame covenant",value=true}}},nil}
c["Passives in radius of Blood Magic can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="blood magic"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="blood magic",value=true}}},nil}
c["Passives in radius of Bulwark can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="bulwark"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="bulwark",value=true}}},nil}
c["Passives in radius of Chaos Inoculation can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="chaos inoculation"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="chaos inoculation",value=true}}},nil}
@@ -4428,6 +5331,7 @@ c["Passives in radius of Eternal Youth can be Allocated without being connected
c["Passives in radius of Giant's Blood can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="giant's blood"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="giant's blood",value=true}}},nil}
c["Passives in radius of Glancing Blows can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="glancing blows"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="glancing blows",value=true}}},nil}
c["Passives in radius of Heartstopper can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="heartstopper"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="heartstopper",value=true}}},nil}
+c["Passives in radius of Hollow Palm Technique can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="hollow palm technique"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="hollow palm technique",value=true}}},nil}
c["Passives in radius of Iron Reflexes can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="iron reflexes"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="iron reflexes",value=true}}},nil}
c["Passives in radius of Mind Over Matter can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="mind over matter"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="mind over matter",value=true}}},nil}
c["Passives in radius of Necromantic Talisman can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="necromantic talisman"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="necromantic talisman",value=true}}},nil}
@@ -4435,16 +5339,20 @@ c["Passives in radius of Oasis can be Allocated without being connected to your
c["Passives in radius of Pain Attunement can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="pain attunement"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="pain attunement",value=true}}},nil}
c["Passives in radius of Resolute Technique can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="resolute technique"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="resolute technique",value=true}}},nil}
c["Passives in radius of Resonance can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="resonance"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="resonance",value=true}}},nil}
+c["Passives in radius of Ritual Cadence can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="ritual cadence"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="ritual cadence",value=true}}},nil}
c["Passives in radius of Trusted Kinship can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="trusted kinship"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="trusted kinship",value=true}}},nil}
c["Passives in radius of Unwavering Stance can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="unwavering stance"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="unwavering stance",value=true}}},nil}
c["Passives in radius of Vaal Pact can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="vaal pact"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="vaal pact",value=true}}},nil}
+c["Passives in radius of Walker of the Wilds can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="walker of the wilds"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="walker of the wilds",value=true}}},nil}
c["Passives in radius of Whispers of Doom can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="whispers of doom"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="whispers of doom",value=true}}},nil}
c["Passives in radius of Zealot's Oath can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="zealot's oath"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="zealot's oath",value=true}}},nil}
c["Permanently Intimidate enemies on Block"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Intimidated",type="FLAG",value=true}}}},nil}
c["Persistent Buffs have 50% less Reservation"]={{[1]={[1]={skillType=139,type="SkillType"},[2]={skillType=5,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-50}},nil}
-c["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionAddsToPdr",type="FLAG",value=true}},nil}
+c["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionAppliesToPhysicalDamageTaken",type="BASE",value=100}},nil}
c["Physical Damage is Pinning"]={nil,"Physical Damage is Pinning "}
+c["Physical Spell Critical Hits build Pin"]={nil,"Physical Spell Critical Hits build Pin "}
c["Pin Enemies which are Primed for Pinning"]={nil,"Pin Enemies which are Primed for Pinning "}
+c["Pinned Enemies cannot deal Critical Hits"]={nil,"Pinned Enemies cannot deal Critical Hits "}
c["Pinned enemies cannot perform actions"]={nil,"Pinned enemies cannot perform actions "}
c["Possessed by Spirit Of The Bear for 20 seconds on use"]={nil,"Possessed by Spirit Of The Bear for 20 seconds on use "}
c["Possessed by Spirit Of The Bear for 20 seconds on use Possessed by Spirit Of The Boar for 20 seconds on use"]={nil,"Possessed by Spirit Of The Bear for 20 seconds on use Possessed by Spirit Of The Boar for 20 seconds on use "}
@@ -4465,13 +5373,19 @@ c["Possessed by Spirit Of The Stag for 20 seconds on use Possessed by Spirit Of
c["Possessed by Spirit Of The Wolf for 20 seconds on use"]={nil,"Possessed by Spirit Of The Wolf for 20 seconds on use "}
c["Presence Gain 50% of Damage as Fire Damage"]={nil,"Presence Gain 50% of Damage as Fire Damage "}
c["Presence Radius is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="PresenceRadiusDoubledLimit",type="Multiplier",var="PresenceRadiusDoubled"},flags=0,keywordFlags=0,name="PresenceRadius",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:PresenceRadiusDoubled",type="OVERRIDE",value=1}},nil}
+c["Prevent +15% of Damage from Deflected Critical Hits"]={nil,"Prevent +15% of Damage from Deflected Critical Hits "}
+c["Prevent +3% of Damage from Deflected Hits"]={nil,"Prevent +3% of Damage from Deflected Hits "}
+c["Prevent +6% of Damage from Deflected Hits"]={nil,"Prevent +6% of Damage from Deflected Hits "}
+c["Projectile Attacks have a 12% chance to fire two additional Projectiles while moving"]={nil,"Projectile Attacks have a 12% chance to fire two additional Projectiles while moving "}
c["Projectile Damage builds Pin"]={nil,"Projectile Damage builds Pin "}
+c["Projectile Damage builds Pin Pinned enemies cannot perform actions"]={nil,"Projectile Damage builds Pin Pinned enemies cannot perform actions "}
c["Projectiles Pierce all Ignited enemies"]={nil,"Projectiles Pierce all Ignited enemies "}
c["Projectiles Pierce all Ignited enemies Attacks Gain 10% of Damage as Extra Fire Damage"]={nil,"Projectiles Pierce all Ignited enemies Attacks Gain 10% of Damage as Extra Fire Damage "}
+c["Projectiles Pierce enemies with Fully Broken Armour"]={nil,"Projectiles Pierce enemies with Fully Broken Armour "}
c["Projectiles Split towards +2 targets"]={{[1]={flags=0,keywordFlags=0,name="SplitCount",type="BASE",value=2}},nil}
c["Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=0.2}},type="DistanceRamp"},flags=1028,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}
-c["Projectiles deal 12% increased Damage with Hits against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=12}},nil}
-c["Projectiles deal 12% increased Damage with Hits against Enemies within 2m"]={{[1]={[1]={threshold=20,type="MultiplierThreshold",upper=true,var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=12}},nil}
+c["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}
+c["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"]={{[1]={[1]={threshold=20,type="MultiplierThreshold",upper=true,var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}
c["Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0.2},[2]={[1]=70,[2]=0}},type="DistanceRamp"},flags=1028,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}
c["Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=25}},nil}
c["Projectiles deal 25% increased Damage with Hits against Enemies within 2m"]={{[1]={[1]={threshold=20,type="MultiplierThreshold",upper=true,var="enemyDistance"},flags=1024,keywordFlags=262144,name="Damage",type="INC",value=25}},nil}
@@ -4479,18 +5393,31 @@ c["Projectiles deal 75% increased Damage against Heavy Stunned Enemies"]={{[1]={
c["Projectiles from Spells cannot Pierce"]={{[1]={flags=2,keywordFlags=0,name="CannotPierce",type="FLAG",value=true}},nil}
c["Projectiles have 10% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=10}},nil}
c["Projectiles have 15% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=15}},nil}
+c["Projectiles have 15% increased Critical Hit Chance against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}
+c["Projectiles have 16% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=16}},nil}
c["Projectiles have 25% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=25}}," for an additional when Forking "}
c["Projectiles have 25% chance to Fork if you've dealt a Melee Hit in the past eight seconds"]={{}," to Fork "}
c["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}
+c["Projectiles have 30% increased Critical Damage Bonus against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=0,name="CritMultiplier",type="INC",value=30}},nil}
+c["Projectiles have 30% increased Critical Hit Chance against Enemies further than 6m"]={{[1]={[1]={threshold=60,type="MultiplierThreshold",var="enemyDistance"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}
c["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m"]={{[1]={[1]={threshold=20,type="MultiplierThreshold",upper=true,var="enemyDistance"},flags=1024,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil}
c["Projectiles have 5% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=5}},nil}
+c["Projectiles have 50% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for an additional when Forking "}
+c["Projectiles have 50% chance for an additional Projectile when Forking 25% increased Critical Damage Bonus"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for an additional when Forking 25% increased Critical Damage Bonus "}
c["Projectiles have 6% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=6}},nil}
c["Projectiles have 75% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=75}}," for an additional when Forking "}
c["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"]={nil,"Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge "}
+c["Rage you gain is also granted to Allies in your Presence"]={nil,"Rage you gain is also granted to "}
+c["Recoup 5% of damage taken by your Totems as Life"]={nil,"Recoup 5% of damage taken by your Totems as Life "}
+c["Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence"]={nil,"Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence "}
c["Recoup Effects instead occur over 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="4SecondRecoup",type="FLAG",value=true}},nil}
c["Recover 1% of maximum Life on Kill"]={{[1]={[1]={percent=1,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}
+c["Recover 1% of maximum Life per Glory consumed"]={nil,"Recover 1% of maximum Life per Glory consumed "}
+c["Recover 1% of maximum Mana on Kill"]={{[1]={[1]={percent=1,stat="Mana",type="PercentStat"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}
c["Recover 10% of Missing Life before being Hit by an Enemy"]={nil,"Recover 10% of Missing Life before being Hit by an Enemy "}
c["Recover 10% of Missing Life before being Hit by an Enemy Recover 20% of Missing Life before being Hit by an Enemy"]={nil,"Recover 10% of Missing Life before being Hit by an Enemy Recover 20% of Missing Life before being Hit by an Enemy "}
+c["Recover 10% of maximum Mana when a Charm is used"]={nil,"Recover 10% of maximum Mana when a Charm is used "}
+c["Recover 10% of maximum Mana when a Charm is used 25% increased Culling Strike Threshold"]={nil,"Recover 10% of maximum Mana when a Charm is used 25% increased Culling Strike Threshold "}
c["Recover 2% of maximum Life and Mana when you use a Warcry"]={nil,"Recover 2% of maximum Life and Mana when you use a Warcry "}
c["Recover 2% of maximum Life and Mana when you use a Warcry 24% increased Warcry Speed"]={nil,"Recover 2% of maximum Life and Mana when you use a Warcry 24% increased Warcry Speed "}
c["Recover 2% of maximum Life and Mana when you use a Warcry 24% increased Warcry Speed 18% increased Warcry Cooldown Recovery Rate"]={nil,"Recover 2% of maximum Life and Mana when you use a Warcry 24% increased Warcry Speed 18% increased Warcry Cooldown Recovery Rate "}
@@ -4503,25 +5430,33 @@ c["Recover 2% of maximum Life when you use a Mana Flask Mana Flasks gain 0.1 cha
c["Recover 2% of maximum Mana on Kill"]={{[1]={[1]={percent=2,stat="Mana",type="PercentStat"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}
c["Recover 20 Life when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=20}},nil}
c["Recover 20% of Missing Life before being Hit by an Enemy"]={nil,"Recover 20% of Missing Life before being Hit by an Enemy "}
-c["Recover 20% of maximum Life when you Heavy Stun a Rare or Unique Enemy"]={nil,"Recover 20% of maximum Life when you Heavy Stun a Rare or Unique Enemy "}
+c["Recover 3% of Maximum Life when you collect a Remnant"]={nil,"Recover 3% of Maximum Life when you collect a Remnant "}
+c["Recover 3% of Maximum Mana when you collect a Remnant"]={nil,"Recover 3% of Maximum Mana when you collect a Remnant "}
c["Recover 3% of maximum Life for each Endurance Charge consumed"]={nil,"Recover 3% of maximum Life for each Endurance Charge consumed "}
c["Recover 3% of maximum Life for each Endurance Charge consumed +1 to Maximum Endurance Charges"]={nil,"Recover 3% of maximum Life for each Endurance Charge consumed +1 to Maximum Endurance Charges "}
c["Recover 3% of maximum Life on Kill"]={{[1]={[1]={percent=3,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}
c["Recover 3% of maximum Life when you create an Offering"]={nil,"Recover 3% of maximum Life when you create an Offering "}
-c["Recover 3% of maximum Mana when you Invoke a Spell"]={nil,"Recover 3% of maximum Mana when you Invoke a Spell "}
-c["Recover 3% of maximum Mana when you Invoke a Spell Triggered Spells deal 45% increased Spell Damage"]={nil,"Recover 3% of maximum Mana when you Invoke a Spell Triggered Spells deal 45% increased Spell Damage "}
+c["Recover 3% of your maximum Life when an Enemy dies in your Presence"]={nil,"Recover 3% of your maximum Life when an Enemy dies in your Presence "}
+c["Recover 3% of your maximum Life when an Enemy dies in your Presence Gain Deflection Rating equal to 16% of Evasion Rating"]={nil,"Recover 3% of your maximum Life when an Enemy dies in your Presence Gain Deflection Rating equal to 16% of Evasion Rating "}
+c["Recover 3% of your maximum Mana when an Enemy dies in your Presence"]={nil,"Recover 3% of your maximum Mana when an Enemy dies in your Presence "}
+c["Recover 3% of your maximum Mana when an Enemy dies in your Presence 25% faster start of Energy Shield Recharge"]={nil,"Recover 3% of your maximum Mana when an Enemy dies in your Presence 25% faster start of Energy Shield Recharge "}
+c["Recover 4% of maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 4% of maximum Life on Killing a Poisoned Enemy "}
+c["Recover 4% of maximum Life on Killing a Poisoned Enemy 15% increased Skill Effect Duration"]={nil,"Recover 4% of maximum Life on Killing a Poisoned Enemy 15% increased Skill Effect Duration "}
c["Recover 4% of maximum Life when you Block"]={{[1]={[1]={percent=4,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=1}},nil}
c["Recover 5 Life when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=5}},nil}
c["Recover 5% of Missing Life before being Hit by an Enemy"]={nil,"Recover 5% of Missing Life before being Hit by an Enemy "}
c["Recover 5% of Missing Life before being Hit by an Enemy Recover 10% of Missing Life before being Hit by an Enemy"]={nil,"Recover 5% of Missing Life before being Hit by an Enemy Recover 10% of Missing Life before being Hit by an Enemy "}
c["Recover 5% of maximum Life for each Endurance Charge consumed"]={nil,"Recover 5% of maximum Life for each Endurance Charge consumed "}
-c["Recover 5% of maximum Life when you use a Life Flask while on Low Life"]={nil,"Recover 5% of maximum Life when you use a Life Flask while on Low Life "}
c["Recover 5% of maximum Mana when a Charm is used"]={nil,"Recover 5% of maximum Mana when a Charm is used "}
+c["Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy"]={nil,"Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy "}
c["Recover Life equal to 20% of Mana Flask's Recovery Amount when used"]={nil,"Recover Life equal to 20% of Mana Flask's Recovery Amount when used "}
c["Recover Life equal to 20% of Mana Flask's Recovery Amount when used Recover Mana equal to 20% of Life Flask's Recovery Amount when used"]={nil,"Recover Life equal to 20% of Mana Flask's Recovery Amount when used Recover Mana equal to 20% of Life Flask's Recovery Amount when used "}
c["Recover Mana equal to 20% of Life Flask's Recovery Amount when used"]={nil,"Recover Mana equal to 20% of Life Flask's Recovery Amount when used "}
c["Recover all Mana when Used"]={nil,"Recover all Mana when Used "}
c["Recover all Mana when Used Deals 25% of current Mana as Chaos Damage to you when Effect ends"]={nil,"Recover all Mana when Used Deals 25% of current Mana as Chaos Damage to you when Effect ends "}
+c["Red: Hits against you have no Critical Damage Bonus"]={nil,"Red: Hits have no Critical Damage Bonus "}
+c["Red: Hits against you have no Critical Damage Bonus Blue: Skills have 30% less cost"]={nil,"Red: Hits have no Critical Damage Bonus Blue: Skills have 30% less cost "}
+c["Red: Hits against you have no Critical Damage Bonus Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving"]={nil,"Red: Hits have no Critical Damage Bonus Blue: Skills have 30% less cost Green: 40% less Movement Speed Penalty from using Skills while Moving "}
c["Reflects opposite Ring"]={{},nil}
c["Regenerate (0.7-1.2)% of Life per second"]={nil,"Regenerate (0.7-1.2)% of Life per second "}
c["Regenerate 0.05 Life per second per Maximum Energy Shield"]={{[1]={[1]={div=1,stat="MaximumEnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=0.05}},nil}
@@ -4530,12 +5465,17 @@ c["Regenerate 0.4% of maximum Life per second if you have been Hit Recently"]={{
c["Regenerate 0.5% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}
c["Regenerate 0.75% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.75}},nil}
c["Regenerate 1% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}
+c["Regenerate 1% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}
c["Regenerate 1% of maximum Life per second while affected by any Damaging Ailment"]={{[1]={[1]={type="Condition",varList={[1]="Poisoned",[2]="Ignited",[3]="Bleeding"}},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}
c["Regenerate 1% of maximum Life per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}
c["Regenerate 1% of maximum Life per second while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}
c["Regenerate 1.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}
+c["Regenerate 1.5% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}
c["Regenerate 1.5% of maximum Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}
+c["Regenerate 1.5% of maximum Life per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}
c["Regenerate 2.5% of maximum Life per second while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.5}},nil}
+c["Regenerate 3% of maximum Life over 1 second when Stunned"]={nil,"Regenerate 3% of maximum Life over 1 second when Stunned "}
+c["Regenerate 3% of maximum Life over 1 second when Stunned +1 to Stun Threshold per Dexterity"]={nil,"Regenerate 3% of maximum Life over 1 second when Stunned +1 to Stun Threshold per Dexterity "}
c["Regenerate 3% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}
c["Regenerate 3% of maximum Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}
c["Regenerate 5 Rage per second"]={{[1]={flags=0,keywordFlags=0,name="RageRegen",type="BASE",value=5}},nil}
@@ -4546,6 +5486,12 @@ c["Remembrancing 4050 songworthy deeds by the line of Olroth"]={{[1]={flags=0,ke
c["Remembrancing 8000 songworthy deeds by the line of Medved"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=2,type="kalguur"},id=8000}}}},nil}
c["Remembrancing 8000 songworthy deeds by the line of Olroth"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=3,type="kalguur"},id=8000}}}},nil}
c["Remembrancing 8000 songworthy deeds by the line of Vorana"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=1,type="kalguur"},id=8000}}}},nil}
+c["Remnants can be collected from 10% further away"]={nil,"Remnants can be collected from 10% further away "}
+c["Remnants can be collected from 15% further away"]={nil,"Remnants can be collected from 15% further away "}
+c["Remnants can be collected from 30% further away"]={nil,"Remnants can be collected from 30% further away "}
+c["Remnants have 10% increased effect"]={nil,"Remnants have 10% increased effect "}
+c["Remnants you create reappear once, 3 seconds after being collected"]={nil,"Remnants you create reappear once, 3 seconds after being collected "}
+c["Remove Ignite when you Warcry"]={nil,"Remove Ignite when you Warcry "}
c["Remove a Curse when you use a Mana Flask"]={nil,"Remove a Curse when you use a Mana Flask "}
c["Reserves 25% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=25}},nil}
c["Reveal Weaknesses against Rare and Unique enemies"]={nil,"Reveal Weaknesses against Rare and Unique enemies "}
@@ -4554,20 +5500,25 @@ c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,t
c["Right ring slot: Projectiles from Spells cannot Fork"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil}
c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier "}
c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way "}
+c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice "}
c["Rolls only the minimum or maximum Damage value for each Damage Type"]={nil,"Rolls only the minimum or maximum Damage value for each Damage Type "}
c["Sacrifice 15% of Life to gain that much Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="Life",type="BASE",value=15}}," to gain that much Energy Shield when you Cast a "}
c["Sacrifice 20% of Mana and they Leech that Mana"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," and they Leech that Mana "}
c["Sacrifice 300 Life to not consume the last bolt when firing"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=0,keywordFlags=0,name="Life",type="BASE",value=300}}," to not consume the last bolt when firing "}
+c["Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=5}}," when you Cast a "}
+c["Sacrificing Energy Shield does not interrupt Recharge"]={nil,"Sacrificing Energy Shield does not interrupt Recharge "}
+c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell "}
c["Share Charges with Allies in your Presence"]={nil,"Share Charges with "}
c["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"]={nil,"Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius "}
c["Shocks you when you reach maximum Power Charges"]={nil,"Shocks you when you reach maximum Power Charges "}
-c["Skill Gems have 30% more Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalGemAttributeRequirements",type="MORE",value=30}},nil}
+c["Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created"]={nil,"Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created "}
c["Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=100}},nil}
-c["Skills Consuming Frenzy Charges behave as if Consuming twice as many Frenzy Charges"]={nil,"Skills Consuming Frenzy Charges behave as if Consuming twice as many Frenzy Charges "}
c["Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostBase",type="BASE",value=3}},nil}
c["Skills Supported by Unleash have 10% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=10}},nil}
c["Skills Supported by Unleash have 25% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=25}},nil}
+c["Skills deal 8% increased Damage per Combo consumed, up to 40%"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}," per Combo consumed, up to 40% "}
c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}
+c["Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence"]={{}," Glory every 2 seconds for each Rare or Unique monster in your Presence "}
c["Skills gain 1% of Damage as Chaos Damage per 3 Life Cost"]={{[1]={[1]={div=3,stat="LifeCost",type="PerStat"},flags=0,keywordFlags=0,name="DamageAsChaos",type="BASE",value=1}},nil}
c["Skills gain 20% increased Critical Hit Chance per socketed blue Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillCritChanceIncreasedPerBlueSupport",type="FLAG",value=20}},nil}
c["Skills gain 20% increased Damage per socketed red Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillDamageIncreasedPerRedSupport",type="FLAG",value=20}},nil}
@@ -4579,33 +5530,39 @@ c["Skills have +1 to Limit"]={{}," Limit "}
c["Skills have -1 seconds to Cooldown"]={{}," seconds to Cooldown "}
c["Skills have -2 seconds to Cooldown"]={{}," seconds to Cooldown "}
c["Skills have -2 seconds to Cooldown Skills have -1 seconds to Cooldown"]={{}," seconds to Cooldown Skills have -1 seconds to Cooldown "}
+c["Skills have 10% chance to not remove Charges but still count as consuming them"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=10}}," to not remove but still count as consuming them "}
+c["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"]={{}," to not remove Elemental Infusions but still count as consuming them "}
c["Skills have 33% chance to not consume a Cooldown when used"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownChanceNotConsume",type="BASE",value=0.33}},nil}
+c["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]={{}," to not remove Elemental Infusions but still count as consuming them "}
c["Skills have a 125% longer Perfect Timing window"]={{[1]={flags=0,keywordFlags=0,name="PerfectTiming",type="INC",value=125}},nil}
+c["Skills have a 15% chance to not consume Glory"]={nil,"a 15% chance to not consume Glory "}
c["Skills have a 150% longer Perfect Timing window"]={{[1]={flags=0,keywordFlags=0,name="PerfectTiming",type="INC",value=150}},nil}
+c["Skills have a 5% chance to not consume Glory"]={nil,"a 5% chance to not consume Glory "}
c["Skills reserve 50% less Spirit"]={{[1]={flags=0,keywordFlags=0,name="SpiritReserved",type="MORE",value=-50}},nil}
-c["Skills that would Summon a Totem have 20% chance to Summon two Totems instead"]={nil,"Skills that would Summon a Totem have 20% chance to Summon two Totems instead "}
c["Skills used by Totems have 30% more Skill Speed"]={{[1]={flags=0,keywordFlags=16384,name="Speed",type="MORE",value=30},[2]={flags=0,keywordFlags=16384,name="WarcrySpeed",type="MORE",value=30}},nil}
-c["Slam Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=92,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}
+c["Slam Skills have 8% increased Area of Effect"]={{[1]={[1]={skillType=92,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}
c["Slam Skills you use yourself cause Aftershocks"]={nil,"Slam Skills you use yourself cause Aftershocks "}
c["Sorcery Ward recovers 50% faster"]={nil,"recovers 50% faster "}
c["Soul Eater"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil}
c["Spell Skills have 10% reduced Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=-10}},nil}
-c["Spell Skills have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=20}},nil}
-c["Spell Skills have 30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=30}},nil}
-c["Spell Skills have 5% reduced Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=-5}},nil}
-c["Spell Skills have 8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=8}},nil}
-c["Spells Cast by Totems have 2% increased Cast Speed per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=18,keywordFlags=16384,name="Speed",type="INC",value=2}},nil}
+c["Spell Skills have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=15}},nil}
+c["Spell Skills have 25% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=25}},nil}
+c["Spell Skills have 6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=6}},nil}
+c["Spells Cast by Totems have 3% increased Cast Speed per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=18,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}
c["Spells Cast by Totems have 4% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=4}},nil}
+c["Spells consume a Power Charge if able to deal 40% more Damage"]={nil,"Spells consume a Power Charge if able to deal 40% more Damage "}
+c["Spells deal 30% more Damage when Sacrificing Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}}," when Sacrificing Energy Shield "}
+c["Spells deal 30% more Damage when Sacrificing Energy Shield Sacrificing Energy Shield does not interrupt Recharge"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}}," when Sacrificing Energy Shield Sacrificing Energy Shield does not interrupt Recharge "}
+c["Spells deal 30% more Damage when Sacrificing Energy Shield Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}}," when Sacrificing Energy Shield Sacrificing Energy Shield does not interrupt Recharge5% of maximum Energy Shield when you Cast a "}
c["Spells fire 4 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}},nil}
c["Spells fire Projectiles in a circle"]={nil,"Projectiles in a circle "}
c["Spells have a 25% chance to inflict Withered for 4 seconds on Hit"]={{}," to inflict Withered "}
-c["Spending Energy Shield does not interrupt Recharge"]={nil,"Spending Energy Shield does not interrupt Recharge "}
c["Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills"]={nil,"Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills "}
c["Strength's inherent bonus is 1% increased Energy Shield per 2 Strength instead"]={{[1]={[1]={div="2",stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}
c["Strikes deal Splash damage to targets within 1.5 metres"]={nil,"Strikes deal Splash damage to targets within 1.5 metres "}
c["Strikes deal Splash damage to targets within 1.5 metres 172% increased Physical Damage"]={nil,"Strikes deal Splash damage to targets within 1.5 metres 172% increased Physical Damage "}
c["Strikes deal Splash damage to targets within 1.5 metres Adds 35 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},"Strikes deal Splash to targets within 1.5 metres "}
-c["Strikes deal Splash damage to targets within 1.5 metres Adds 62 to 94 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=62},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}},"Strikes deal Splash to targets within 1.5 metres "}
+c["Strikes deal Splash damage to targets within 1.5 metres Adds 85 to 131 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=131}},"Strikes deal Splash to targets within 1.5 metres "}
c["Strikes deal Splash damage to targets within 1.5 metres Knocks Back Enemies on Hit"]={nil,"Strikes deal Splash damage to targets within 1.5 metres Knocks Back Enemies on Hit "}
c["Stun Threshold is based on 30% of your Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="StunThresholdBasedOnEnergyShieldInsteadOfLife",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="StunThresholdEnergyShieldPercent",type="BASE",value=30}},nil}
c["Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack"]={nil,"Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack "}
@@ -4619,18 +5576,31 @@ c["Take 30% less Damage from Hits Take 30% less Damage over time"]={{[1]={flags=
c["Take 30% less Damage from Hits while Dodge Rolling"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}}," from Hits while Dodge Rolling "}
c["Take 30% less Damage over time"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}},nil}
c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second "}
-c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second Take 50% more Damage over Time if you've haven't started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second Take 50% more Damage over Time if you've haven't started taking Damage over Time in the past second "}
-c["Take 50% more Damage over Time if you've haven't started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=50}}," if you've haven't started taking Damage over Time in the past second "}
+c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second "}
+c["Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=50}}," if you haven't started taking Damage over Time in the past second "}
c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum"]={nil,"maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum "}
c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame "}
-c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 50% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
+c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "}
+c["Take no Damage from Volatility"]={nil,"no Damage from Volatility "}
c["Take no Extra Damage from Critical Hits"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}},nil}
c["Targets can be affected by +1 of your Poisons at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="PoisonStacks",type="BASE",value=1}},nil}
c["Targets can be affected by two of your Chills at the same time"]={{[1]={flags=0,keywordFlags=0,name="ChillCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChillStacksMax",type="OVERRIDE",value=2}},nil}
c["Targets can be affected by two of your Shocks at the same time"]={{[1]={flags=0,keywordFlags=0,name="ShockCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ShockStacksMax",type="OVERRIDE",value=2}},nil}
+c["Temporary Minion Skills have +2 to Limit of Minions summoned"]={nil,"Temporary Minion Skills have +2 to Limit of Minions summoned "}
c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil}
c["The most Damaging Poison on Enemies you Kill is Spread to other Enemies within 1.5 metres"]={nil,"The most Damaging Poison on Enemies you Kill is Spread to other Enemies within 1.5 metres "}
+c["There is no Limit on the number of Banners you can place"]={nil,"There is no Limit on the number of Banners you can place "}
c["This Weapon's Critical Hit Chance is 100%"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="CritChance",value=100}}},nil}
+c["This item gains bonuses from Socketed Items as though it was Boots"]={nil,"This item gains bonuses from Socketed Items as though it was Boots "}
+c["This item gains bonuses from Socketed Items as though it was Boots This item gains bonuses from Socketed Items as though it was Gloves"]={nil,"This item gains bonuses from Socketed Items as though it was Boots This item gains bonuses from Socketed Items as though it was Gloves "}
+c["This item gains bonuses from Socketed Items as though it was Gloves"]={nil,"This item gains bonuses from Socketed Items as though it was Gloves "}
+c["This item gains bonuses from Socketed Items as though it was Gloves This item gains bonuses from Socketed Items as though it was a Helmet"]={nil,"This item gains bonuses from Socketed Items as though it was Gloves This item gains bonuses from Socketed Items as though it was a Helmet "}
+c["This item gains bonuses from Socketed Items as though it was a Body Armour"]={nil,"This item gains bonuses from Socketed Items as though it was a Body Armour "}
+c["This item gains bonuses from Socketed Items as though it was a Body Armour This item gains bonuses from Socketed Items as though it was Boots"]={nil,"This item gains bonuses from Socketed Items as though it was a Body Armour This item gains bonuses from Socketed Items as though it was Boots "}
+c["This item gains bonuses from Socketed Items as though it was a Helmet"]={nil,"This item gains bonuses from Socketed Items as though it was a Helmet "}
+c["This item gains bonuses from Socketed Items as though it was a Helmet This item gains bonuses from Socketed Items as though it was a Shield"]={nil,"This item gains bonuses from Socketed Items as though it was a Helmet This item gains bonuses from Socketed Items as though it was a Shield "}
+c["This item gains bonuses from Socketed Items as though it was a Shield"]={nil,"This item gains bonuses from Socketed Items as though it was a Shield "}
+c["This item gains bonuses from Socketed Items as though it was a Shield 100% increased effect of Socketed Items"]={nil,"This item gains bonuses from Socketed Items as though it was a Shield 100% increased effect of Socketed Items "}
c["Thorns Damage has 25% chance to ignore Enemy Armour"]={nil,"Thorns Damage has 25% chance to ignore Enemy Armour "}
c["Thorns Damage has 50% chance to ignore Enemy Armour"]={nil,"Thorns Damage has 50% chance to ignore Enemy Armour "}
c["Thorns can Retaliate against all Hits"]={nil,"Thorns can Retaliate against all Hits "}
@@ -4640,7 +5610,8 @@ c["Totems gain +20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0
c["Totems have 12% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=16384,name="PhysicalDamageReduction",type="BASE",value=12}},nil}
c["Totems have 20% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=16384,name="PhysicalDamageReduction",type="BASE",value=20}},nil}
c["Totems only use Skills when you fire an Attack Projectile"]={nil,"Totems only use Skills when you fire an Attack Projectile "}
-c["Totems reserve 100 Spirit each"]={nil,"Totems reserve 100 Spirit each "}
+c["Totems reserve 75 Spirit each"]={nil,"Totems reserve 75 Spirit each "}
+c["Totems you place grant Embankment Auras"]={nil,"Totems you place grant Embankment Auras "}
c["Trigger Ancestral Spirits when you Summon a Totem"]={{},nil}
c["Trigger Decompose Skill on Step"]={nil,"Trigger Decompose Skill on Step "}
c["Trigger Elemental Expression on Melee Critical Hit"]={nil,"Trigger Elemental Expression on Melee Critical Hit "}
@@ -4653,16 +5624,15 @@ c["Trigger Spark Skill on killing a Shocked Enemy"]={nil,"Trigger Spark Skill on
c["Trigger skills refund half of Energy spent"]={nil,"Trigger skills refund half of Energy spent "}
c["Triggered Spells deal 14% increased Spell Damage"]={{[1]={[1]={skillType=37,type="SkillType"},flags=2,keywordFlags=131072,name="Damage",type="INC",value=14}},nil}
c["Triggered Spells deal 16% increased Spell Damage"]={{[1]={[1]={skillType=37,type="SkillType"},flags=2,keywordFlags=131072,name="Damage",type="INC",value=16}},nil}
-c["Triggered Spells deal 45% increased Spell Damage"]={{[1]={[1]={skillType=37,type="SkillType"},flags=2,keywordFlags=131072,name="Damage",type="INC",value=45}},nil}
+c["Triggered Spells deal 40% increased Spell Damage"]={{[1]={[1]={skillType=37,type="SkillType"},flags=2,keywordFlags=131072,name="Damage",type="INC",value=40}},nil}
c["Triple Attribute requirements of Martial Weapons"]={{[1]={flags=0,keywordFlags=0,name="GlobalWeaponAttributeRequirements",type="MORE",value=200}},nil}
c["Unaffected by Chill during Dodge Roll"]={nil,"Unaffected by Chill during Dodge Roll "}
c["Unaffected by Chill while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="SelfChillEffect",type="MORE",value=-100}},nil}
-c["Undead Minions have 20% reduced Reservation"]={{[1]={[1]={skillType=127,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="INC",value=-20}},nil}
c["Unlimited number of Summoned Totems"]={nil,"Unlimited number of Summoned Totems "}
-c["Unlimited number of Summoned Totems Totems reserve 100 Spirit each"]={nil,"Unlimited number of Summoned Totems Totems reserve 100 Spirit each "}
+c["Unlimited number of Summoned Totems Totems reserve 75 Spirit each"]={nil,"Unlimited number of Summoned Totems Totems reserve 75 Spirit each "}
c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil}
c["Unwithered enemies are Withered for 8 seconds when they enter your Presence"]={nil,"Unwithered enemies are Withered for 8 seconds when they enter your Presence "}
-c["Unwithered enemies are Withered for 8 seconds when they enter your Presence 20% increased Effect of Withered"]={nil,"Unwithered enemies are Withered for 8 seconds when they enter your Presence 20% increased Effect of Withered "}
+c["Unwithered enemies are Withered for 8 seconds when they enter your Presence 20% increased Withered Magnitude"]={nil,"Unwithered enemies are Withered for 8 seconds when they enter your Presence 20% increased Withered Magnitude "}
c["Used when you Kill a Rare or Unique Enemy"]={nil,"Used when you Kill a Rare or Unique Enemy "}
c["Used when you Kill a Rare or Unique Enemy Possessed by Spirit Of The Bear for 20 seconds on use"]={nil,"Used when you Kill a Rare or Unique Enemy Possessed by Spirit Of The Bear for 20 seconds on use "}
c["Used when you are affected by a Slow"]={nil,"Used when you are affected by a Slow "}
@@ -4678,7 +5648,8 @@ c["Used when you become Shocked 20% increased Duration"]={nil,"Used when you bec
c["Used when you become Stunned"]={nil,"Used when you become Stunned "}
c["Used when you become Stunned Defend with 200% of Armour during effect"]={nil,"Used when you become Stunned Defend with 200% of Armour during effect "}
c["Used when you start Bleeding"]={nil,"Used when you start Bleeding "}
-c["Used when you start Bleeding Creates Consecrated Ground on use"]={nil,"Used when you start Bleeding Creates Consecrated Ground on use "}
+c["Used when you start Bleeding Gains 0 Charges per Second"]={nil,"Used when you start Bleeding Gains 0 Charges per Second "}
+c["Used when you start Bleeding Gains 0.2 Charges per Second"]={nil,"Used when you start Bleeding Gains 0.2 Charges per Second "}
c["Used when you take Chaos damage from a Hit"]={nil,"Used when you take Chaos damage from a Hit "}
c["Used when you take Chaos damage from a Hit 25% increased Duration"]={nil,"Used when you take Chaos damage from a Hit 25% increased Duration "}
c["Used when you take Cold damage from a Hit"]={nil,"Used when you take Cold damage from a Hit "}
@@ -4687,39 +5658,57 @@ c["Used when you take Fire damage from a Hit"]={nil,"Used when you take Fire dam
c["Used when you take Fire damage from a Hit 40% increased Charges"]={nil,"Used when you take Fire damage from a Hit 40% increased Charges "}
c["Used when you take Lightning damage from a Hit"]={nil,"Used when you take Lightning damage from a Hit "}
c["Used when you take Lightning damage from a Hit 40% increased Charges gained"]={nil,"Used when you take Lightning damage from a Hit 40% increased Charges gained "}
+c["Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded"]={nil,"Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded "}
+c["Warcries Debilitate Enemies"]={nil,"Warcries Debilitate Enemies "}
+c["Warcries Debilitate Enemies Warcry Skills have 25% increased Area of Effect"]={nil,"Warcries Debilitate Enemies Warcry Skills have 25% increased Area of Effect "}
c["Warcries Empower an additional Attack"]={nil,"Warcries Empower an additional Attack "}
c["Warcries Explode Corpses dealing 10% of their Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
c["Warcries Explode Corpses dealing 25% of their Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil}
+c["Warcries have 15% chance to Empower 3 additional Attacks"]={nil,"Warcries have 15% chance to Empower 3 additional Attacks "}
+c["Warcries have a minimum of 10 Power"]={{[1]={flags=0,keywordFlags=0,name="MinimumWarcryPower",type="BASE",value=10}},nil}
c["Warcry Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}
c["Warcry Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}
+c["When a Banner expires, recover 15% of the Glory required for that Banner"]={nil,"When a Banner expires, recover 15% of the Glory required for that Banner "}
c["When a Party Member in your Presence Casts a Spell, you"]={nil,"When a Party Member in your Presence Casts a Spell, you "}
c["When a Party Member in your Presence Casts a Spell, you Sacrifice 20% of Mana and they Leech that Mana"]={nil,"When a Party Member in your Presence Casts a Spell, you Sacrifice 20% of Mana and they Leech that Mana "}
-c["When you Consume a Charge Trigger Chaotic Infusion to gain 2 Chaos Infusion"]={nil,"When you Consume a Charge Trigger Chaotic Infusion to gain 2 Chaos Infusion "}
-c["When you Consume a Charge Trigger Chaotic Infusion to gain 2 Chaos Infusion Life Leech recovers based on your Chaos damage instead of Physical damage"]={nil,"When you Consume a Charge Trigger Chaotic Infusion to gain 2 Chaos Infusion Life Leech recovers based on your Chaos damage instead of Physical damage "}
-c["When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion"]={nil,"When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion "}
-c["When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon"]={nil,"When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon "}
-c["When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion"]={nil,"When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion "}
-c["When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion"]={nil,"When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion "}
-c["When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion"]={nil,"When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion "}
-c["When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon"]={nil,"When you Consume a Power Charge Trigger Infuse Weapon to gain 2 Cold Infusion When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon "}
-c["When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion"]={nil,"When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion "}
-c["When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion"]={nil,"When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion "}
-c["When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon"]={nil,"When you Consume an Endurance Charge Trigger Infuse Weapon to gain 2 Fire Infusion When you Consume a Frenzy Charge Trigger Infuse Weapon to gain 2 Lightning Infusion Grants Skill: Infuse Weapon "}
+c["When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges"]={nil,"When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges "}
+c["When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges Life Leech recovers based on your Chaos damage instead of Physical damage"]={nil,"When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges Life Leech recovers based on your Chaos damage instead of Physical damage "}
+c["When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges"]={nil,"When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges "}
+c["When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge"]={nil,"When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge "}
+c["When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges"]={nil,"When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges "}
+c["When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges"]={nil,"When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges "}
+c["When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges"]={nil,"When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges "}
+c["When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge"]={nil,"When you Consume a Power Charge Trigger Elemental Surge to gain 3 Cold Surges When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge "}
+c["When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges"]={nil,"When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges "}
+c["When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges"]={nil,"When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges "}
+c["When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge"]={nil,"When you Consume an Endurance Charge Trigger Elemental Surge to gain 3 Fire Surges When you Consume a Frenzy Charge Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge "}
c["When you Kill a Rare monster, you gain its Modifiers for 60 seconds"]={nil,"When you Kill a Rare monster, you gain its Modifiers for 60 seconds "}
c["When you Leech Life from a Hit, Allies in your Presence also Leech the same amount of Life"]={nil,"When you Leech Life from a Hit, also Leech the same amount of Life "}
-c["When you leave your Banner's Area, recover 15% of the Valour consumed for that Banner"]={nil,"When you leave your Banner's Area, recover 15% of the Valour consumed for that Banner "}
+c["When you reload, triggers Gemini Surge to alternately"]={nil,"When you reload, triggers Gemini Surge to alternately "}
+c["When you reload, triggers Gemini Surge to alternately gain 6 Cold Surges or 6 Fire Surges"]={nil,"When you reload, triggers Gemini Surge to alternately gain 6 Cold Surges or 6 Fire Surges "}
c["While not on Full Life, Sacrifice 1% of Mana per Second to Recover that much Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=1},[2]={[1]={percent=1,stat="Mana",type="PercentStat"},[2]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="LifeRecovery",type="BASE",value=1}},nil}
c["While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=10},[2]={[1]={percent=10,stat="Mana",type="PercentStat"},[2]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="LifeRecovery",type="BASE",value=1}},nil}
c["While on High Infernal Flame, you and Allies in your"]={nil,"While on High Infernal Flame, you and Allies in your "}
c["While on High Infernal Flame, you and Allies in your Presence Gain 50% of Damage as Fire Damage"]={nil,"While on High Infernal Flame, you and 50% of Damage as Fire Damage "}
c["While you are not on Low Mana, you and Allies in your Presence have Unholy Might"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil}
+c["Withered you inflict has infinite Duration"]={nil,"Withered you inflict has infinite Duration "}
+c["You and Allies in your Presence have +23% to Chaos Resistance"]={nil,"+23% to Chaos Resistance "}
+c["You and Allies in your Presence have +23% to Chaos Resistance You and Allies in your Presence have 10% increased Cooldown Recovery Rate"]={nil,"+23% to Chaos Resistance You and Allies in your Presence have 10% increased Cooldown Recovery Rate "}
+c["You and Allies in your Presence have 10% increased Cooldown Recovery Rate"]={nil,"10% increased Cooldown Recovery Rate "}
+c["You and Allies in your Presence have 10% increased Cooldown Recovery Rate 30% increased Accuracy Rating against Enemies affected by Abyssal Wasting"]={nil,"10% increased Cooldown Recovery Rate 30% increased Accuracy Rating against Enemies affected by Abyssal Wasting "}
+c["You and Allies in your Presence have 12% increased Attack Speed"]={nil,"12% increased Attack Speed "}
+c["You and Allies in your Presence have 12% increased Cast Speed"]={nil,"12% increased Cast Speed "}
+c["You and Allies in your Presence have 12% increased Cast Speed 30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting"]={nil,"12% increased Cast Speed 30% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting "}
+c["You and Allies in your Presence have 28% increased Accuracy Rating"]={nil,"28% increased Accuracy Rating "}
+c["You and Allies in your Presence have 28% increased Accuracy Rating You and Allies in your Presence have 12% increased Attack Speed"]={nil,"28% increased Accuracy Rating You and Allies in your Presence have 12% increased Attack Speed "}
c["You are Blind"]={{[1]={[1]={neg=true,type="Condition",var="CannotBeBlinded"},flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}},nil}
c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil}
c["You are considered on Low Life while at 75% of maximum Life or below instead"]={{[1]={flags=0,keywordFlags=0,name="LowLifePercentage",type="BASE",value=0.75}},nil}
c["You can Break Enemy Armour to below 0"]={{[1]={[1]={effectName="ImplodingImpacts",effectType="Buff",type="GlobalEffect"},flags=0,keywordFlags=0,name="Condition:CanArmourBreakBelowZero",type="FLAG",value=true}},nil}
+c["You can Socket an additional copy of each Lineage Support Gem, in different Skills"]={nil,"You can Socket an additional copy of each Lineage Support Gem, in different Skills "}
c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}
-c["You can apply an additional Mark"]={{[1]={flags=0,keywordFlags=0,name="EnemyMarkLimit",type="BASE",value=1}},nil}
c["You can have two Companions of different types"]={nil,"You can have two Companions of different types "}
+c["You can have two Companions of different types 60% reduced Duration of Bleeding on You"]={nil,"You can have two Companions of different types 60% reduced Duration of Bleeding on You "}
c["You can have two Companions of different types You have 30% less Defences"]={nil,"You can have two Companions of different types You have 30% less Defences "}
c["You can have two Companions of different types You have 30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have"]={nil,"You can have two Companions of different types You have 30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have "}
c["You can only Socket Emerald Jewels in this item"]={nil,"You can only Socket Emerald Jewels in this item "}
@@ -4727,10 +5716,8 @@ c["You can only Socket Emerald Jewels in this item You can only Socket Ruby Jewe
c["You can only Socket Ruby Jewels in this item"]={nil,"You can only Socket Ruby Jewels in this item "}
c["You can only Socket Ruby Jewels in this item You can only Socket Sapphire Jewels in this item"]={nil,"You can only Socket Ruby Jewels in this item You can only Socket Sapphire Jewels in this item "}
c["You can only Socket Sapphire Jewels in this item"]={nil,"You can only Socket Sapphire Jewels in this item "}
-c["You can use each type of Support Gem an additional time in different Skills"]={{[1]={flags=0,keywordFlags=0,name="MaxSupportGemCopies",type="OVERRIDE",value=2}},nil}
c["You can wield Two-Handed Axes, Maces and Swords in one hand"]={{[1]={flags=0,keywordFlags=0,name="GiantsBlood",type="FLAG",value=true}},nil}
-c["You cannot Block"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil}
-c["You cannot Recharge Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="NoEnergyShieldRecharge",type="FLAG",value=true}},nil}
+c["You cannot Sprint"]={nil,"You cannot Sprint "}
c["You cannot be Chilled for 6 seconds after being Chilled"]={nil,"You cannot be Chilled for 6 seconds after being Chilled "}
c["You cannot be Chilled for 6 seconds after being Chilled You cannot be Frozen for 6 seconds after being Frozen"]={nil,"You cannot be Chilled for 6 seconds after being Chilled You cannot be Frozen for 6 seconds after being Frozen "}
c["You cannot be Chilled or Frozen"]={{[1]={flags=0,keywordFlags=0,name="ChillImmune",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil}
@@ -4738,6 +5725,7 @@ c["You cannot be Frozen for 6 seconds after being Frozen"]={nil,"You cannot be F
c["You cannot be Frozen for 6 seconds after being Frozen You cannot be Ignited for 6 seconds after being Ignited"]={nil,"You cannot be Frozen for 6 seconds after being Frozen You cannot be Ignited for 6 seconds after being Ignited "}
c["You cannot be Ignited for 6 seconds after being Ignited"]={nil,"You cannot be Ignited for 6 seconds after being Ignited "}
c["You cannot be Ignited for 6 seconds after being Ignited You cannot be Shocked for 6 seconds after being Shocked"]={nil,"You cannot be Ignited for 6 seconds after being Ignited You cannot be Shocked for 6 seconds after being Shocked "}
+c["You cannot be Light Stunned if you've been Stunned Recently"]={nil,"You cannot be Light Stunned if you've been Stunned Recently "}
c["You cannot be Shocked for 6 seconds after being Shocked"]={nil,"You cannot be Shocked for 6 seconds after being Shocked "}
c["You cannot be Shocked for 6 seconds after being Shocked Curses you inflict are reflected back to you"]={nil,"You cannot be Shocked for 6 seconds after being Shocked Curses you inflict are reflected back to you "}
c["You count as on Full Mana while at 90% of maximum Mana or above"]={{[1]={flags=0,keywordFlags=0,name="FullManaPercentage",type="BASE",value=0.9}},nil}
@@ -4748,39 +5736,56 @@ c["You have 30% less Defences"]={nil,"30% less Defences "}
c["You have 30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have"]={nil,"30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have "}
c["You have Arcane Surge"]={{[1]={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil}
c["You have Consecrated Ground around you while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Condition:OnConsecratedGround",type="FLAG",value=true}},nil}
+c["You have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil}
c["You have a Smoke Cloud around you while stationary"]={nil,"a Smoke Cloud around you "}
c["You have no Accuracy Penalty at Distance"]={{[1]={flags=0,keywordFlags=0,name="NoAccuracyDistancePenalty",type="FLAG",value=true}},nil}
c["You have no Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}
c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}
-c["You have no Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-100}},nil}
+c["You have no Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="OVERRIDE",value=0}},nil}
c["You have no Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="OVERRIDE",value=0}},nil}
c["You lose 5% of maximum Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldDegenPercent",type="BASE",value=5}},nil}
-c["You take 10% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=10}},nil}
+c["You take 18% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=18}},nil}
c["You take 20% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=20}},nil}
+c["You take 3% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=3}},nil}
+c["You take 33% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=33}},nil}
+c["You take 40% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=40}},nil}
c["You take 5% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=5}},nil}
c["You take 50% of Damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=50}},nil}
c["You take 50% of damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=50}},nil}
c["You take Fire Damage instead of Physical Damage from Bleeding"]={nil,"You take Fire Damage instead of Physical Damage from Bleeding "}
+c["Your Aura Buffs do not affect Allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil}
c["Your Chills can Slow targets by up to a maximum of 35%"]={{[1]={flags=0,keywordFlags=0,name="ChillMax",type="OVERRIDE",value=35}},nil}
-c["Your Critical Damage Bonus is 300%"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="OVERRIDE",value=300}},nil}
+c["Your Critical Damage Bonus is 250%"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="OVERRIDE",value=250}},nil}
c["Your Critical Hit Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}
c["Your Critical Hits do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}
-c["Your Curses can affect Hexproof Enemies"]={{[1]={[1]={type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil}
c["Your Curses have 20% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil}
-c["Your Curses have infinite Duration"]={{[1]={[1]={skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="BASE",value=math.huge}},nil}
c["Your Damage with Critical Hits is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritLucky",type="FLAG",value=true}},nil}
-c["Your Dexterity is added to your Minions"]={{[1]={flags=0,keywordFlags=0,name="DexterityAddedToMinions",type="FLAG",value=true}},nil}
+c["Your Energy Shield Recharge starts when your Minions are Reformed"]={nil,"Your Energy Shield Recharge starts when your Minions are Reformed "}
c["Your Heavy Stun buildup empties 50% faster"]={nil,"Your Heavy Stun buildup empties 50% faster "}
c["Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"]={nil,"Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently "}
c["Your Hits are Crushing Blows"]={nil,"Your Hits are Crushing Blows "}
c["Your Hits can Penetrate Elemental Resistances down to a minimum of -50%"]={{[1]={flags=0,keywordFlags=262144,name="ElementalPenetrationMinimum",type="BASE",value=-50}},nil}
-c["Your Hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}
+c["Your Hits cannot be Evaded by Heavy Stunned Enemies"]={nil,"Your Hits cannot be Evaded by Heavy Stunned Enemies "}
+c["Your Hits cannot be Evaded by Pinned Enemies"]={nil,"Your Hits cannot be Evaded by Pinned Enemies "}
+c["Your Life Flask also applies to your Minions"]={nil,"Your Life Flask also applies to your Minions "}
+c["Your Life Flask also applies to your Minions Minions cannot Die while affected by a Life Flask"]={nil,"Your Life Flask also applies to your Minions Minions cannot Die while affected by a Life Flask "}
c["Your Life cannot change while you have Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EternalLife",type="FLAG",value=true}},nil}
+c["Your Minions are Gigantic"]={nil,"Your Minions are Gigantic "}
+c["Your Offerings affect you instead of your Minions"]={nil,"Your Offerings affect you instead of your Minions "}
+c["Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={nil,"Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy "}
+c["Your Offerings can target Enemies in Culling range"]={nil,"Your Offerings can target Enemies in Culling range "}
+c["Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions"]={nil,"Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions "}
+c["Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={nil,"Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy "}
c["Your base Energy Shield Recharge Delay is 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeBase",type="OVERRIDE",value=10}},nil}
c["Your speed is unaffected by Slows"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedBySlows",type="FLAG",value=true}},nil}
+c["additional Elemental Infusion of the same type"]={nil,"additional Elemental Infusion of the same type "}
c["apply to Energy Shield Recharge Rate"]={nil,"apply to Energy Shield Recharge Rate "}
c["apply to Energy Shield Recharge Rate Gain 50% of Maximum Mana as Armour"]={nil,"apply to Energy Shield Recharge Rate Gain 50% of Maximum Mana as Armour "}
-c["for 4 seconds while Shield is raised"]={nil,"for 4 seconds while Shield is raised "}
+c["contributes to Flammability and Ignite Magnitudes"]={nil,"contributes to Flammability and Ignite Magnitudes "}
+c["every different Grenade fired in the past 8 seconds"]={nil,"every different Grenade fired in the past 8 seconds "}
+c["for 4 seconds, every 0.25 seconds while raised"]={nil,"for 4 seconds, every 0.25 seconds while raised "}
+c["gain 6 Cold Surges or 6 Fire Surges"]={{}," Cold Surges or 6 Fire Surges "}
+c["least 5 Red, Green and Blue Support Gems Socketed"]={nil,"least 5 Red, Green and Blue Support Gems Socketed "}
c["the enemy's Power for 6 seconds, up to a total of 500"]={nil,"the enemy's Power for 6 seconds, up to a total of 500 "}
c["the same damage to enemies within 1.8 metres"]={nil,"the same damage to enemies within 1.8 metres "}
c["until you take no Damage to Life for 5 seconds"]={nil,"until you take no Damage to Life for 5 seconds "}
@@ -4788,5 +5793,3 @@ c["your Ailments on them"]={nil,"your Ailments on them "}
c["your Ailments on them 30% reduced Duration of Ignite, Shock and Chill on Enemies"]={nil,"your Ailments on them 30% reduced Duration of Ignite, Shock and Chill on Enemies "}
c["your Ailments on them your Ailments on them"]={nil,"your Ailments on them your Ailments on them "}
c["your maximum Life as Physical damage per second"]={nil,"your maximum Life as Physical damage per second "}
-c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}
-c["your maximum number of Power Charges +1 to Maximum Power Charges"]={nil,"your maximum number of Power Charges +1 to Maximum Power Charges "}
diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua
index 29dcc9741d..aae3f884ac 100644
--- a/src/Data/ModCharm.lua
+++ b/src/Data/ModCharm.lua
@@ -23,34 +23,34 @@ return {
["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
- ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 6985 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 6985 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 6985 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
- ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 903 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
- ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 903 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
- ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 903 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
- ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 903 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
- ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 901 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 901 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 901 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 901 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 901 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 901 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 901 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 901 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
- ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 902 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 902 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 902 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 902 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 902 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 902 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 902 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 902 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
- ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Gain (44-66) Guard during Effect", statOrder = { 900 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
- ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Gain (85-128) Guard during Effect", statOrder = { 900 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
- ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Gain (148-200) Guard during Effect", statOrder = { 900 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
- ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Gain (205-260) Guard during Effect", statOrder = { 900 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
- ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Gain (265-350) Guard during Effect", statOrder = { 900 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
- ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Gain (355-500) Guard during Effect", statOrder = { 900 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 607 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 607 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 607 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 900 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 900 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 900 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 900 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 900 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 898 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 898 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 898 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 898 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 898 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 898 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 898 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 898 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2365392475, },
+ ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 899 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 899 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 899 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 899 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 899 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 899 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 899 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 899 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1120862500, },
+ ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 897 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 897 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 897 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 897 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 897 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
+ ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 897 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2676834156, },
}
\ No newline at end of file
diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua
index 1def5a22ee..aace4391d6 100644
--- a/src/Data/ModCorrupted.lua
+++ b/src/Data/ModCorrupted.lua
@@ -2,131 +2,131 @@
-- Item data (c) Grinding Gear Games
return {
- ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "onehand", "armour", "twohand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
- ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 949 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 966 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 950 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
- ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 867 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 869 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 871 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 9211 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, },
- ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2643 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2644 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2645 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4275 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, },
- ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6281 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default" }, weightVal = { 0 }, modTags = { "drop" }, tradeHash = 3175163625, },
- ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1500 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
- ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { "quiver", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2914 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, },
- ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2915 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, },
- ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4548 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, },
- ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "ring", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 964 }, level = 1, group = "LifeRegenerationRate", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, },
- ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1676 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 480796730, },
- ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1459 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1460 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 929 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 239953100, },
- ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHash = 970213192, },
- ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 4180 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHash = 4283407333, },
- ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4512 }, level = 1, group = "SlowEffect", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3650992555, },
- ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 9436 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, },
- ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6260 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1102738251, },
- ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6261 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2200293569, },
- ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6258 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 185580205, },
- ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-50)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 844 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(10-15)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 6883 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 548198834, },
- ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "warstaff", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Gain 1 Rage on Hit", statOrder = { 6989 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1725749947, },
- ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7044 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 2763429652, },
- ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 1964 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2301191210, },
- ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 943 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
- ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 941 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
- ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "onehand", "armour", "twohand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 947 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 861 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 863 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 865 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 9476 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, },
+ ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { "belt", "boots", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2602 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2603 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2604 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4259 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, },
+ ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6384 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHash = 3175163625, },
+ ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1483 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default" }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
+ ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { "quiver", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, },
+ ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2868 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, },
+ ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, },
+ ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "ring", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, },
+ ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "helmet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1655 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 480796730, },
+ ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1442 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1443 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default" }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 239953100, },
+ ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default" }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "quiver", "ring", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 4149 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHash = 4283407333, },
+ ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4519 }, level = 1, group = "SlowEffect", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3650992555, },
+ ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 9716 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "gloves", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, },
+ ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6359 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1102738251, },
+ ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6360 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2200293569, },
+ ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6356 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 185580205, },
+ ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-50)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 839 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 915 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% increased Stun Buildup", statOrder = { 981 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7022 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 548198834, },
+ ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "warstaff", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Gain 1 Rage on Hit", statOrder = { 7129 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "warstaff", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1725749947, },
+ ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7210 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default" }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 2763429652, },
+ ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 1933 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2301191210, },
+ ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default" }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 941 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
+ ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 939 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
+ ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 473429811, },
["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 293638271, },
- ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "quiver", "staff", "wand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "quiver", "staff", "wand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "quiver", "staff", "wand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "quiver", "staff", "wand", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "wand", "default" }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 878 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 891 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 889 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
["CorruptionChanceToPierce1"] = { type = "Corrupted", affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
- ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 8581 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, },
- ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 6624 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3429557654, },
- ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 9482 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "blue_herring" }, tradeHash = 721014846, },
- ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4832 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, },
- ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2638 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1436284579, },
- ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2920 }, level = 1, group = "WarcrySpeed", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, },
- ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectiveness", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1571 }, level = 1, group = "AreaOfEffect", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 280731498, },
+ ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 8825 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, },
+ ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 6749 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3429557654, },
+ ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 9763 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "blue_herring" }, tradeHash = 721014846, },
+ ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4864 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, },
+ ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2597 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1436284579, },
+ ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2873 }, level = 1, group = "WarcrySpeed", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, },
+ ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectiveness", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1554 }, level = 1, group = "AreaOfEffect", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 280731498, },
["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 101878827, },
- ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, },
- ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3377888098, },
- ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 5847 }, level = 1, group = "EnergyGeneration", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, },
- ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1620 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, },
+ ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, },
+ ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3377888098, },
+ ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 5919 }, level = 1, group = "EnergyGeneration", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, },
+ ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1599 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "helmet", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, },
}
\ No newline at end of file
diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua
index 1c58da88ad..e114cbce8e 100644
--- a/src/Data/ModFlask.lua
+++ b/src/Data/ModFlask.lua
@@ -23,61 +23,61 @@ return {
["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
- ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 6985 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 6985 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 6985 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
- ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 913 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 913 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 913 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 913 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 913 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
- ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 905 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 905 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 905 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 905 }, level = 45, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 905 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 905 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 905 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
- ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
- ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
- ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
- ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
- ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
- ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
- ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
- ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
- ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
- ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
- ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
- ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
- ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
- ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
- ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
- ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
- ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
- ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
- ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
- ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
- ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 912 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
- ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 912 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
- ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 912 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
- ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 905, 911 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 4131977470, },
- ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 910 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
- ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 910 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
- ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 910 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
- ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 910 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
- ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 910 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
- ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 658 }, level = 18, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, },
- ["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 = { 661, 661.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 182714578, },
- ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 671 }, level = 6, group = "FlaskShockImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3854439683, },
- ["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 = { 663, 663.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3869628136, },
- ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 665, 665.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2361218755, },
- ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 669 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 542375676, },
- ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 626, 745 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 188046746, },
- ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 626, 746 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4195389357, },
- ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 626, 744 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 650731684, },
- ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 626, 676, 676.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3238382707, },
- ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 626, 742 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3588165839, },
+ ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 607 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 607 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 607 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 910 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 910 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 910 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 910 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 910 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 910 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 902 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 902 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 902 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 902 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 902 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 902 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 902 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 902 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 903 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
+ ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 903 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
+ ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 903 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
+ ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 903 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
+ ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 903 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 886931978, },
+ ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 901 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
+ ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 901 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
+ ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 901 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
+ ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 901 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
+ ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 901 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3276224428, },
+ ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 905, 911 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
+ ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 905, 911 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
+ ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 905, 911 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
+ ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 905, 911 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
+ ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 905, 911 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2639206668, },
+ ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 906, 912 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
+ ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 906, 912 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
+ ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 906, 912 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
+ ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 906, 912 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
+ ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 906, 912 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 1058254507, },
+ ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 909 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
+ ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 909 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
+ ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 909 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2503377690, },
+ ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 902, 908 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 4131977470, },
+ ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 907 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
+ ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 907 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
+ ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 907 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
+ ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 907 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
+ ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 907 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHash = 2416869319, },
+ ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 653 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, },
+ ["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 = { 656, 656.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 182714578, },
+ ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 666 }, level = 6, group = "FlaskShockImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3854439683, },
+ ["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 = { 658, 658.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3869628136, },
+ ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 660, 660.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2361218755, },
+ ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 664 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 542375676, },
+ ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 620, 741 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 188046746, },
+ ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 620, 742 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 4195389357, },
+ ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 620, 740 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 650731684, },
+ ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 620, 671, 671.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3238382707, },
+ ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 620, 738 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3588165839, },
}
\ No newline at end of file
diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua
index ca1b38931b..56d225ef5c 100644
--- a/src/Data/ModItem.lua
+++ b/src/Data/ModItem.lua
@@ -2,432 +2,432 @@
-- Item data (c) Grinding Gear Games
return {
- ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 945 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 945 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 945 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 945 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 945 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 945 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 945 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 945 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 946 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 946 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 946 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 946 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 946 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 946 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 946 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 946 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 947 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 947 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 947 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 947 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 947 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 947 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 947 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 947 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 944 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 944 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 944 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 944 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 944 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 944 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 944 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 944 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 956 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 956 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 956 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 956 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 956 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 956 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 956 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 957 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 957 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 957 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 957 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 957 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 957 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 957 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 958 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 958 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 958 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 958 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 958 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 958 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 958 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 955 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 955 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 955 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 955 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 955 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 955 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 895 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 895 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 895 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 895 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 895 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 895 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
- ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 959 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 959 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 959 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 959 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 959 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 959 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 872 }, level = 5, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 872 }, level = 11, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 872 }, level = 18, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 872 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 872 }, level = 30, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 872 }, level = 36, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 872 }, level = 44, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 872 }, level = 56, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 872 }, level = 68, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 872 }, level = 74, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 872 }, level = 78, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 872 }, level = 82, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 873 }, level = 36, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 873 }, level = 61, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 873 }, level = 80, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 874 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 874 }, level = 12, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 874 }, level = 19, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 874 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 874 }, level = 31, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 874 }, level = 36, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 874 }, level = 43, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 874 }, level = 53, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 874 }, level = 63, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 874 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 874 }, level = 77, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 874 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(14-20) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(21-34) to maximum Mana", statOrder = { 874 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(35-48) to maximum Mana", statOrder = { 874 }, level = 12, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(49-76) to maximum Mana", statOrder = { 874 }, level = 19, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(77-90) to maximum Mana", statOrder = { 874 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(91-111) to maximum Mana", statOrder = { 874 }, level = 31, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(112-125) to maximum Mana", statOrder = { 874 }, level = 36, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(126-146) to maximum Mana", statOrder = { 874 }, level = 43, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(147-174) to maximum Mana", statOrder = { 874 }, level = 53, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(175-209) to maximum Mana", statOrder = { 874 }, level = 63, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(210-230) to maximum Mana", statOrder = { 874 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 874 }, level = 77, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 875 }, level = 35, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 875 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 875 }, level = 79, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 866 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-42) to Armour", statOrder = { 866 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(43-54) to Armour", statOrder = { 866 }, level = 17, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(55-81) to Armour", statOrder = { 866 }, level = 28, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(82-106) to Armour", statOrder = { 866 }, level = 37, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(107-138) to Armour", statOrder = { 866 }, level = 48, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(139-168) to Armour", statOrder = { 866 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(169-195) to Armour", statOrder = { 866 }, level = 66, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(196-224) to Armour", statOrder = { 866 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(225-255) to Armour", statOrder = { 866 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-15) to Evasion Rating", statOrder = { 868 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(16-33) to Evasion Rating", statOrder = { 868 }, level = 11, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(34-44) to Evasion Rating", statOrder = { 868 }, level = 17, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(45-69) to Evasion Rating", statOrder = { 868 }, level = 28, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(70-93) to Evasion Rating", statOrder = { 868 }, level = 37, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(94-123) to Evasion Rating", statOrder = { 868 }, level = 48, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(124-151) to Evasion Rating", statOrder = { 868 }, level = 57, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(152-176) to Evasion Rating", statOrder = { 868 }, level = 66, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(177-203) to Evasion Rating", statOrder = { 868 }, level = 74, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 870 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 870 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 870 }, level = 17, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 870 }, level = 28, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 870 }, level = 37, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 870 }, level = 48, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 870 }, level = 57, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 870 }, level = 66, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 870 }, level = 74, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 870 }, level = 82, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-13)% increased Armour", statOrder = { 867 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 867 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 867 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 867 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 867 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 867 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 867 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-13)% increased Evasion Rating", statOrder = { 869 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 869 }, level = 18, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 869 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 869 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 869 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 869 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 869 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-13)% increased maximum Energy Shield", statOrder = { 871 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 871 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 871 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 871 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 871 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 871 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 871 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-50) to Armour", statOrder = { 834 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(51-68) to Armour", statOrder = { 834 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-82) to Armour", statOrder = { 834 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-102) to Armour", statOrder = { 834 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(103-122) to Armour", statOrder = { 834 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(123-160) to Armour", statOrder = { 834 }, level = 47, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(161-202) to Armour", statOrder = { 834 }, level = 59, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(203-225) to Armour", statOrder = { 834 }, level = 66, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(226-256) to Armour", statOrder = { 834 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(257-276) to Armour", statOrder = { 834 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-39) to Evasion Rating", statOrder = { 835 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(40-56) to Evasion Rating", statOrder = { 835 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(57-70) to Evasion Rating", statOrder = { 835 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(71-88) to Evasion Rating", statOrder = { 835 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(89-107) to Evasion Rating", statOrder = { 835 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(108-142) to Evasion Rating", statOrder = { 835 }, level = 47, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(143-181) to Evasion Rating", statOrder = { 835 }, level = 59, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(182-204) to Evasion Rating", statOrder = { 835 }, level = 66, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(205-232) to Evasion Rating", statOrder = { 835 }, level = 74, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(233-251) to Evasion Rating", statOrder = { 835 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 836 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 836 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 836 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 836 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 836 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 836 }, level = 47, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 836 }, level = 59, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 836 }, level = 66, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 836 }, level = 74, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 836 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(8-14) to Armour", "+(6-9) to Evasion Rating", statOrder = { 834, 835 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(15-35) to Armour", "+(10-30) to Evasion Rating", statOrder = { 834, 835 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(36-53) to Armour", "+(31-46) to Evasion Rating", statOrder = { 834, 835 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(54-65) to Armour", "+(47-57) to Evasion Rating", statOrder = { 834, 835 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(66-78) to Armour", "+(58-69) to Evasion Rating", statOrder = { 834, 835 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(79-98) to Armour", "+(70-88) to Evasion Rating", statOrder = { 834, 835 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(99-117) to Armour", "+(89-107) to Evasion Rating", statOrder = { 834, 835 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(118-138) to Armour", "+(108-126) to Evasion Rating", statOrder = { 834, 835 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
- ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(8-14) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 834, 836 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(15-35) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 834, 836 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(36-53) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 834, 836 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(54-65) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 834, 836 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(66-78) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 834, 836 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(79-98) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 834, 836 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(99-117) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 834, 836 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(118-138) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 834, 836 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
- ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-9) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 835, 836 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-30) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 835, 836 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(31-46) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 835, 836 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(47-57) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 835, 836 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(58-69) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 835, 836 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(70-88) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 835, 836 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(89-107) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 835, 836 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(108-126) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 835, 836 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 837 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 837 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 837 }, level = 27, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 837 }, level = 39, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 837 }, level = 51, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 837 }, level = 66, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 837 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 837 }, level = 82, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 838 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 838 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 838 }, level = 27, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 838 }, level = 39, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 838 }, level = 51, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 838 }, level = 66, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 838 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 838 }, level = 82, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 839 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 839 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 839 }, level = 27, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 839 }, level = 39, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 839 }, level = 51, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 839 }, level = 66, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 839 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 839 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 840 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 840 }, level = 15, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 840 }, level = 27, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 840 }, level = 39, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 840 }, level = 51, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 840 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 840 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 840 }, level = 82, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 841 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 841 }, level = 15, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 841 }, level = 27, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 841 }, level = 39, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 841 }, level = 51, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 841 }, level = 66, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 841 }, level = 82, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 15, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 27, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 39, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 51, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 66, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 82, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 837, 990 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 837, 990 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 837, 990 }, level = 30, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 837, 990 }, level = 44, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 837, 990 }, level = 60, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 837, 990 }, level = 78, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
- ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 838, 990 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 838, 990 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 838, 990 }, level = 30, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 838, 990 }, level = 44, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 838, 990 }, level = 60, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 838, 990 }, level = 78, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
- ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 839, 990 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 839, 990 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 839, 990 }, level = 30, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 839, 990 }, level = 44, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 839, 990 }, level = 60, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 839, 990 }, level = 78, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
- ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 840, 990 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 840, 990 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 840, 990 }, level = 30, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 840, 990 }, level = 44, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 840, 990 }, level = 60, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 840, 990 }, level = 78, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
- ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 841, 990 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 841, 990 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 841, 990 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 841, 990 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 841, 990 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 841, 990 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 842, 990 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 842, 990 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 842, 990 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 842, 990 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 842, 990 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 842, 990 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
- ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 837, 872 }, level = 10, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 837, 872 }, level = 19, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 837, 872 }, level = 30, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 837, 872 }, level = 44, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 837, 872 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 837, 872 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
- ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 838, 872 }, level = 10, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 838, 872 }, level = 19, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 838, 872 }, level = 30, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 838, 872 }, level = 44, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 838, 872 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 838, 872 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
- ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 839, 872 }, level = 10, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 839, 872 }, level = 19, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 839, 872 }, level = 30, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 839, 872 }, level = 44, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 839, 872 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 839, 872 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
- ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 840, 872 }, level = 10, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 840, 872 }, level = 19, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 840, 872 }, level = 30, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 840, 872 }, level = 44, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 840, 872 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 840, 872 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 841, 872 }, level = 10, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 841, 872 }, level = 19, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 841, 872 }, level = 30, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 841, 872 }, level = 44, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 841, 872 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 841, 872 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 842, 872 }, level = 10, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 842, 872 }, level = 19, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 842, 872 }, level = 30, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 842, 872 }, level = 44, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 842, 872 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 842, 872 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
- ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 837, 874 }, level = 10, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 837, 874 }, level = 19, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 837, 874 }, level = 30, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 837, 874 }, level = 44, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 837, 874 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 837, 874 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
- ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 838, 874 }, level = 10, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 838, 874 }, level = 19, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 838, 874 }, level = 30, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 838, 874 }, level = 44, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 838, 874 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 838, 874 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
- ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 839, 874 }, level = 10, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 839, 874 }, level = 19, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 839, 874 }, level = 30, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 839, 874 }, level = 44, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 839, 874 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 839, 874 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
- ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 840, 874 }, level = 10, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 840, 874 }, level = 19, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 840, 874 }, level = 30, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 840, 874 }, level = 44, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 840, 874 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 840, 874 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 841, 874 }, level = 10, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 841, 874 }, level = 19, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 841, 874 }, level = 30, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 841, 874 }, level = 44, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 841, 874 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 841, 874 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 842, 874 }, level = 10, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 842, 874 }, level = 19, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 842, 874 }, level = 30, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 842, 874 }, level = 44, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 842, 874 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 842, 874 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
- ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(7-11) to Armour", "(6-13)% increased Armour", statOrder = { 834, 837 }, level = 10, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(12-29) to Armour", "(14-20)% increased Armour", statOrder = { 834, 837 }, level = 19, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-39) to Armour", "(21-26)% increased Armour", statOrder = { 834, 837 }, level = 30, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(40-53) to Armour", "(27-32)% increased Armour", statOrder = { 834, 837 }, level = 44, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(54-69) to Armour", "(33-38)% increased Armour", statOrder = { 834, 837 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(70-86) to Armour", "(39-42)% increased Armour", statOrder = { 834, 837 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
- ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(5-8) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 835, 838 }, level = 10, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(9-24) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 835, 838 }, level = 19, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(25-34) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 835, 838 }, level = 30, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(35-47) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 835, 838 }, level = 44, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(48-62) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 835, 838 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(63-79) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 835, 838 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
- ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 836, 839 }, level = 10, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 836, 839 }, level = 19, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 836, 839 }, level = 30, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 836, 839 }, level = 44, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 836, 839 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 836, 839 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
- ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(4-6) to Armour", "+(3-5) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 10, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(7-15) to Armour", "+(6-12) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 19, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(16-20) to Armour", "+(13-17) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 30, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(21-27) to Armour", "+(18-24) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 44, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(28-34) to Armour", "+(25-31) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(35-43) to Armour", "+(32-39) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 834, 835, 840 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(4-6) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 10, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(7-15) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 19, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(16-20) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 30, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(21-27) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 44, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(28-34) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(35-43) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 834, 836, 841 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(3-5) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 10, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(6-12) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 19, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(13-17) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 30, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(18-24) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 44, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(25-31) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(32-39) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 835, 836, 842 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
- ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 921 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
- ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 921 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
- ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
- ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 921 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
- ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 921 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 943 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 943 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 943 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 943 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 943 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 943 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 943 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 943 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 944 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 944 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 944 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 944 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 944 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 944 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 944 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 944 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 945 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 945 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 945 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 945 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 945 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 945 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 945 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 945 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 942 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 942 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 942 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 942 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 942 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 942 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 942 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 942 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 954 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 954 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 954 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 954 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 954 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 954 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 954 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 955 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 955 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 955 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 955 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 955 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 955 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 955 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 956 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 956 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 956 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 956 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 956 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 956 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 956 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 953 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 953 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 953 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 953 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 953 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 953 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 892 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 892 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 892 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 892 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 892 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 892 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 3850614073, },
+ ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 957 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 957 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 957 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 957 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 957 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 957 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 866 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 866 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 866 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 866 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 866 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 866 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 866 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 866 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 866 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 866 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 866 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 866 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 867 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 867 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 867 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 868 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 868 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 868 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 868 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 868 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 868 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 868 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 868 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 868 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 868 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 868 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 868 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(14-20) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(21-34) to maximum Mana", statOrder = { 868 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(35-48) to maximum Mana", statOrder = { 868 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(49-76) to maximum Mana", statOrder = { 868 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(77-90) to maximum Mana", statOrder = { 868 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(91-111) to maximum Mana", statOrder = { 868 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(112-125) to maximum Mana", statOrder = { 868 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(126-146) to maximum Mana", statOrder = { 868 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(147-174) to maximum Mana", statOrder = { 868 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(175-209) to maximum Mana", statOrder = { 868 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(210-230) to maximum Mana", statOrder = { 868 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 868 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 869 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 869 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 869 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 860 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-42) to Armour", statOrder = { 860 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(43-54) to Armour", statOrder = { 860 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(55-81) to Armour", statOrder = { 860 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(82-106) to Armour", statOrder = { 860 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(107-138) to Armour", statOrder = { 860 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(139-168) to Armour", statOrder = { 860 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(169-195) to Armour", statOrder = { 860 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(196-224) to Armour", statOrder = { 860 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(225-255) to Armour", statOrder = { 860 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-15) to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(16-33) to Evasion Rating", statOrder = { 862 }, level = 11, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(34-44) to Evasion Rating", statOrder = { 862 }, level = 16, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(45-69) to Evasion Rating", statOrder = { 862 }, level = 25, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(70-93) to Evasion Rating", statOrder = { 862 }, level = 33, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(94-123) to Evasion Rating", statOrder = { 862 }, level = 46, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(124-151) to Evasion Rating", statOrder = { 862 }, level = 54, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(152-176) to Evasion Rating", statOrder = { 862 }, level = 65, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(177-203) to Evasion Rating", statOrder = { 862 }, level = 70, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 864 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 864 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 864 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 864 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 864 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 864 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 864 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 864 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 864 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 864 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 861 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 861 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 861 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 861 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 861 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 861 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 861 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 863 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 863 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 863 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 863 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 863 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 863 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 863 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 865 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 865 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 865 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 865 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 865 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 865 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 865 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-50) to Armour", statOrder = { 829 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(51-68) to Armour", statOrder = { 829 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-82) to Armour", statOrder = { 829 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-102) to Armour", statOrder = { 829 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(103-122) to Armour", statOrder = { 829 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(123-160) to Armour", statOrder = { 829 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(161-202) to Armour", statOrder = { 829 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(203-225) to Armour", statOrder = { 829 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(226-256) to Armour", statOrder = { 829 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(257-276) to Armour", statOrder = { 829 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-39) to Evasion Rating", statOrder = { 830 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(40-56) to Evasion Rating", statOrder = { 830 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(57-70) to Evasion Rating", statOrder = { 830 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(71-88) to Evasion Rating", statOrder = { 830 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(89-107) to Evasion Rating", statOrder = { 830 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(108-142) to Evasion Rating", statOrder = { 830 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(143-181) to Evasion Rating", statOrder = { 830 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(182-204) to Evasion Rating", statOrder = { 830 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(205-232) to Evasion Rating", statOrder = { 830 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(233-251) to Evasion Rating", statOrder = { 830 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 831 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 831 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 831 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 831 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 831 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 831 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 831 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 831 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 831 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 831 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(8-14) to Armour", "+(6-9) to Evasion Rating", statOrder = { 829, 830 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(15-35) to Armour", "+(10-30) to Evasion Rating", statOrder = { 829, 830 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(36-53) to Armour", "+(31-46) to Evasion Rating", statOrder = { 829, 830 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(54-65) to Armour", "+(47-57) to Evasion Rating", statOrder = { 829, 830 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(66-78) to Armour", "+(58-69) to Evasion Rating", statOrder = { 829, 830 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(79-98) to Armour", "+(70-88) to Evasion Rating", statOrder = { 829, 830 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(99-117) to Armour", "+(89-107) to Evasion Rating", statOrder = { 829, 830 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(118-138) to Armour", "+(108-126) to Evasion Rating", statOrder = { 829, 830 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2027024400, },
+ ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(8-14) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 829, 831 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(15-35) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 829, 831 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(36-53) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 829, 831 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(54-65) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 829, 831 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(66-78) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 829, 831 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(79-98) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 829, 831 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(99-117) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 829, 831 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(118-138) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 829, 831 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1732876862, },
+ ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-9) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 830, 831 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-30) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 830, 831 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(31-46) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 830, 831 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(47-57) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 830, 831 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(58-69) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 830, 831 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(70-88) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 830, 831 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(89-107) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 830, 831 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(108-126) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 830, 831 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 832 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 832 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 832 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 832 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 832 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 832 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 832 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 832 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 833 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 833 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 833 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 833 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 833 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 833 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 833 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 833 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 834 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 834 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 834 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 834 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 834 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 834 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 834 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 834 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 835 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 835 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 835 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 835 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 835 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 835 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 835 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 835 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 836 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 836 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 836 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 836 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 836 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 836 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 836 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 832, 990 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 832, 990 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 832, 990 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 832, 990 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 832, 990 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 832, 990 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3124696006, },
+ ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 833, 990 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 833, 990 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 833, 990 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 833, 990 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 833, 990 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 833, 990 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 708917690, },
+ ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 834, 990 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 834, 990 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 834, 990 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 834, 990 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 834, 990 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 834, 990 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 13201622, },
+ ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 835, 990 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 835, 990 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 835, 990 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 835, 990 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 835, 990 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 835, 990 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 56999850, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 836, 990 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 836, 990 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 836, 990 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 836, 990 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 836, 990 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 836, 990 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 3257628838, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 837, 990 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 837, 990 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 837, 990 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 837, 990 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 837, 990 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 837, 990 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHash = 321206944, },
+ ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 832, 866 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 832, 866 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 832, 866 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 832, 866 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 832, 866 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 832, 866 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHash = 1450041969, },
+ ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 833, 866 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 833, 866 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 833, 866 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 833, 866 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 833, 866 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 833, 866 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHash = 608219736, },
+ ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 834, 866 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 834, 866 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 834, 866 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 834, 866 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 834, 866 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 834, 866 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2254567948, },
+ ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 835, 866 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 835, 866 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 835, 866 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 835, 866 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 835, 866 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 835, 866 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHash = 3411345689, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 836, 866 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 836, 866 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 836, 866 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 836, 866 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 836, 866 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 836, 866 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHash = 1726026513, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 837, 866 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 837, 866 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 837, 866 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 837, 866 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 837, 866 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 837, 866 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHash = 3573086761, },
+ ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 832, 868 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 832, 868 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 832, 868 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 832, 868 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 832, 868 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 832, 868 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHash = 3857989420, },
+ ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 833, 868 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 833, 868 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 833, 868 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 833, 868 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 833, 868 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 833, 868 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHash = 442061895, },
+ ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 834, 868 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 834, 868 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 834, 868 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 834, 868 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 834, 868 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 834, 868 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 2575265261, },
+ ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 835, 868 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 835, 868 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 835, 868 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 835, 868 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 835, 868 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 835, 868 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHash = 2542768617, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 836, 868 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 836, 868 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 836, 868 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 836, 868 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 836, 868 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 836, 868 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHash = 4153895707, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 837, 868 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 837, 868 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 837, 868 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 837, 868 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 837, 868 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 837, 868 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHash = 1674203138, },
+ ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(7-11) to Armour", "(6-13)% increased Armour", statOrder = { 829, 832 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(12-29) to Armour", "(14-20)% increased Armour", statOrder = { 829, 832 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-39) to Armour", "(21-26)% increased Armour", statOrder = { 829, 832 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(40-53) to Armour", "(27-32)% increased Armour", statOrder = { 829, 832 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(54-69) to Armour", "(33-38)% increased Armour", statOrder = { 829, 832 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(70-86) to Armour", "(39-42)% increased Armour", statOrder = { 829, 832 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 3173428781, },
+ ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(5-8) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 830, 833 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(9-24) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 830, 833 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(25-34) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 830, 833 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(35-47) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 830, 833 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(48-62) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 830, 833 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(63-79) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 830, 833 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 1611513609, },
+ ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 831, 834 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 831, 834 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 831, 834 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 831, 834 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 831, 834 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 831, 834 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1057037123, },
+ ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(4-6) to Armour", "+(3-5) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(7-15) to Armour", "+(6-12) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(16-20) to Armour", "+(13-17) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(21-27) to Armour", "+(18-24) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(28-34) to Armour", "+(25-31) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(35-43) to Armour", "+(32-39) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 829, 830, 835 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 843965701, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(4-6) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(7-15) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(16-20) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(21-27) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(28-34) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(35-43) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 829, 831, 836 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3547254555, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(3-5) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(6-12) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(13-17) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(18-24) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(25-31) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(32-39) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 830, 831, 837 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHash = 531422609, },
+ ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 918 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 918 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 918 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 918 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
+ ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 918 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 3639275092, },
["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 915769802, },
["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 990 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 915769802, },
["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 990 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 915769802, },
@@ -439,694 +439,712 @@ return {
["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 990 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 915769802, },
["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 990 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHash = 915769802, },
["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 990 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 915769802, },
- ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 829 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 829 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 829 }, level = 50, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 829 }, level = 70, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 829 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 9217 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (15-23) Physical Thorns damage", statOrder = { 9217 }, level = 20, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9217 }, level = 35, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 9217 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (97-145) Physical Thorns damage", statOrder = { 9217 }, level = 61, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (146-220) Physical Thorns damage", statOrder = { 9217 }, level = 75, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 845 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 845 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 845 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 845 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 845 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 845 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 845 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 845 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 845 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 846 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 846 }, level = 12, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-8) to (9-13) Fire damage to Attacks", statOrder = { 846 }, level = 20, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-11) to (12-17) Fire damage to Attacks", statOrder = { 846 }, level = 28, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (8-13) to (14-20) Fire damage to Attacks", statOrder = { 846 }, level = 35, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (17-26) Fire damage to Attacks", statOrder = { 846 }, level = 44, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (20-30) Fire damage to Attacks", statOrder = { 846 }, level = 52, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-24) to (25-38) Fire damage to Attacks", statOrder = { 846 }, level = 64, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-29) to (30-45) Fire damage to Attacks", statOrder = { 846 }, level = 76, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 847 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 847 }, level = 13, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (4-6) to (7-11) Cold damage to Attacks", statOrder = { 847 }, level = 21, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (10-14) Cold damage to Attacks", statOrder = { 847 }, level = 29, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (7-10) to (11-17) Cold damage to Attacks", statOrder = { 847 }, level = 36, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (9-13) to (14-21) Cold damage to Attacks", statOrder = { 847 }, level = 45, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (10-15) to (16-24) Cold damage to Attacks", statOrder = { 847 }, level = 53, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 847 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (16-24) to (25-37) Cold damage to Attacks", statOrder = { 847 }, level = 77, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 848 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 848 }, level = 13, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (15-22) Lightning damage to Attacks", statOrder = { 848 }, level = 22, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (18-27) Lightning damage to Attacks", statOrder = { 848 }, level = 28, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (21-32) Lightning damage to Attacks", statOrder = { 848 }, level = 35, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (27-40) Lightning damage to Attacks", statOrder = { 848 }, level = 44, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (31-47) Lightning damage to Attacks", statOrder = { 848 }, level = 52, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (40-59) Lightning damage to Attacks", statOrder = { 848 }, level = 64, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (48-71) Lightning damage to Attacks", statOrder = { 848 }, level = 76, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 824 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 824 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 824 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 824 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 824 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 824 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 824 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 824 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 824 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 824 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 824 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 824 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 824 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 824 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 824 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 824 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 824 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 824 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 825 }, level = 11, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (12-18) Fire Damage", statOrder = { 825 }, level = 18, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (11-17) to (18-26) Fire Damage", statOrder = { 825 }, level = 26, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (14-21) to (22-33) Fire Damage", statOrder = { 825 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (20-30) to (31-46) Fire Damage", statOrder = { 825 }, level = 42, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (26-39) to (40-59) Fire Damage", statOrder = { 825 }, level = 51, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (35-52) to (53-79) Fire Damage", statOrder = { 825 }, level = 62, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (45-67) to (68-102) Fire Damage", statOrder = { 825 }, level = 74, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (52-78) to (79-119) Fire Damage", statOrder = { 825 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-15) Fire Damage", statOrder = { 825 }, level = 11, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (10-16) to (17-25) Fire Damage", statOrder = { 825 }, level = 18, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (16-24) to (25-37) Fire Damage", statOrder = { 825 }, level = 26, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (20-31) to (32-47) Fire Damage", statOrder = { 825 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (28-43) to (44-65) Fire Damage", statOrder = { 825 }, level = 42, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (37-55) to (56-84) Fire Damage", statOrder = { 825 }, level = 51, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (49-74) to (75-113) Fire Damage", statOrder = { 825 }, level = 62, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (64-96) to (97-146) Fire Damage", statOrder = { 825 }, level = 74, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (74-112) to (113-169) Fire Damage", statOrder = { 825 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 826 }, level = 12, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 826 }, level = 19, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (9-14) to (15-22) Cold Damage", statOrder = { 826 }, level = 27, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (12-18) to (19-28) Cold Damage", statOrder = { 826 }, level = 34, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (16-25) to (26-38) Cold Damage", statOrder = { 826 }, level = 43, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (21-32) to (33-49) Cold Damage", statOrder = { 826 }, level = 52, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (28-43) to (44-65) Cold Damage", statOrder = { 826 }, level = 63, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (37-55) to (56-84) Cold Damage", statOrder = { 826 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (42-63) to (64-95) Cold Damage", statOrder = { 826 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-13) Cold Damage", statOrder = { 826 }, level = 12, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (9-13) to (14-21) Cold Damage", statOrder = { 826 }, level = 19, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (13-20) to (21-31) Cold Damage", statOrder = { 826 }, level = 27, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (17-25) to (26-39) Cold Damage", statOrder = { 826 }, level = 34, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (23-35) to (36-54) Cold Damage", statOrder = { 826 }, level = 43, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (30-45) to (46-69) Cold Damage", statOrder = { 826 }, level = 52, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (40-61) to (62-92) Cold Damage", statOrder = { 826 }, level = 63, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (52-79) to (80-119) Cold Damage", statOrder = { 826 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (59-89) to (90-135) Cold Damage", statOrder = { 826 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-18) Lightning Damage", statOrder = { 827 }, level = 13, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (19-28) Lightning Damage", statOrder = { 827 }, level = 19, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-3) to (33-47) Lightning Damage", statOrder = { 827 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (37-52) Lightning Damage", statOrder = { 827 }, level = 34, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (49-70) Lightning Damage", statOrder = { 827 }, level = 42, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-5) to (62-89) Lightning Damage", statOrder = { 827 }, level = 51, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-7) to (86-123) Lightning Damage", statOrder = { 827 }, level = 63, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-8) to (108-155) Lightning Damage", statOrder = { 827 }, level = 74, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-10) to (125-180) Lightning Damage", statOrder = { 827 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (18-25) Lightning Damage", statOrder = { 827 }, level = 13, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (28-39) Lightning Damage", statOrder = { 827 }, level = 19, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-66) Lightning Damage", statOrder = { 827 }, level = 31, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (52-74) Lightning Damage", statOrder = { 827 }, level = 34, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-5) to (69-99) Lightning Damage", statOrder = { 827 }, level = 42, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-7) to (88-127) Lightning Damage", statOrder = { 827 }, level = 51, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-10) to (122-175) Lightning Damage", statOrder = { 827 }, level = 63, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-12) to (154-221) Lightning Damage", statOrder = { 827 }, level = 74, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-14) to (178-256) Lightning Damage", statOrder = { 827 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 885 }, level = 5, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 885 }, level = 13, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 885 }, level = 19, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 885 }, level = 28, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 885 }, level = 35, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 885 }, level = 44, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 885 }, level = 52, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 885 }, level = 64, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 885 }, level = 76, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
- ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 886 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 886 }, level = 12, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (5-8) to (9-13) added Attack Fire Damage", statOrder = { 886 }, level = 20, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (7-11) to (12-17) added Attack Fire Damage", statOrder = { 886 }, level = 28, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (8-13) to (14-20) added Attack Fire Damage", statOrder = { 886 }, level = 35, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (11-16) to (17-26) added Attack Fire Damage", statOrder = { 886 }, level = 44, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (13-19) to (20-30) added Attack Fire Damage", statOrder = { 886 }, level = 52, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (16-24) to (25-38) added Attack Fire Damage", statOrder = { 886 }, level = 64, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (19-29) to (30-45) added Attack Fire Damage", statOrder = { 886 }, level = 76, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 887 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 887 }, level = 13, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (4-6) to (7-11) added Attack Cold Damage", statOrder = { 887 }, level = 21, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (6-9) to (10-14) added Attack Cold Damage", statOrder = { 887 }, level = 29, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (7-10) to (11-17) added Attack Cold Damage", statOrder = { 887 }, level = 36, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (9-13) to (14-21) added Attack Cold Damage", statOrder = { 887 }, level = 45, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (10-15) to (16-24) added Attack Cold Damage", statOrder = { 887 }, level = 53, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (13-20) to (21-31) added Attack Cold Damage", statOrder = { 887 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (16-24) to (25-37) added Attack Cold Damage", statOrder = { 887 }, level = 77, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 888 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 888 }, level = 13, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (15-22) added Attack Lightning Damage", statOrder = { 888 }, level = 22, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (18-27) added Attack Lightning Damage", statOrder = { 888 }, level = 28, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (21-32) added Attack Lightning Damage", statOrder = { 888 }, level = 35, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (27-40) added Attack Lightning Damage", statOrder = { 888 }, level = 44, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (31-47) added Attack Lightning Damage", statOrder = { 888 }, level = 52, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (40-59) added Attack Lightning Damage", statOrder = { 888 }, level = 64, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (48-71) added Attack Lightning Damage", statOrder = { 888 }, level = 76, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 823 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 823 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 823 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 823 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 823 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 823 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 823 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 823, 828 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 823, 828 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 823, 828 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 823, 828 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 823, 828 }, level = 53, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 823, 828 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 823, 828 }, level = 76, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 823, 828 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
- ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 884 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 884 }, level = 19, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 884 }, level = 31, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 884 }, level = 45, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 884 }, level = 58, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 884 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 884 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 855 }, level = 11, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 855 }, level = 23, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 855 }, level = 35, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 855 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 855 }, level = 58, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 855 }, level = 70, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 855 }, level = 80, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(35-49)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(50-64)% increased Spell Damage", statOrder = { 855 }, level = 11, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(65-79)% increased Spell Damage", statOrder = { 855 }, level = 23, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(80-94)% increased Spell Damage", statOrder = { 855 }, level = 35, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(95-109)% increased Spell Damage", statOrder = { 855 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(110-129)% increased Spell Damage", statOrder = { 855 }, level = 58, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(130-149)% increased Spell Damage", statOrder = { 855 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-169)% increased Spell Damage", statOrder = { 855 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 855, 874 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 855, 874 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 855, 874 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 855, 874 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 855, 874 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 855, 874 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 855, 874 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(21-27)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 855, 874 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(28-34)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 855, 874 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(35-41)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 855, 874 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(42-48)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 855, 874 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(49-55)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 855, 874 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(56-62)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 855, 874 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(64-69)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 855, 874 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
- ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 857 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 857 }, level = 12, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 857 }, level = 24, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 857 }, level = 36, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 857 }, level = 47, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 857 }, level = 59, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 857 }, level = 71, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 857 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(35-49)% increased Fire Damage", statOrder = { 857 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(50-64)% increased Fire Damage", statOrder = { 857 }, level = 12, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(65-79)% increased Fire Damage", statOrder = { 857 }, level = 24, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(80-94)% increased Fire Damage", statOrder = { 857 }, level = 36, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(95-109)% increased Fire Damage", statOrder = { 857 }, level = 47, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(110-129)% increased Fire Damage", statOrder = { 857 }, level = 59, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(130-149)% increased Fire Damage", statOrder = { 857 }, level = 71, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(150-169)% increased Fire Damage", statOrder = { 857 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 858 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 858 }, level = 12, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 858 }, level = 24, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 858 }, level = 36, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 858 }, level = 47, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 858 }, level = 59, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 858 }, level = 71, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 858 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(35-49)% increased Cold Damage", statOrder = { 858 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(50-64)% increased Cold Damage", statOrder = { 858 }, level = 12, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(65-79)% increased Cold Damage", statOrder = { 858 }, level = 24, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(80-94)% increased Cold Damage", statOrder = { 858 }, level = 36, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(95-109)% increased Cold Damage", statOrder = { 858 }, level = 47, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(110-129)% increased Cold Damage", statOrder = { 858 }, level = 59, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(130-149)% increased Cold Damage", statOrder = { 858 }, level = 71, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(150-169)% increased Cold Damage", statOrder = { 858 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 859 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 859 }, level = 12, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 859 }, level = 24, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 859 }, level = 36, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 859 }, level = 47, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 859 }, level = 59, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 859 }, level = 71, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 859 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(35-49)% increased Lightning Damage", statOrder = { 859 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(50-64)% increased Lightning Damage", statOrder = { 859 }, level = 12, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(65-79)% increased Lightning Damage", statOrder = { 859 }, level = 24, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(80-94)% increased Lightning Damage", statOrder = { 859 }, level = 36, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(95-109)% increased Lightning Damage", statOrder = { 859 }, level = 47, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(110-129)% increased Lightning Damage", statOrder = { 859 }, level = 59, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(130-149)% increased Lightning Damage", statOrder = { 859 }, level = 71, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(150-169)% increased Lightning Damage", statOrder = { 859 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 860 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 860 }, level = 12, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 860 }, level = 24, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 860 }, level = 36, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 860 }, level = 47, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 860 }, level = 59, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 860 }, level = 71, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 860 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(35-49)% increased Chaos Damage", statOrder = { 860 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(50-64)% increased Chaos Damage", statOrder = { 860 }, level = 12, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(65-79)% increased Chaos Damage", statOrder = { 860 }, level = 24, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(80-94)% increased Chaos Damage", statOrder = { 860 }, level = 36, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(95-109)% increased Chaos Damage", statOrder = { 860 }, level = 47, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(110-129)% increased Chaos Damage", statOrder = { 860 }, level = 59, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(130-149)% increased Chaos Damage", statOrder = { 860 }, level = 71, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(150-169)% increased Chaos Damage", statOrder = { 860 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 862 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 862 }, level = 12, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 862 }, level = 24, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 862 }, level = 36, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 862 }, level = 47, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 862 }, level = 59, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 862 }, level = 71, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 862 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(35-49)% increased Spell Physical Damage", statOrder = { 862 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(50-64)% increased Spell Physical Damage", statOrder = { 862 }, level = 12, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(65-79)% increased Spell Physical Damage", statOrder = { 862 }, level = 24, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(80-94)% increased Spell Physical Damage", statOrder = { 862 }, level = 36, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(95-109)% increased Spell Physical Damage", statOrder = { 862 }, level = 47, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(110-129)% increased Spell Physical Damage", statOrder = { 862 }, level = 59, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(130-149)% increased Spell Physical Damage", statOrder = { 862 }, level = 71, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(150-169)% increased Spell Physical Damage", statOrder = { 862 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
- ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 856 }, level = 11, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 856 }, level = 23, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 856 }, level = 35, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 856 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 856 }, level = 58, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 856 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 856 }, level = 80, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 856, 874 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 856, 874 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 856, 874 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 856, 874 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 856, 874 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 856, 874 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 856, 874 }, level = 79, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
- ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+(1-2) to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+(1-2) to Level of all Fire Spell Skills", statOrder = { 923 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+3 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+4 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 923 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 923 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
- ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+(1-2) to Level of all Cold Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+3 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+4 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+(1-2) to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+3 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+4 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
- ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+(1-2) to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+3 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+4 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
- ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+(1-2) to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+3 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+4 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1416 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
- ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 929 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 929 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 929 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 929 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 929 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 929 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 929 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 929 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 930 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
- ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 927 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 927 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 927 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+(1-2) to Level of all Melee Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+3 to Level of all Melee Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+4 to Level of all Melee Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+(5-6) to Level of all Melee Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+7 to Level of all Melee Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
- ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 928 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 928 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 928 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+(1-2) to Level of all Projectile Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+3 to Level of all Projectile Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+4 to Level of all Projectile Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+(5-6) to Level of all Projectile Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+7 to Level of all Projectile Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
- ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 963 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 963 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 963 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 963 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 963 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 963 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 963 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 963 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 963 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 963 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 896 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 896 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 896 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 896 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 896 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 896 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 896 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 896 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 896 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
- ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 81, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 967 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 967 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 967 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 967 }, level = 68, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 967 }, level = 81, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 81, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 973 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 973 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 973 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 973 }, level = 68, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 973 }, level = 81, group = "ManaLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per Enemy Killed", statOrder = { 970 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per Enemy Killed", statOrder = { 970 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per Enemy Killed", statOrder = { 970 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per Enemy Killed", statOrder = { 970 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per Enemy Killed", statOrder = { 970 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per Enemy Killed", statOrder = { 970 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per Enemy Killed", statOrder = { 970 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed", statOrder = { 975 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per Enemy Killed", statOrder = { 975 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per Enemy Killed", statOrder = { 975 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per Enemy Killed", statOrder = { 975 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per Enemy Killed", statOrder = { 975 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per Enemy Killed", statOrder = { 975 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per Enemy Killed", statOrder = { 975 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 969 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
- ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 969 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
- ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 969 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
- ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 969 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
- ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 939 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 939 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 939 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 919 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 919 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 919 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 919 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 919 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 919 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 919 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 893 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 893 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 893 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 893 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 940 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 940 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 940 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 940 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 940 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 940 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 940 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 940 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 940 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 940 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 940 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 940 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 894 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 894 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 894 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 894 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 864 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 864 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 864 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 864 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 864 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 864 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 864 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 864 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 828 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 828 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 828 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 828 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 828 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 828 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 828 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 828 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 828 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
- ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 890 }, level = 12, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 890 }, level = 20, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 890 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 890 }, level = 33, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 890 }, level = 41, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 890 }, level = 50, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 890 }, level = 63, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
- ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 931 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 931 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 931 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 931 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 931 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 931 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 917 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 917 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 917 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 917 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 917 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "staff", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "staff", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "staff", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "staff", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "staff", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
- ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 891 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 891 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 891 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 891 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 891 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 891 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 935 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 935 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 935 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 935 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 935 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 935 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus", statOrder = { 918 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus", statOrder = { 918 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus", statOrder = { 918 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus", statOrder = { 918 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus", statOrder = { 918 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus", statOrder = { 918 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "focus", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "focus", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "focus", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "focus", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "focus", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
- ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 892 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 892 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 892 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 892 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 892 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 892 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 916 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 916 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 916 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 916 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 916 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 916 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 916 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 916 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 916 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 916 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 864, 999 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
- ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 864, 999 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
- ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 864, 999 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
- ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 828, 999 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
- ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 828, 999 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
- ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 828, 999 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
- ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 971, 999 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
- ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 971, 999 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
- ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 971, 999 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
- ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Block chance", statOrder = { 832 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Block chance", statOrder = { 832 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Block chance", statOrder = { 832 }, level = 30, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 832 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 832 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 832 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 832 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
- ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 877 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 877 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 877 }, level = 34, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 877 }, level = 41, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 877 }, level = 47, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 877 }, level = 55, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 877 }, level = 66, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 877 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
- ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(30-36)% increased Spirit", statOrder = { 844 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 844 }, level = 11, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 844 }, level = 23, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 844 }, level = 35, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 844 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 844 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 844 }, level = 73, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 844 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
- ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 844, 874 }, level = 3, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 844, 874 }, level = 12, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 844, 874 }, level = 28, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 844, 874 }, level = 39, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 844, 874 }, level = 50, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 844, 874 }, level = 62, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 844, 874 }, level = 78, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
- ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 825 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 825 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 825 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 825 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 825 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 9483 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (15-23) Physical Thorns damage", statOrder = { 9483 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9483 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 9483 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (97-145) Physical Thorns damage", statOrder = { 9483 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (146-220) Physical Thorns damage", statOrder = { 9483 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 840 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 840 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 840 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 840 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 840 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 840 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 840 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 840 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 841 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 841 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 841 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 841 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 841 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 841 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 841 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 841 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 841 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 842 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 842 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 842 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 842 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 842 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 842 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 842 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 842 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 842 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 843 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 843 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 843 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 843 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 843 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 843 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 843 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 843 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 843 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 820 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 820 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 820 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 820 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 820 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 820 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 820 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 820 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 820 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 820 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 820 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 820 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 820 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 820 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 820 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 820 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 821 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 821 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 821 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 821 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 821 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 821 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 821 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 821 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 821 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 821 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 821 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 821 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 821 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 821 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 821 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 821 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 821 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 821 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 822 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 822 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 822 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 822 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 822 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 822 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 822 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 822 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 822 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 822 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 822 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 822 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 822 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 822 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 822 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 822 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 822 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 822 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 823 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 823 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 823 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 823 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 823 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 823 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 823 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 823 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 823 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 823 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 823 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 823 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 823 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 823 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 823 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 823 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 823 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 823 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 879 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 879 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 879 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 879 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 879 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 879 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 879 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 879 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 879 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1574590649, },
+ ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 880 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 880 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 880 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 880 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 880 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 880 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 880 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 880 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 880 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 881 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 881 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 881 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 881 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 881 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 881 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 881 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 881 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 882 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 882 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 882 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 882 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 882 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 882 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 882 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 882 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 882 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 819 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 819 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 819 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 819 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 819 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 819 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 819 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 819, 824 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 819, 824 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 819, 824 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 819, 824 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 819, 824 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 819, 824 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 819, 824 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 819, 824 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3350650826, },
+ ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 878 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 878 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 878 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 878 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 878 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 878 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 878 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 878 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 850 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 850 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 850 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 850 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 850 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 850 }, level = 70, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 850 }, level = 80, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(35-49)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(50-64)% increased Spell Damage", statOrder = { 850 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(65-79)% increased Spell Damage", statOrder = { 850 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(80-94)% increased Spell Damage", statOrder = { 850 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(95-109)% increased Spell Damage", statOrder = { 850 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(110-129)% increased Spell Damage", statOrder = { 850 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(130-149)% increased Spell Damage", statOrder = { 850 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-169)% increased Spell Damage", statOrder = { 850 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 850, 868 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 850, 868 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 850, 868 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 850, 868 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 850, 868 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 850, 868 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 850, 868 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(21-27)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 850, 868 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(28-34)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 850, 868 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(35-41)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 850, 868 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(42-48)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 850, 868 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(49-55)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 850, 868 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(56-63)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 850, 868 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(64-69)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 850, 868 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHash = 318261578, },
+ ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 852 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 852 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 852 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 852 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 852 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 852 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 852 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 852 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(35-49)% increased Fire Damage", statOrder = { 852 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(50-64)% increased Fire Damage", statOrder = { 852 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(65-79)% increased Fire Damage", statOrder = { 852 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(80-94)% increased Fire Damage", statOrder = { 852 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(95-109)% increased Fire Damage", statOrder = { 852 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(110-129)% increased Fire Damage", statOrder = { 852 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(130-149)% increased Fire Damage", statOrder = { 852 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(150-169)% increased Fire Damage", statOrder = { 852 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 853 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 853 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 853 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 853 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 853 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 853 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 853 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 853 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(35-49)% increased Cold Damage", statOrder = { 853 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(50-64)% increased Cold Damage", statOrder = { 853 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(65-79)% increased Cold Damage", statOrder = { 853 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(80-94)% increased Cold Damage", statOrder = { 853 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(95-109)% increased Cold Damage", statOrder = { 853 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(110-129)% increased Cold Damage", statOrder = { 853 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(130-149)% increased Cold Damage", statOrder = { 853 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(150-169)% increased Cold Damage", statOrder = { 853 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 854 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 854 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 854 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 854 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 854 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 854 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 854 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 854 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(35-49)% increased Lightning Damage", statOrder = { 854 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(50-64)% increased Lightning Damage", statOrder = { 854 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(65-79)% increased Lightning Damage", statOrder = { 854 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(80-94)% increased Lightning Damage", statOrder = { 854 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(95-109)% increased Lightning Damage", statOrder = { 854 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(110-129)% increased Lightning Damage", statOrder = { 854 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(130-149)% increased Lightning Damage", statOrder = { 854 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(150-169)% increased Lightning Damage", statOrder = { 854 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 855 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 855 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 855 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 855 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 855 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 855 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 855 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 855 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(35-49)% increased Chaos Damage", statOrder = { 855 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(50-64)% increased Chaos Damage", statOrder = { 855 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(65-79)% increased Chaos Damage", statOrder = { 855 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(80-94)% increased Chaos Damage", statOrder = { 855 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(95-109)% increased Chaos Damage", statOrder = { 855 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(110-129)% increased Chaos Damage", statOrder = { 855 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(130-149)% increased Chaos Damage", statOrder = { 855 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(150-169)% increased Chaos Damage", statOrder = { 855 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 857 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 857 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 857 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 857 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 857 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 857 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 857 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 857 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(35-49)% increased Spell Physical Damage", statOrder = { 857 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(50-64)% increased Spell Physical Damage", statOrder = { 857 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(65-79)% increased Spell Physical Damage", statOrder = { 857 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(80-94)% increased Spell Physical Damage", statOrder = { 857 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(95-109)% increased Spell Physical Damage", statOrder = { 857 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(110-129)% increased Spell Physical Damage", statOrder = { 857 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(130-149)% increased Spell Physical Damage", statOrder = { 857 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(150-169)% increased Spell Physical Damage", statOrder = { 857 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2768835289, },
+ ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 851 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 851 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 851 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 851 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 851 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 851 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 851 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 851 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 851, 868 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 851, 868 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 851, 868 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 851, 868 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 851, 868 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 851, 868 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 851, 868 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3019071184, },
+ ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 919 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 919 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 919 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 919 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 919 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 919 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 919 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 919 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 919 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 919 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 919 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+2 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+3 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+4 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 920 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 920 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, },
+ ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+2 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+3 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+4 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 921 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 921 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+2 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+3 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+4 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 922 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, },
+ ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+2 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+3 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+4 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 923 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHash = 4226189338, },
+ ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+2 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+3 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+4 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1399 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHash = 1600707273, },
+ ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 927 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 927 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 927 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 927 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 927 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 928 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239953100, },
+ ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 924 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 924 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 924 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+3 to Level of all Melee Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+4 to Level of all Melee Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+(5-6) to Level of all Melee Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+7 to Level of all Melee Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 926 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 926 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 926 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+3 to Level of all Projectile Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+4 to Level of all Projectile Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+(5-6) to Level of all Projectile Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+7 to Level of all Projectile Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1202301673, },
+ ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 964 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 964 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 964 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 964 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 964 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 964 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 964 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 964 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 964 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 964 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 893 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 893 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 893 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 893 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 893 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 893 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 893 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 893 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 893 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 893 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 4010677958, },
+ ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 81, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 968 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 968 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 968 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 968 }, level = 68, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 968 }, level = 81, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 81, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 974 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 974 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 974 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 974 }, level = 68, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 974 }, level = 81, group = "ManaLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per Enemy Killed", statOrder = { 971 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per Enemy Killed", statOrder = { 971 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per Enemy Killed", statOrder = { 971 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per Enemy Killed", statOrder = { 971 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per Enemy Killed", statOrder = { 971 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per Enemy Killed", statOrder = { 971 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per Enemy Killed", statOrder = { 971 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed", statOrder = { 976 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per Enemy Killed", statOrder = { 976 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per Enemy Killed", statOrder = { 976 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per Enemy Killed", statOrder = { 976 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per Enemy Killed", statOrder = { 976 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per Enemy Killed", statOrder = { 976 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per Enemy Killed", statOrder = { 976 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 970 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
+ ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 970 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
+ ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 970 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
+ ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 970 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
+ ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 937 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 937 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 937 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 916 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 916 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 916 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 916 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 916 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 916 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 916 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 890 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 890 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 890 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 890 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 938 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 938 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 938 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 938 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 938 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 938 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 938 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 938 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 938 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 938 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 938 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 938 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 891 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 891 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 891 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 891 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 859 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 859 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 859 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 859 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 859 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 859 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 859 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 859 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 824 }, level = 11, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 824 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 824 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 824 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 824 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 824 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 824 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 824 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 824 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 887 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 887 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 887 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 887 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 887 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 887 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 887 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 887 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHash = 3169585282, },
+ ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 929 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 929 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 929 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 929 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 929 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 929 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 914 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 914 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 914 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 914 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 914 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1192661666, },
+ ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 888 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 888 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 888 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 888 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 888 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 888 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 933 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 933 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 933 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 933 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 933 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 933 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 915 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 915 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 915 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 915 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 915 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 915 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1780168381, },
+ ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 889 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 889 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 889 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 889 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 889 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 889 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 913 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 913 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 913 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 913 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 913 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 913 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 913 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 913 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 913 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 913 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 859, 999 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
+ ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 859, 999 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
+ ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 859, 999 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3894846456, },
+ ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 824, 999 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
+ ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 824, 999 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
+ ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 824, 999 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 2631551465, },
+ ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 972, 999 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
+ ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 972, 999 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
+ ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 972, 999 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 4017769051, },
+ ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 828 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 828 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 828 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 828 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 828 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 828 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 871 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 871 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 871 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 871 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 871 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 871 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 871 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 871 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3981240776, },
+ ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(30-36)% increased Spirit", statOrder = { 839 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 839 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 839 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 839 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 839 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 839 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 839 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 839 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3984865854, },
+ ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 839, 868 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 839, 868 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 839, 868 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 839, 868 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 839, 868 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 839, 868 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 839, 868 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4262335280, },
+ ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 996 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, },
["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 996 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, },
["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 996 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, },
@@ -1152,92 +1170,111 @@ return {
["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 994 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 994 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 994 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
- ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 948 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 948 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 948 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 948 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 948 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 949 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 949 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 949 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 949 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 949 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 951 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 951 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 951 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 952 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 952 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 952 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 953 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 953 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 953 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 954 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
- ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 954 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
- ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 954 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
- ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 950 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
- ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 950 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
- ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 33, group = "EnergyShieldRegeneration", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 58, group = "EnergyShieldRegeneration", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 69, group = "EnergyShieldRegeneration", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(46-50)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 947 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 947 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 947 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 947 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 947 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 949 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 949 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 949 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 950 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 950 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 950 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 951 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 951 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 951 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 952 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
+ ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 952 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
+ ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 952 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHash = 1301765461, },
+ ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(46-50)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
+ ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 960 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 960 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 960 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 960 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 960 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 960 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 997 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 997 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 997 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 997 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 997 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
- ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 943 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
- ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 943 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
- ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 941 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
- ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 941 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
- ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 881 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 881 }, level = 24, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 881 }, level = 40, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 881 }, level = 56, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 881 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6050 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6050 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6050 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6050 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6050 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6050 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 977 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 977 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 977 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 977 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 977 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 977 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5146 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5146 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5146 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5146 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5146 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5146 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5148 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5148 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5148 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5148 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5148 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5148 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
- ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 942 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2582079000, },
- ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 942 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2582079000, },
- ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased chance to Ignite", statOrder = { 984 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
- ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased chance to Ignite", statOrder = { 984 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
- ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased chance to Ignite", statOrder = { 984 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
- ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased chance to Ignite", statOrder = { 984 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
- ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased chance to Ignite", statOrder = { 984 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 941 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
+ ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 941 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 3885405204, },
+ ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 939 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
+ ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 939 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 1039380318, },
+ ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 875 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 875 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 875 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 875 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 875 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6141 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6141 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6141 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6141 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6141 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6141 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 978 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 978 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 978 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 978 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 978 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 978 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5177 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5177 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5177 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5177 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5177 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5177 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5179 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5179 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5179 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5179 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5179 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5179 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1570770415, },
+ ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 940 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2582079000, },
+ ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 940 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2582079000, },
+ ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 984 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 984 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 984 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 984 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 984 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 986 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 473429811, },
["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 986 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 473429811, },
["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 986 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 473429811, },
@@ -1248,384 +1285,429 @@ return {
["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 988 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 293638271, },
["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 988 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 293638271, },
["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 988 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHash = 293638271, },
- ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 878 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 878 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 878 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 878 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 878 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 982 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 982 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 982 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 982 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 982 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 982 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
- ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 980 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 980 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 980 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 980 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 980 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 980 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
- ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 855 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 855 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 855 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 855 }, level = 50, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 855 }, level = 62, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 855 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 857 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 857 }, level = 22, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 857 }, level = 36, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 857 }, level = 50, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 857 }, level = 64, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 857 }, level = 76, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 858 }, level = 10, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 858 }, level = 24, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 858 }, level = 36, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 858 }, level = 50, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 858 }, level = 64, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 858 }, level = 76, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 859 }, level = 9, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 859 }, level = 23, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 859 }, level = 36, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 859 }, level = 50, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 859 }, level = 64, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 859 }, level = 76, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 860 }, level = 11, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 860 }, level = 26, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 860 }, level = 38, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 860 }, level = 52, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 860 }, level = 66, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 860 }, level = 78, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 31, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 61, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 31, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 61, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 31, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 61, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 863 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
- ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 863 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
- ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 863 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
- ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 863 }, level = 45, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
- ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 863 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
- ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 863 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 872 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 872 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 872 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 872 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 872 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 983 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 983 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 983 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 983 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 983 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 983 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 748522257, },
+ ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 981 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 981 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 981 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 981 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 981 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 981 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHash = 791928121, },
+ ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 850 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 850 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 850 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 850 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 850 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 852 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 852 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 852 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 852 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 852 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 852 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 853 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 853 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 853 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 853 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 853 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 853 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 854 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 854 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 854 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 854 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 854 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 854 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 855 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 855 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 855 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 855 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 855 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 855 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (20-23)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (24-28)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (29-32)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (33-37)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (38-41)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (42-45)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (20-23)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (24-28)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (29-32)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (33-37)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (38-41)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (42-45)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (20-23)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (24-28)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (29-32)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (33-37)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (38-41)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (42-45)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 858 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 858 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 858 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 858 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 858 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
+ ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 858 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1241625305, },
["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 998 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 101878827, },
["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 998 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 101878827, },
["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 998 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 101878827, },
["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 998 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 101878827, },
- ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 961 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 961 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 961 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 961 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 961 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 961 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "100% increased effect of Socketed Items", statOrder = { 7073 }, level = 1, group = "LocalRuneAndSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2748623647, },
- ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 6987 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4215035940, },
- ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 10, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 26, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 42, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 58, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 74, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 82, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 831 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 831 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 831 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 831 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2144 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
- ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1543 }, level = 42, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
- ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1543 }, level = 58, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
- ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1543 }, level = 74, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
- ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1543 }, level = 82, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
- ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 8, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 19, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 30, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 55, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 70, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 81, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 42, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 58, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 74, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 82, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 42, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 58, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 74, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 82, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2425 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2425 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2425 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1459 }, level = 11, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1459 }, level = 22, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1459 }, level = 36, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1459 }, level = 48, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1459 }, level = 60, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1459 }, level = 75, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1460 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1460 }, level = 32, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1460 }, level = 58, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1460 }, level = 75, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2523 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, },
- ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2524 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, },
- ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2525 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
- ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2526 }, level = 1, group = "FishingHookType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2054162825, },
- ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2527 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, },
- ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2528 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
- ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2529 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
- ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2940 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, },
- ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 860 }, level = 58, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 860 }, level = 74, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 860 }, level = 82, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1840 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
- ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2645 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2645 }, level = 42, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2645 }, level = 58, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2645 }, level = 74, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2645 }, level = 82, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2645 }, level = 42, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2645 }, level = 58, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2645 }, level = 74, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2645 }, level = 82, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2643 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2643 }, level = 26, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2643 }, level = 42, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2643 }, level = 58, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2643 }, level = 74, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2643 }, level = 82, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2643 }, level = 26, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2643 }, level = 42, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2643 }, level = 58, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2643 }, level = 74, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2643 }, level = 82, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2644 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2644 }, level = 10, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2644 }, level = 26, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2644 }, level = 42, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2644 }, level = 58, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2644 }, level = 74, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2644 }, level = 82, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2644 }, level = 10, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2644 }, level = 26, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2644 }, level = 42, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2644 }, level = 58, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2644 }, level = 74, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2644 }, level = 82, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 45, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 70, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 967 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 967 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 967 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 967 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 967 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 967 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1101 }, level = 4, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1101 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1101 }, level = 30, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1101 }, level = 60, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1101 }, level = 81, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2272 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2272 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2272 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2272 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 58, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 74, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 82, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2914 }, level = 58, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2914 }, level = 74, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2914 }, level = 82, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1249 }, level = 11, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1249 }, level = 18, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1249 }, level = 26, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1249 }, level = 33, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1249 }, level = 42, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1249 }, level = 51, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1249 }, level = 62, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1249 }, level = 74, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1249 }, level = 82, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1250 }, level = 11, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1250 }, level = 18, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1250 }, level = 26, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1250 }, level = 33, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1250 }, level = 42, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1250 }, level = 51, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1250 }, level = 62, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1250 }, level = 74, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1250 }, level = 82, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1251 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1251 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1251 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1251 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1251 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1251 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1251 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1251 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1251 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1249 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1249 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1249 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1249 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1249 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1249 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1249 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1249 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1249 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1250 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1250 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1250 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1250 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1250 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1250 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1250 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1250 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1250 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1251 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1251 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1251 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1251 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1251 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1251 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1251 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1251 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1251 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1235 }, level = 83, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1235 }, level = 62, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1235 }, level = 74, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1235 }, level = 82, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1235 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1235 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1235 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1235 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3005 }, level = 63, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
- ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1233 }, level = 62, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1233 }, level = 74, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1233 }, level = 82, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2820 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2820 }, level = 60, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 860, 2820 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHash = 3453988289, },
- ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 409 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHash = 1289910726, },
- ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 403 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHash = 346351023, },
- ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 403 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHash = 346351023, },
- ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 406 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 3835899275, },
- ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3929 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 694438389, },
- ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2145 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, },
- ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1622 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
- ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1622 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
- ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1639 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, },
- ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 395 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1681904129, },
- ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3868 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 614350381, },
- ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2834 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHash = 304970526, },
- ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3867 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
- ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3867 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
- ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3869 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3623716321, },
- ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 389 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 3984519770, },
- ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 405 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1235873320, },
- ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3861 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 3392890360, },
- ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3862 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHash = 2693266036, },
- ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 8731 }, level = 63, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3577248251, },
- ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3864 }, level = 63, group = "PowerChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "power_charge" }, tradeHash = 3945147290, },
- ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3865 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHash = 583277599, },
- ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3099 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 308309328, },
- ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 7988 }, level = 63, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335507772, },
- ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5044 }, level = 63, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2228892313, },
- ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6138 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2989883253, },
- ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3230 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, },
- ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 439 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "aura", "gem" }, tradeHash = 223595318, },
- ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 138 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, },
- ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 562 }, level = 63, group = "FireBurstOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1621470436, },
- ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 539, 539.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 470688636, },
- ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1571 }, level = 63, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, },
- ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6195 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3049760680, },
- ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2506 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2764164760, },
- ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 437 }, level = 63, group = "SupportDamageOverTime", weightKey = { }, weightVal = { }, modTags = { "skill", "damage", "gem" }, tradeHash = 3846088475, },
- ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1058 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2253286128, },
- ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2288 }, level = 63, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2288 }, level = 63, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2290 }, level = 63, group = "MarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 712554801, },
- ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 5567 }, level = 63, group = "DecayOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3322709337, },
- ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 865 }, level = 63, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 561307714, },
- ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 8277 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1521863824, },
- ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2202 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2076519255, },
- ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7224 }, level = 63, group = "ManaGainedOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 3041288981, },
+ ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 958 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 958 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 958 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 958 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 958 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 958 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "100% increased effect of Socketed Items", statOrder = { 7241 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2081918629, },
+ ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7127 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4215035940, },
+ ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 5974 }, level = 1, group = "AbyssTargetMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335885735, },
+ ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 5974 }, level = 1, group = "AbyssTargetMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335885735, },
+ ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 10, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 26, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 42, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 58, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 74, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 82, group = "ReducedShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 827 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 827 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 827 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 827 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2113 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
+ ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1526 }, level = 42, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
+ ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1526 }, level = 58, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
+ ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1526 }, level = 74, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
+ ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1526 }, level = 82, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
+ ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 8, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 19, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 30, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 55, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 70, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 81, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 42, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 58, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 74, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 82, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 42, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 58, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 74, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 82, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2391 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2391 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2391 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1442 }, level = 11, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1442 }, level = 22, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1442 }, level = 36, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1442 }, level = 48, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1442 }, level = 60, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1442 }, level = 75, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1443 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1443 }, level = 32, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1443 }, level = 58, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1443 }, level = 75, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2487 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, },
+ ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2488 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, },
+ ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2489 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
+ ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2490 }, level = 1, group = "FishingHookType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2054162825, },
+ ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2491 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, },
+ ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2492 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
+ ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2493 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
+ ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2891 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, },
+ ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 855 }, level = 58, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 855 }, level = 74, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 855 }, level = 82, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1817 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
+ ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2604 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2604 }, level = 42, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2604 }, level = 58, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2604 }, level = 74, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2604 }, level = 82, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2604 }, level = 42, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2604 }, level = 58, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2604 }, level = 74, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2604 }, level = 82, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2602 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2602 }, level = 26, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2602 }, level = 42, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2602 }, level = 58, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2602 }, level = 74, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2602 }, level = 82, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2602 }, level = 26, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2602 }, level = 42, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2602 }, level = 58, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2602 }, level = 74, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2602 }, level = 82, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2603 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2603 }, level = 10, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2603 }, level = 26, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2603 }, level = 42, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2603 }, level = 58, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2603 }, level = 74, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2603 }, level = 82, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2603 }, level = 10, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2603 }, level = 26, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2603 }, level = 42, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2603 }, level = 58, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2603 }, level = 74, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2603 }, level = 82, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 45, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 70, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 968 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 968 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 968 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 968 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 968 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 968 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1089 }, level = 4, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1089 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1089 }, level = 30, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1089 }, level = 60, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1089 }, level = 81, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2240 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2240 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2240 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2240 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 58, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 74, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 82, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2867 }, level = 58, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2867 }, level = 74, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2867 }, level = 82, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1237 }, level = 11, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1237 }, level = 18, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1237 }, level = 26, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1237 }, level = 33, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1237 }, level = 42, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1237 }, level = 51, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1237 }, level = 62, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1237 }, level = 74, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1237 }, level = 82, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1238 }, level = 11, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1238 }, level = 18, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1238 }, level = 26, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1238 }, level = 33, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1238 }, level = 42, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1238 }, level = 51, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1238 }, level = 62, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1238 }, level = 74, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1238 }, level = 82, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1239 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1239 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1239 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1239 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1239 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1239 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1239 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1239 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1239 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1237 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1237 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1237 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1237 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1237 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1237 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1237 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1237 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1237 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1238 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1238 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1238 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1238 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1238 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1238 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1238 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1238 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1238 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1239 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1239 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1239 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1239 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1239 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1239 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1239 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1239 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1239 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1223 }, level = 83, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1223 }, level = 62, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1223 }, level = 74, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1223 }, level = 82, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1223 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1223 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1223 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1223 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 2956 }, level = 63, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
+ ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1221 }, level = 62, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1221 }, level = 74, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1221 }, level = 82, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2775 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2775 }, level = 60, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 855, 2775 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHash = 3453988289, },
+ ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 400 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHash = 1289910726, },
+ ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 394 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHash = 346351023, },
+ ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 394 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHash = 346351023, },
+ ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 397 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 3835899275, },
+ ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3870 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 694438389, },
+ ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2114 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, },
+ ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1601 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
+ ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1601 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
+ ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1618 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, },
+ ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 386 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1681904129, },
+ ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3809 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 614350381, },
+ ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2789 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHash = 304970526, },
+ ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3808 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
+ ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3808 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
+ ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3810 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3623716321, },
+ ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 396 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1235873320, },
+ ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3802 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 3392890360, },
+ ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3803 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHash = 2693266036, },
+ ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 8981 }, level = 63, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3577248251, },
+ ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3805 }, level = 63, group = "PowerChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "power_charge" }, tradeHash = 3945147290, },
+ ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3806 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHash = 583277599, },
+ ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3047 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 308309328, },
+ ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8168 }, level = 63, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335507772, },
+ ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5075 }, level = 63, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2228892313, },
+ ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6233 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2989883253, },
+ ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3176 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, },
+ ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 430 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "aura", "gem" }, tradeHash = 223595318, },
+ ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 130 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, },
+ ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 553 }, level = 63, group = "FireBurstOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1621470436, },
+ ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 530, 530.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 470688636, },
+ ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1554 }, level = 63, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, },
+ ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6294 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3049760680, },
+ ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2470 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2764164760, },
+ ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 428 }, level = 63, group = "SupportDamageOverTime", weightKey = { }, weightVal = { }, modTags = { "skill", "damage", "gem" }, tradeHash = 3846088475, },
+ ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2256 }, level = 63, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2256 }, level = 63, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2258 }, level = 63, group = "MarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 712554801, },
+ ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 5622 }, level = 63, group = "DecayOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3322709337, },
+ ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 8486 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1521863824, },
+ ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2171 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2076519255, },
+ ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7392 }, level = 63, group = "ManaGainedOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 3041288981, },
["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4491 }, level = 30, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, },
["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4491 }, level = 60, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, },
- ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 506 }, level = 20, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, },
- ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 502 }, level = 20, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, },
- ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 525 }, level = 20, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, },
- ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 507 }, level = 20, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, },
- ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1150 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHash = 4055307827, },
- ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1150 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHash = 4055307827, },
- ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1147 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1950806024, },
- ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1147 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1950806024, },
- ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3382807662, },
- ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1144 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3382807662, },
- ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1142 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHash = 1314617696, },
- ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1142 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHash = 1314617696, },
+ ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 497 }, level = 20, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, },
+ ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 493 }, level = 20, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, },
+ ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 516 }, level = 20, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, },
+ ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 498 }, level = 20, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, },
+ ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1138 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHash = 4055307827, },
+ ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1138 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHash = 4055307827, },
+ ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1135 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1950806024, },
+ ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1135 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1950806024, },
+ ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3382807662, },
+ ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1132 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3382807662, },
+ ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1130 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHash = 1314617696, },
+ ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1130 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHash = 1314617696, },
+ ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 867 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 869 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Defences", statOrder = { 2475 }, level = 72, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1389153006, },
+ ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1598 }, level = 72, group = "DamageasExtraPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4019237939, },
+ ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1598 }, level = 72, group = "DamageasExtraPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4019237939, },
+ ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 72, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 72, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 72, group = "DamageasExtraCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 72, group = "DamageasExtraCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 72, group = "DamageasExtraLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 72, group = "DamageasExtraLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6075 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHash = 1742651309, },
+ ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5256 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHash = 3679418014, },
+ ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 6972 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHash = 2970621759, },
+ ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2118 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHash = 4129825612, },
+ ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+4 to Level of all Attack Skills", statOrder = { 925 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3035140377, },
+ ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+6 to Level of all Attack Skills", statOrder = { 925 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3035140377, },
+ ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 919 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 919 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7064 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1881230714, },
+ ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 72, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4101445926, },
+ ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 72, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4101445926, },
+ ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 1076 }, level = 72, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
+ ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1077 }, level = 72, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
+ ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1078 }, level = 72, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
+ ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3855016469, },
+ ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6384 }, level = 72, group = "EssenceGoldDropped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3175163625, },
+ ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2462 }, level = 72, group = "EssenceAuraEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 315791320, },
}
\ No newline at end of file
diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua
index 3077a5d8d4..5de52e6b78 100644
--- a/src/Data/ModItemExclusive.lua
+++ b/src/Data/ModItemExclusive.lua
@@ -2,788 +2,811 @@
-- Item data (c) Grinding Gear Games
return {
- ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 889 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 262946222, },
- ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-4) to Level of all Cold Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
- ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 846 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1276 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
- ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold", statOrder = { 978 }, level = 40, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1443060084, },
- ["QuiverImplicitChanceToPoison1"] = { affix = "", "(10-15)% chance to Poison on Hit with Attacks", statOrder = { 2825 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
- ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (10-15)% chance to cause Bleeding", statOrder = { 2184 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
- ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 939 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 883 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 262946222, },
+ ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 4985 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2538411280, },
+ ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-4) to Level of all Cold Spell Skills", statOrder = { 921 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, },
+ ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 961 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1752419596, },
+ ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 960 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 960 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 960 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 939 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, },
+ ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 910 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 173226756, },
+ ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(90-95)% reduced Amount Recovered", statOrder = { 902 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 700317374, },
+ ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 841 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1264 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 980 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, },
+ ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2780 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
+ ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2153 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
+ ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 937 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 997 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, },
- ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1493 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, },
- ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 946 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 947 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 870 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 872 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 944 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 877 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 916 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 864 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 940 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 955 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 57 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, },
- ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7052 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, },
- ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 15, 16 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
- ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6050 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 881 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, },
- ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(100-140) to Armour", statOrder = { 866 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5148 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
- ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 977 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5146 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
- ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2914 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6054 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 462041840, },
- ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6257 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 731781020, },
- ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4566 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
- ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4566 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
- ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4566 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
- ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 682 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1691862754, },
- ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 680 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3676540188, },
- ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 684 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1412682799, },
- ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 683 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585126960, },
- ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 685 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3699444296, },
- ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 698 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810482573, },
- ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 686 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2778646494, },
- ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 690 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3854901951, },
- ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 688 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2994271459, },
- ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 697 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2016937536, },
- ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 687 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310778564, },
- ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you Kill a Rare or Unique Enemy", statOrder = { 696 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4010341289, },
- ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2914 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4162 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544800472, },
- ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4548 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, },
- ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 950 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
- ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["AxeImplicitRageOnHit1"] = { affix = "", "Gain 1 Rage on Hit", statOrder = { 6989 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1725749947, },
- ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7161 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1050883682, },
- ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1906 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, },
- ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 6936 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1574531783, },
- ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 6923 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, },
- ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(10-15)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "Causes Daze buildup equal to 100% of Damage dealt", statOrder = { 7163 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1559935218, },
- ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
- ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1723 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, },
- ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash damage to targets within 1.5 metres", statOrder = { 1076 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, },
- ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 6983 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1541903247, },
- ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 6934 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1503146834, },
- ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7044 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
- ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7060 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, },
- ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 969 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
- ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 1964 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, },
- ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1448 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
- ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 973 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9020 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544050945, },
- ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 6898 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4270348114, },
- ["FlailImplicitRollCritTwice1"] = { affix = "", "Forks Critical Hits", statOrder = { 1300 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, },
- ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 6907 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1137147997, },
- ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 6883 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, },
- ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2155 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
- ["BowImplicitLocalChanceToChain1"] = { affix = "", "(20-30)% chance to Chain an additional time", statOrder = { 6886 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1028592286, },
- ["BowImplicitAdditionalArrows1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 943 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, },
- ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8578 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3398402065, },
- ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1494 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1803308202, },
- ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 941 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, },
- ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6305 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980802737, },
+ ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1476 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, },
+ ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 944 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 945 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 864 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 866 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 942 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 871 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 913 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 953 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 859 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 938 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 953 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 913 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 56 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, },
+ ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7218 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, },
+ ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 17, 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, },
+ ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6141 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 875 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, },
+ ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(100-140) to Armour", statOrder = { 860 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5179 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
+ ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 978 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5177 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
+ ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2867 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6147 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 462041840, },
+ ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6355 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 731781020, },
+ ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4594 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
+ ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4594 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
+ ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4594 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, },
+ ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 678 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1691862754, },
+ ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 676 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3676540188, },
+ ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 680 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1412682799, },
+ ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 679 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 585126960, },
+ ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 681 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3699444296, },
+ ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 694 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1810482573, },
+ ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 682 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2778646494, },
+ ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 686 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3854901951, },
+ ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 684 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2994271459, },
+ ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 693 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2016937536, },
+ ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 683 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3310778564, },
+ ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you Kill a Rare or Unique Enemy", statOrder = { 692 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4010341289, },
+ ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 674 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { "utility_flask", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4146282829, },
+ ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4130 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544800472, },
+ ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, },
+ ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8467 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, },
+ ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
+ ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1546 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, },
+ ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["AxeImplicitRageOnHit1"] = { affix = "", "Gain 1 Rage on Hit", statOrder = { 7129 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1725749947, },
+ ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7325 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1050883682, },
+ ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1885 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, },
+ ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7076 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1574531783, },
+ ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7062 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, },
+ ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 915 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7328 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, },
+ ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 981 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
+ ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1700 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, },
+ ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash damage to targets within 1.5 metres", statOrder = { 1063 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, },
+ ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7125 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1541903247, },
+ ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7074 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1503146834, },
+ ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7210 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
+ ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7225 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, },
+ ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 970 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, },
+ ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 1933 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, },
+ ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
+ ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 974 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9275 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, },
+ ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7037 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4270348114, },
+ ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1288 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, },
+ ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7046 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1137147997, },
+ ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7022 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, },
+ ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2124 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["BowImplicitLocalChanceToChain1"] = { affix = "", "(20-30)% chance to Chain an additional time", statOrder = { 7025 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1028592286, },
+ ["BowImplicitAdditionalArrows1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 941 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, },
+ ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8821 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3398402065, },
+ ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1477 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1803308202, },
+ ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 939 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, },
+ ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6409 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980802737, },
["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, },
- ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4082 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1823942939, },
- ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3085 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, },
- ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 875 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 2748665614, },
- ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 983749596, },
- ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 3299347043, },
- ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1050105434, },
+ ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4043 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1823942939, },
+ ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3033 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, },
+ ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 2748665614, },
+ ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 983749596, },
+ ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 3299347043, },
+ ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1050105434, },
["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 992 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHash = 986397080, },
["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 994 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHash = 2160282525, },
["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 995 }, level = 1, group = "ReducedShockDuration", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 99927264, },
- ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, nodeType = 1, tradeHash = 3372524247, },
- ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, nodeType = 1, tradeHash = 4220027924, },
- ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 1, tradeHash = 1671376347, },
- ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, nodeType = 1, tradeHash = 2923486259, },
- ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, nodeType = 2, tradeHash = 4095671657, },
- ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, nodeType = 2, tradeHash = 3676141501, },
- ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 2, tradeHash = 1011760251, },
- ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 954 }, level = 1, group = "MaximumChaosResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, nodeType = 2, tradeHash = 1301765461, },
- ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 1088 }, level = 1, group = "PercentageStrength", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 734614379, },
- ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1090 }, level = 1, group = "PercentageIntelligence", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 656461285, },
- ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1089 }, level = 1, group = "PercentageDexterity", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 4139681126, },
- ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 876 }, level = 1, group = "JewelSpirit", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2704225257, },
- ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsFire", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHash = 3015669065, },
- ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsCold", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHash = 2505884597, },
- ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHash = 3278136794, },
- ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1620 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHash = 3398787959, },
- ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength40"] = { affix = "", "-(20-10) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 945 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity43UNUSED"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 946 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 947 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 944 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist25"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist21"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist13"] = { affix = "", "-50% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist19"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 872 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife51"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease4"] = { affix = "", "25% reduced maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 873 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 873 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 874 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["UniqueMaximumManaIncrease1"] = { affix = "", "10% increased maximum Mana", statOrder = { 875 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 875 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 875 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 875 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 866 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 866 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 866 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 866 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
- ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 868 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 868 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 868 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 868 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
- ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 870 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 870 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 870 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 867 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
- ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
- ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 836 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 836 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
- ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 835, 836 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 835, 836 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(400-500)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(80-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(50-80)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 837 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
- ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 838 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
- ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
- ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 840 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
- ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(80-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 841 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(60-90)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(200-300)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
- ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(200-300)% increased Armour, Evasion and Energy Shield", statOrder = { 1377 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
- ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 1377 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
- ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(40-60)% increased Armour, Evasion and Energy Shield", statOrder = { 1377 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
- ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(60-80)% increased Armour, Evasion and Energy Shield", statOrder = { 1377 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
- ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, nodeType = 1, tradeHash = 3372524247, },
+ ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, nodeType = 1, tradeHash = 4220027924, },
+ ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 1, tradeHash = 1671376347, },
+ ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, nodeType = 1, tradeHash = 2923486259, },
+ ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, nodeType = 2, tradeHash = 4095671657, },
+ ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, nodeType = 2, tradeHash = 3676141501, },
+ ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 2, tradeHash = 1011760251, },
+ ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 952 }, level = 1, group = "MaximumChaosResistance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, nodeType = 2, tradeHash = 1301765461, },
+ ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 1076 }, level = 1, group = "PercentageStrength", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 734614379, },
+ ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1078 }, level = 1, group = "PercentageIntelligence", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 656461285, },
+ ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1077 }, level = 1, group = "PercentageDexterity", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, nodeType = 2, tradeHash = 4139681126, },
+ ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 870 }, level = 1, group = "JewelSpirit", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2704225257, },
+ ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 1, group = "DamageGainedAsFire", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHash = 3015669065, },
+ ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 1, group = "DamageGainedAsCold", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHash = 2505884597, },
+ ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHash = 3278136794, },
+ ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1599 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHash = 3398787959, },
+ ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength40UNUSED"] = { affix = "", "-(20-10) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 943 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueStrength44"] = { affix = "", "+(25-40) to Strength", statOrder = { 943 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 944 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 945 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 945 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 942 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist25"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist21"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist19"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 866 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife51"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease4"] = { affix = "", "25% reduced maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 867 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 868 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["UniqueMaximumManaIncrease1"] = { affix = "", "10% increased maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 860 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 860 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 860 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 860 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, },
+ ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 862 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, },
+ ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 864 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 864 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 864 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 861 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, },
+ ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 830 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, },
+ ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 831 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 831 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 831 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, },
+ ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 830, 831 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 830, 831 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(400-500)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(80-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(50-80)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(150-200)% increased Armour", statOrder = { 832 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 832 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, },
+ ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 833 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, },
+ ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 834 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, },
+ ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 835 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 835 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(80-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 836 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(60-90)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 837 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, },
+ ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(200-300)% increased Armour, Evasion and Energy Shield", statOrder = { 1361 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
+ ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 1361 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
+ ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(40-60)% increased Armour, Evasion and Energy Shield", statOrder = { 1361 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
+ ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(60-80)% increased Armour, Evasion and Energy Shield", statOrder = { 1361 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
+ ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
@@ -803,352 +826,370 @@ return {
["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
- ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity17"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (31-49) Physical Thorns damage", statOrder = { 9217 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
- ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 845 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
- ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 846 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
- ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 847 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 847 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 847 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
- ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 848 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["UniqueAddedLightningDamage2"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 848 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 848 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
- ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1233 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1233 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1233 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
- ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (40-48) to (69-79) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 825 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
- ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 826 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
- ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (200-300) Lightning Damage", statOrder = { 827 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
- ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 886 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
- ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 887 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
- ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 888 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
- ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1130 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
- ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1798257884, },
- ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 859 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
- ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 5999 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHash = 599749213, },
- ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 6850 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, },
- ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 6850 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, },
- ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 5767 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2901213448, },
- ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 929 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
- ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 5432 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 805298720, },
- ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, },
- ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration8"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 966 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 973 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
- ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per Enemy Killed", statOrder = { 970 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
- ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 975 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
- ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1447 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
- ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
- ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 940 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 940 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
- ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
- ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 828 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
- ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
- ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(10-20)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
- ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, },
- ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(30-40)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
- ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
- ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
- ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 990 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, },
+ ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity17"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 4905 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1536107934, },
+ ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (31-49) Physical Thorns damage", statOrder = { 9483 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, },
+ ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 840 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, },
+ ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 841 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, },
+ ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 842 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 842 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 842 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, },
+ ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 843 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["UniqueAddedLightningDamage2UNUSED"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 843 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 843 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, },
+ ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1221 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1221 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1221 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, },
+ ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 821 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, },
+ ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 822 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, },
+ ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (200-300) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (133-247) Lightning Damage", statOrder = { 823 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, },
+ ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 880 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, },
+ ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 881 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, },
+ ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 882 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, },
+ ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1118 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 878 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1798257884, },
+ ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 854 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 919 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 919 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, },
+ ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 6090 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHash = 599749213, },
+ ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 6988 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, },
+ ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 6988 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, },
+ ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 5831 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2901213448, },
+ ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, },
+ ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 5479 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 805298720, },
+ ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration8"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 974 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, },
+ ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per Enemy Killed", statOrder = { 971 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, },
+ ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per Enemy Killed", statOrder = { 976 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, },
+ ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1430 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
+ ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 916 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1998951374, },
+ ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 938 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 938 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 938 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 891 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 289128254, },
+ ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 824 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, },
+ ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 914 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, },
+ ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 888 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 888 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, },
+ ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 915 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 915 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, },
+ ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, },
+ ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 889 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3057012405, },
+ ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
@@ -1169,53 +1210,54 @@ return {
["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 999 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
- ["UniqueLocalBlockChance1"] = { affix = "", "(30-40)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance2"] = { affix = "", "80% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance3"] = { affix = "", "(30-40)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance4"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance5"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance10"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance11"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueLocalBlockChance14"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 832 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
- ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 844 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
- ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 844 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
- ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 844 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
+ ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 828 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, },
+ ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 839 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
+ ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 839 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
+ ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 839 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, },
["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 992 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, },
["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 992 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, },
["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 995 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 99927264, },
["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 993 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1874553720, },
["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 994 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 996 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, },
- ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 949 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3771516363, },
- ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 950 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 947 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3771516363, },
+ ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, },
["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
@@ -1224,1065 +1266,1062 @@ return {
["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, },
- ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 943 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, },
- ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges used", statOrder = { 977 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 977 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 977 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5146 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
- ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5146 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
- ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5148 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
- ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5148 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
- ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 942 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
- ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 942 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
- ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 942 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
- ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
- ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
- ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
+ ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 941 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, },
+ ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges used", statOrder = { 978 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 978 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 978 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5177 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
+ ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5177 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, },
+ ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5179 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
+ ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5179 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, },
+ ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 940 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
+ ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 940 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
+ ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 940 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, },
+ ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
+ ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
+ ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
+ ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, },
["UniqueFreezeDamageIncrease1"] = { affix = "", "100% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, },
["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, },
["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, },
["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, },
["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, },
["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, },
- ["UniqueShockChanceIncrease3"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, },
- ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 982 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 748522257, },
- ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 979 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, },
- ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 979 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, },
- ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
- ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
- ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 855 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage with Attacks", statOrder = { 861 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
- ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
- ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
- ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 853 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
- ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1620 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, },
+ ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, },
+ ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 983 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 748522257, },
+ ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, },
+ ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, },
+ ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 981 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
+ ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 981 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
+ ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 981 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, },
+ ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8245 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2677352961, },
+ ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage with Attacks", statOrder = { 856 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, },
+ ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1599 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, },
["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, },
["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, },
["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, },
- ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1202301673, },
- ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, },
- ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8584 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3596695232, },
- ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8046 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3028809864, },
- ["UniqueCursesNeverExpire1"] = { affix = "", "Your Curses have infinite Duration", statOrder = { 1847 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2609822974, },
- ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1663 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
- ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1001 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3196823591, },
- ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1004 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1366840608, },
- ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, },
- ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1002 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, },
- ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 911 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4131977470, },
- ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, },
- ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, },
- ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 6985 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1873752457, },
- ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, },
- ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, },
- ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 881 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, },
- ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 5675 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1298316550, },
- ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1453 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, },
- ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 9215 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1993950627, },
- ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9214 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1515531208, },
- ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 8515 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004468512, },
- ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 6889 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2333085568, },
- ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 823 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
- ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 823 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
- ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 823 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
- ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 823 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
- ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 6896 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2260055669, },
- ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage when on Low Life", statOrder = { 4374 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4246007234, },
- ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4378 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2462683918, },
- ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 8636 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200678966, },
- ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 9337, 9337.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2894895028, },
- ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3927 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2356156926, },
- ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3928 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 65133983, },
- ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3005 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
- ["UniqueDoubleIgniteChance1"] = { affix = "", "Chance to Ignite is doubled", statOrder = { 5092 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1540254896, },
- ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 9034 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3148264775, },
- ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1074 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, },
- ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1074 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, },
- ["UniqueMaximumBlockChance1"] = { affix = "", "+(3-5)% to maximum Block chance", statOrder = { 1676 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
- ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1676 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
- ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 6754 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335699483, },
- ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1493 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, },
- ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2153 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 412462523, },
- ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 5870 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1618482990, },
- ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2175 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, },
- ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1852 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
- ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6052 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2310741722, },
- ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7182 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 356835700, },
- ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7179 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1902409192, },
- ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5029 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1689729380, },
- ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 9371 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3154256486, },
- ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 9372 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1143240184, },
- ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "Armour applies to Elemental Damage", statOrder = { 4260 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3362812763, },
- ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2840 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4112450013, },
- ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2496 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2913235441, },
- ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 8529 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4195198267, },
- ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4060 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2161347476, },
- ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 9435 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, },
- ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4414 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, },
- ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4349 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, },
- ["UniqueAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 57 }, level = 1, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, },
- ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 8424 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHash = 798767971, },
- ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 8333 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 997343726, },
- ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take 20% of damage from Blocked Hits", statOrder = { 4492 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, },
- ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4492 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, },
- ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5415 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 381470861, },
- ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4084 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3122852693, },
- ["UniqueUnarmedMoreDamageWithMaceSkills1"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2134 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, },
- ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6242 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3292710273, },
- ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6243 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1466716929, },
- ["UniqueIgniteDuration1"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["UniqueIgniteEffect1"] = { affix = "", "50% increased Magnitude of Ignite you inflict", statOrder = { 6596 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
- ["UniqueIgniteEffect2"] = { affix = "", "100% increased Magnitude of Ignite you inflict", statOrder = { 6596 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
- ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5835 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2515006979, },
- ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 6883 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, },
- ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5455 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2875218423, },
- ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3880 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, },
- ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Life Flasks do not recover Life", statOrder = { 4524 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 265717301, },
- ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 8415 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 259470957, },
- ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 4180 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4283407333, },
- ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 8681 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, },
- ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1534 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
- ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5280 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3764198549, },
- ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 8915 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2592455368, },
- ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 5923 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 88817332, },
- ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1496 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
- ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 6892 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1910743684, },
- ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 6893 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3761294489, },
- ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 6891 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156230257, },
- ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 6935 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158324489, },
- ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 50% increased Damage", statOrder = { 2158 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
- ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "25% of Maximum Life Converted to Energy Shield", statOrder = { 8022 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
- ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3787 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, },
- ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3788 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, },
- ["UniqueUndeadMinionReservation1"] = { affix = "", "Undead Minions have 20% reduced Reservation", statOrder = { 9332 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1176947534, },
- ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1407 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, },
- ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2568 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2306924373, },
- ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2570 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3612464552, },
- ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2571 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 947072590, },
- ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2572 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 215346464, },
- ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5440 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4275855121, },
- ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 8811 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2535267021, },
- ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 8425 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2635559734, },
- ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 5579 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1576794517, },
- ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4168 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4012215578, },
- ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Freeze as though dealing Cold damage equal to 10% of your maximum Mana when Hit", statOrder = { 6077 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2006107135, },
- ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 2155 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
- ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 2155 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
- ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1914 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
- ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5186 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, },
- ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1574 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
- ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1574 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
- ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4528 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1017648537, },
- ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 9087 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2230687504, },
- ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1571 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, },
- ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1088 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
- ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 1088 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
- ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1089 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
- ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1089 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
- ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1090 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
- ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1090 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
- ["UniquePercentageIntelligence3"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1090 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
- ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Ignite on you", statOrder = { 6595 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1269971728, },
- ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1436 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, },
- ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 8842 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, },
- ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 9218 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3414243317, },
- ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose Skill on Step", statOrder = { 6971 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4036087867, },
- ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 8422 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301852600, },
- ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1500 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
- ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1389 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
- ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2921 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
- ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2233 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, },
- ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
- ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
- ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
- ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
- ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8385 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1755296234, },
- ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 8783 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 613752285, },
- ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1719 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
- ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 5584 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3872034802, },
- ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1536 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
- ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1706 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4187571952, },
- ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 1972 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 854225133, },
- ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4006, 4007, 4008, 4009, 6237 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1042038498, },
- ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
- ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5185 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2955966707, },
- ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2154 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, },
- ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 8490 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1374654984, },
- ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3359 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1419390131, },
- ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 8197 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2639966148, },
- ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 8197 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2639966148, },
- ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 8197 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2639966148, },
- ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8180 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 943702197, },
- ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1538 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, },
- ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% chance for Flasks you use to not consume Charges", statOrder = { 3830 }, level = 1, group = "FlaskChanceToNotConsumeCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 311641062, },
- ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2514 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, },
- ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 8541 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 62849030, },
- ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2530 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746505085, },
- ["UniqueLifeLeechAmount1"] = { affix = "", "100% increased amount of Life Leeched", statOrder = { 1839 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2112395885, },
- ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1103 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2423248184, },
- ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1102 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3735888493, },
- ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2246 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2246 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8470 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, },
- ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 6688 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3703496511, },
- ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3215 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1520059289, },
- ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5104 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 78985352, },
- ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1411 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
- ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1526 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, },
- ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 9053 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2402413437, },
- ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5031 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 892489594, },
- ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 8254 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 610276769, },
- ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3071 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHash = 688802590, },
- ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 6979 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 769129523, },
- ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 6899 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289086688, },
- ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Fire Exposure when this Weapon Fully Breaks Armour", statOrder = { 6901 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3439162551, },
- ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2914 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
- ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7076 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3686997387, },
- ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6240 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, },
- ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 9546 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 352044736, },
- ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 9534 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995914769, },
- ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4541 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2041668411, },
- ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 50% of Physical damage as Extra damage of each Element", statOrder = { 3857 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
- ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 8423 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1361645249, },
- ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 8312 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585231074, },
- ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 6897 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2895144208, },
- ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 6895 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214130968, },
- ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 899 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4287671144, },
- ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 9335, 9335.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 603021645, },
- ["UniqueCannotBlock1"] = { affix = "", "You cannot Block", statOrder = { 1924 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3162258068, },
- ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 7997 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679696791, },
- ["UniqueCanBlockAllDamage1"] = { affix = "", "Can Block damage from all Hits", statOrder = { 4804 }, level = 1, group = "CanBlockAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3902042119, },
- ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 9517 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 65135897, },
- ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6105 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 423304126, },
- ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4400 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4145314483, },
- ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude", statOrder = { 2533 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHash = 2949096603, },
- ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup", statOrder = { 2534 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHash = 1261612903, },
- ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2535 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1011772129, },
- ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills gain a Base Life Cost equal to 50% of Base Mana Cost", statOrder = { 4547 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, },
- ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills gain a Base Life Cost equal to 10% of Base Mana Cost", statOrder = { 4547 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, },
- ["UniqueSpellDamageLifeLeech1"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4525 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 782941180, },
- ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2142 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, },
- ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 300%", statOrder = { 5374 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 824024007, },
- ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage", statOrder = { 6594 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1433051415, },
- ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1876 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
- ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 9338 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 93764325, },
- ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4149 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 841429130, },
- ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4548 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, },
- ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4498 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
- ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4498 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
- ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4498 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
- ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4142 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2438634449, },
- ["UniqueLifeLeechToAllies1"] = { affix = "", "When you Leech Life from a Hit, Allies in your Presence also Leech the same amount of Life", statOrder = { 6756 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605721598, },
- ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8040 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 796381300, },
- ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 8596 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3464380325, },
- ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1530 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, },
- ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3221 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
- ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3222 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, },
- ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8130 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1403346025, },
- ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2137 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2492660287, },
- ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2151 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, },
- ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3006 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4250009622, },
- ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1808 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
- ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 8692 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939832726, },
- ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5417 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3563080185, },
- ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 8909 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50721145, },
- ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1636 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
- ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1426 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, },
- ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 8978 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2412053423, },
- ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 6766 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2812872407, },
- ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2384 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
- ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2173 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, },
- ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2171 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, },
- ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4175 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2420248029, },
- ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4176 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1291285202, },
- ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4177 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1717295693, },
- ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4178 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1375667591, },
- ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "Armour also applies to Lightning damage taken from Hits", statOrder = { 4485 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental", "lightning" }, tradeHash = 2134207902, },
- ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 6847 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3999959974, },
- ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 5814 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1546580830, },
- ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2146 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, },
- ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 7987 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2584264074, },
- ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 6738 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 720388959, },
- ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 6751 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2714890129, },
- ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 6737 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1245896889, },
- ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 9343 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404607671, },
- ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 9342 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810907437, },
- ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6260 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, },
- ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6260 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, },
- ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6261 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
- ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6261 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
- ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6261 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
- ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6258 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 185580205, },
- ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 9540 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, },
- ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 9540 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, },
- ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2716 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 2442647190, },
- ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 5829 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 147006673, },
- ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1563 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, },
- ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 9360 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3751072557, },
- ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "1% increased Movement Speed per 800 Evasion Rating", "Other Modifiers to Movement Speed do not apply", statOrder = { 8257, 8257.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3881997959, },
- ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 6739 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200347828, },
- ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7214 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1839832419, },
- ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 8336 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHash = 1049080093, },
- ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 8335 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHash = 1484500028, },
- ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1620 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3398787959, },
- ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 8348 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHash = 261503687, },
- ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5792 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, },
- ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2686 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, },
- ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2329 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
- ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 9341 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4258409981, },
- ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4189 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214228141, },
+ ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1202301673, },
+ ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, },
+ ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8828 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3596695232, },
+ ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8239 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3028809864, },
+ ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1824 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2609822974, },
+ ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1642 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
+ ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1642 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
+ ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1001 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3196823591, },
+ ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1004 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1366840608, },
+ ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3139816101, },
+ ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1002 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3139816101, },
+ ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 908 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 4131977470, },
+ ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
+ ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you Kill an Enemy", statOrder = { 1000 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 828533480, },
+ ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 607 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1873752457, },
+ ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 900 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 900 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2541588185, },
+ ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 875 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, },
+ ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 5737 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1298316550, },
+ ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1436 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, },
+ ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 9481 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1993950627, },
+ ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9480 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1515531208, },
+ ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 8754 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004468512, },
+ ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7028 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2333085568, },
+ ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 819 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
+ ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 819 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
+ ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 819 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
+ ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 819 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, },
+ ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7035 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2260055669, },
+ ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage when on Low Life", statOrder = { 4366 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4246007234, },
+ ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4370 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2462683918, },
+ ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 8882 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200678966, },
+ ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 9605, 9605.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2894895028, },
+ ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3868 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2356156926, },
+ ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3869 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 65133983, },
+ ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2956 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
+ ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5120 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1540254896, },
+ ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 9293 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3148264775, },
+ ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1060 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, },
+ ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1060 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, },
+ ["UniqueMaximumBlockChance1"] = { affix = "", "+(3-5)% to maximum Block chance", statOrder = { 1655 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
+ ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1655 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
+ ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 6888 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335699483, },
+ ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1476 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, },
+ ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2122 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 412462523, },
+ ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 5950 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1618482990, },
+ ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2144 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, },
+ ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1829 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
+ ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6145 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2310741722, },
+ ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7347 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 356835700, },
+ ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7344 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1902409192, },
+ ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5064 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1689729380, },
+ ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 9640 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3154256486, },
+ ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 9641 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1143240184, },
+ ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2795 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4112450013, },
+ ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2460 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2913235441, },
+ ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 8773 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4195198267, },
+ ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4013 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2161347476, },
+ ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 9715 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, },
+ ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4408 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, },
+ ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4336 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, },
+ ["UniqueAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 56 }, level = 1, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, },
+ ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 8653 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHash = 798767971, },
+ ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 8547 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 997343726, },
+ ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4493 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, },
+ ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4493 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, },
+ ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (15-20)% of damage from Blocked Hits", statOrder = { 4493 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, },
+ ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5456 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 381470861, },
+ ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4045 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3122852693, },
+ ["UniqueUnarmedMoreDamageWithMaceSkills1"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2103 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, },
+ ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6341 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3292710273, },
+ ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6342 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1466716929, },
+ ["UniqueIgniteDuration1"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["UniqueIgniteEffect1"] = { affix = "", "50% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
+ ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
+ ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
+ ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5905 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2515006979, },
+ ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7022 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, },
+ ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5506 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2875218423, },
+ ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3821 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, },
+ ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Life Flasks do not recover Life", statOrder = { 4539 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 265717301, },
+ ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 8645 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 259470957, },
+ ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 4149 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4283407333, },
+ ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 8929 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, },
+ ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1517 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
+ ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5315 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3764198549, },
+ ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9186 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2592455368, },
+ ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6010 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 88817332, },
+ ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1479 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
+ ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7031 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1910743684, },
+ ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7032 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3761294489, },
+ ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7030 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156230257, },
+ ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7075 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158324489, },
+ ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 50% increased Damage", statOrder = { 2127 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
+ ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "25% of Maximum Life Converted to Energy Shield", statOrder = { 8209 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
+ ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3729 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, },
+ ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3730 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, },
+ ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 9599 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2308632835, },
+ ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1390 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, },
+ ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2531 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2306924373, },
+ ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2533 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3612464552, },
+ ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2534 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 947072590, },
+ ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2535 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 215346464, },
+ ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5487 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4275855121, },
+ ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9074 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2535267021, },
+ ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 8654 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2635559734, },
+ ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 5634 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1576794517, },
+ ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4136 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4012215578, },
+ ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4037 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1435496528, },
+ ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 2124 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 2124 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1893 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
+ ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5219 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, },
+ ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1557 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
+ ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1557 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
+ ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4543 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1017648537, },
+ ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 9348 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2230687504, },
+ ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1554 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, },
+ ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1076 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
+ ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 1076 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
+ ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1077 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
+ ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1077 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
+ ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1078 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
+ ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1078 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
+ ["UniquePercentageIntelligence3"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1078 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
+ ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 6714 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1269971728, },
+ ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1419 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, },
+ ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9107 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, },
+ ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 9485 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3414243317, },
+ ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose Skill on Step", statOrder = { 7112 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4036087867, },
+ ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 8651 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301852600, },
+ ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1483 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
+ ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1372 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
+ ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2874 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
+ ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2202 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, },
+ ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
+ ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
+ ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
+ ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, },
+ ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8612 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1755296234, },
+ ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9045 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 613752285, },
+ ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1696 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
+ ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 5639 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3872034802, },
+ ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1519 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
+ ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1683 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4187571952, },
+ ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 1940 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 854225133, },
+ ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 3947, 3948, 3949, 3950, 6336 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1042038498, },
+ ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5218 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2955966707, },
+ ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2123 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, },
+ ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 8727 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1374654984, },
+ ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3305 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1419390131, },
+ ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, },
+ ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, },
+ ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, },
+ ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8383 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences", "minion" }, tradeHash = 943702197, },
+ ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1521 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, },
+ ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% chance for Flasks you use to not consume Charges", statOrder = { 3771 }, level = 1, group = "FlaskChanceToNotConsumeCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 311641062, },
+ ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2478 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, },
+ ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 8784 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 62849030, },
+ ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2494 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746505085, },
+ ["UniqueLifeLeechAmount1"] = { affix = "", "100% increased amount of Life Leeched", statOrder = { 1816 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2112395885, },
+ ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1091 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2423248184, },
+ ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1090 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3735888493, },
+ ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2214 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2214 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8704 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, },
+ ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 6814 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3703496511, },
+ ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3161 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1520059289, },
+ ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5132 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 78985352, },
+ ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1394 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
+ ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1509 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, },
+ ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 9313 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2402413437, },
+ ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 606 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2980117882, },
+ ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5066 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 892489594, },
+ ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 8461 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 610276769, },
+ ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3019 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHash = 688802590, },
+ ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7120 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 769129523, },
+ ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7038 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289086688, },
+ ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Fire Exposure when this Weapon Fully Breaks Armour", statOrder = { 7040 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3439162551, },
+ ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, },
+ ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7240 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3686997387, },
+ ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6339 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, },
+ ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 9826 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 352044736, },
+ ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 9814 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995914769, },
+ ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4563 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2041668411, },
+ ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 50% of Physical damage as Extra damage of each Element", statOrder = { 3798 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
+ ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 8652 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1361645249, },
+ ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 8522 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585231074, },
+ ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7036 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2895144208, },
+ ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7034 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214130968, },
+ ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 896 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4287671144, },
+ ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 9603, 9603.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 603021645, },
+ ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2861 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, },
+ ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8177 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679696791, },
+ ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 9797 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 65135897, },
+ ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6197 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 423304126, },
+ ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4393 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4145314483, },
+ ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2497 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHash = 2949096603, },
+ ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2498 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHash = 1261612903, },
+ ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2499 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1011772129, },
+ ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills gain a Base Life Cost equal to 50% of Base Mana Cost", statOrder = { 4571 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, },
+ ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills gain a Base Life Cost equal to 10% of Base Mana Cost", statOrder = { 4571 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, },
+ ["UniqueSpellDamageLifeLeech1"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4540 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 782941180, },
+ ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2111 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, },
+ ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5415 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 2516303866, },
+ ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage", statOrder = { 6713 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1433051415, },
+ ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1855 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
+ ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 9606 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 93764325, },
+ ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4111 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 841429130, },
+ ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, },
+ ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
+ ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
+ ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, },
+ ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4103 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2438634449, },
+ ["UniqueLifeLeechToAllies1"] = { affix = "", "When you Leech Life from a Hit, Allies in your Presence also Leech the same amount of Life", statOrder = { 6891 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605721598, },
+ ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8232 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 796381300, },
+ ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 8841 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3464380325, },
+ ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1513 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, },
+ ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3167 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
+ ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3168 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, },
+ ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8326 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1403346025, },
+ ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2106 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2492660287, },
+ ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2120 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, },
+ ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 2957 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4250009622, },
+ ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1785 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
+ ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 8940 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939832726, },
+ ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5460 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3563080185, },
+ ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9180 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50721145, },
+ ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1615 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
+ ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1409 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, },
+ ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 9248 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2412053423, },
+ ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 6901 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2812872407, },
+ ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
+ ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2142 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, },
+ ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2140 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, },
+ ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4143 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2420248029, },
+ ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4144 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1291285202, },
+ ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4145 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1717295693, },
+ ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4146 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1375667591, },
+ ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4485 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental", "lightning" }, tradeHash = 2134207902, },
+ ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 6985 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3999959974, },
+ ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 5882 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1546580830, },
+ ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(20-40)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2115 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, },
+ ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8167 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2584264074, },
+ ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 6869 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 720388959, },
+ ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 6883 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2714890129, },
+ ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 6868 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1245896889, },
+ ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 9611 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404607671, },
+ ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 9610 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810907437, },
+ ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6359 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, },
+ ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6359 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, },
+ ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6360 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
+ ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6360 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
+ ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6360 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, },
+ ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6356 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 185580205, },
+ ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 9820 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, },
+ ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 9820 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, },
+ ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2671 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 2442647190, },
+ ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 5899 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 147006673, },
+ ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1546 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, },
+ ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 9628 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3751072557, },
+ ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "1% increased Movement Speed per 800 Evasion Rating", "Other Modifiers to Movement Speed do not apply", statOrder = { 8465, 8465.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3881997959, },
+ ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 6870 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200347828, },
+ ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7382 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1839832419, },
+ ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 8554 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHash = 1049080093, },
+ ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 8553 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHash = 1484500028, },
+ ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1599 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3398787959, },
+ ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 8573 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHash = 261503687, },
+ ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5859 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, },
+ ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2641 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, },
+ ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2297 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
+ ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 9609 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4258409981, },
+ ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4159 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214228141, },
["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 989 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2511217560, },
- ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2370 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3811649872, },
- ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4527 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3971919056, },
- ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1921 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, },
- ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2245 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, },
- ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5294 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 11014011, },
- ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2920 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1316278494, },
- ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 9431 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2567751411, },
- ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2272 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3397 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1723061251, },
- ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1338 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
- ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1909 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
- ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6241 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3199910734, },
- ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 8649 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933909365, },
- ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Defences", statOrder = { 2511 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1389153006, },
- ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6281 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3175163625, },
- ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2768 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 410952253, },
- ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 6780 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3276271783, },
- ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (10-20)% of Missing Life before being Hit by an Enemy", statOrder = { 8226 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1990472846, },
- ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5562 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3070990531, },
- ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6130, 6130.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800049475, },
- ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence", statOrder = { 4042 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 621493497, },
- ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
- ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3924 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1631928082, },
- ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3365 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2293111154, },
- ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3933 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, },
- ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8024 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
+ ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2338 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3811649872, },
+ ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4542 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3971919056, },
+ ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1900 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, },
+ ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2213 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, },
+ ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5329 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 11014011, },
+ ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2873 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1316278494, },
+ ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 9710 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2567751411, },
+ ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2240 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3343 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1723061251, },
+ ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1326 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
+ ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1888 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
+ ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1882 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 321765853, },
+ ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6340 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3199910734, },
+ ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 8898 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933909365, },
+ ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Defences", statOrder = { 2475 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1389153006, },
+ ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6384 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3175163625, },
+ ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2723 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 410952253, },
+ ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 6916 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3276271783, },
+ ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (10-20)% of Missing Life before being Hit by an Enemy", statOrder = { 8432 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1990472846, },
+ ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5617 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3070990531, },
+ ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6225, 6225.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800049475, },
+ ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence", statOrder = { 3980 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 621493497, },
+ ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
+ ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3865 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1631928082, },
+ ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3311 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2293111154, },
+ ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3874 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, },
+ ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8211 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 4479 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, },
- ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 5863 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2350411833, },
- ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 6752 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 999436592, },
- ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 9357, 9357.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2247039371, },
- ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1890 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, },
- ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1348 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, },
- ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Critical Hits do not deal extra Damage", statOrder = { 7056 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1508661598, },
- ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4552 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2715190555, },
- ["UniqueLocalDazeBuildup1"] = { affix = "", "Causes Daze buildup equal to 100% of Damage dealt", statOrder = { 7163 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1559935218, },
- ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause Aftershocks", statOrder = { 9518 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2045949233, },
- ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 5849 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 793801176, },
- ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9020 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544050945, },
- ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
- ["UniqueChanceForNoBoltReload1"] = { affix = "", "100% chance to not consume a bolt if you've Reloaded Recently", statOrder = { 5408 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 842299438, },
- ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 9368 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2838161567, },
- ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3403 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3384885789, },
- ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3731 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868118796, },
- ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 812 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, },
- ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 814 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
- ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 814 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
- ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5194 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, },
- ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 6973 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 826162720, },
- ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 6976 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 811217923, },
- ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 6975 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 704919631, },
- ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 6921 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4031148736, },
- ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 6920 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3598729471, },
- ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 6922 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 21302430, },
- ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 5997 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3247805335, },
- ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5240 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4207433208, },
- ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 6846 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3631920880, },
- ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 6974 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1652674074, },
- ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 6972 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1524904258, },
- ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 5987 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, },
- ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 5673 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258119672, },
- ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 4040, 4041 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1898996531, },
- ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 5920 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1040569494, },
- ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3079 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1094937621, },
- ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 8743 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 632761194, },
- ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1860 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, },
- ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5067 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555237944, },
- ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 11 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1161337167, },
- ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of charges used by Charms granted to your Life Flasks", statOrder = { 5147 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369960685, },
- ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4832 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, },
- ["UniqueLocalSoulCoreEffect1"] = { affix = "", "100% increased effect of Socketed Soul Cores", statOrder = { 7077 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4065505214, },
- ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 8640 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, },
- ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain (1-3) random Charge on reaching Maximum Rage", statOrder = { 6124 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2906384323, },
- ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7172 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3851480592, },
- ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 6770 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3947672598, },
- ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 8701 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457411584, },
- ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4529 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2942704390, },
- ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 6665 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1538879632, },
- ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 6661 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314536008, },
- ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Cold Exposure on Hit, lowering Total Cold Resistance by (20-30)%", statOrder = { 5229 }, level = 1, group = "ColdExposureEffectOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3005701891, },
- ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5230 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2243456805, },
- ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 6667 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2665488635, },
- ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for 15 seconds", statOrder = { 5810 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1052498387, },
- ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 5805 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1464727508, },
- ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 9339 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 396200591, },
- ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5107 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 965913123, },
- ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1413 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, },
- ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1856 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
- ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7039 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2437476305, },
- ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7038 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3647242059, },
- ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7067 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555918911, },
- ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7068 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933024469, },
- ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 8601 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3826125995, },
- ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 10 seconds", statOrder = { 7085 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 636464211, },
- ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 30% less Damage from Hits", "Take 30% less Damage over time", statOrder = { 6323, 6323.1, 6323.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258955603, },
- ["UniqueLuckyBlockChance1"] = { affix = "", "Block chance is Lucky", statOrder = { 4727 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1469179771, },
- ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5174 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2620375641, },
- ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4145 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 874646180, },
- ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 9211 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1315743832, },
- ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4545 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
- ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4545 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
- ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 8331 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4117005593, },
- ["UniqueSpiritPerSocketable1"] = { affix = "", "+(6-10) to Spirit per Socket filled", statOrder = { 7080 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163415912, },
- ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7049 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2702182380, },
- ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7051 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 911712882, },
- ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(6-10)% increased Global Defences per Socket filled", statOrder = { 6991 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1225174187, },
- ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7002 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 313223231, },
- ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(5-7)% to all Elemental Resistances per Socket filled", statOrder = { 7065 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2593651571, },
- ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 6890 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2513318031, },
- ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(25-40) to maximum Life per Socket filled", statOrder = { 6914 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150391334, },
- ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(20-30) to maximum Mana per Socket filled", statOrder = { 6915 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1036267537, },
- ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(7-10)% to Chaos Resistance per Socket filled", statOrder = { 6912 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1123023256, },
- ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(4-6) to all Attributes per Socket filled", statOrder = { 6888 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3474271079, },
- ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(40-60) to Stun Threshold per Socket filled", statOrder = { 7082 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679769182, },
- ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(4-6) Life Regeneration per second per Socket filled", statOrder = { 6913 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 332337290, },
- ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (10-15)% reduced Critical Damage Bonus per Socket filled", statOrder = { 6916 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 701923421, },
- ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 6 seconds, up to a total of 500", statOrder = { 7045, 7045.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1630111277, },
- ["UniqueSupportGemLimit1"] = { affix = "", "You can use each type of Support Gem an additional time in different Skills", statOrder = { 9156 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 898131228, },
- ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5411 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4238331303, },
- ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 25% less Damage", statOrder = { 9340 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1613322341, },
- ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 5674 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3518087336, },
- ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 9359 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3156445245, },
- ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4182 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2173791158, },
- ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 897 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHash = 3081479811, },
- ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 5809 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHash = 2786852525, },
- ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 5806 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 3491722585, },
- ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-40)% chance to Avoid Physical Damage from Hits", statOrder = { 3007 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2415497478, },
- ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-40)% chance to Avoid Chaos Damage from Hits", statOrder = { 3012 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1563503803, },
- ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 8467 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1373370443, },
- ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7087 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1002973905, },
- ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7086 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHash = 1910039112, },
- ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7088 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311259821, },
- ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 630, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2300024566, },
- ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9270 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 599320227, },
- ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 5892 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2793222406, },
- ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 5890 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 513747733, },
- ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 5891 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3885501357, },
- ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have Fire Exposure", statOrder = { 5811 }, level = 66, group = "EnemiesInPresenceFireExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 1069772386, },
- ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5403 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1289045485, },
- ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2644 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4712 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, },
- ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4284 }, level = 1, group = "ArmourOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2129352930, },
- ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Overcapped Lightning Resistance", statOrder = { 5912 }, level = 1, group = "EvasionOvercappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3924187855, },
- ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Overcapped Cold Resistance", statOrder = { 5862 }, level = 1, group = "EnergyShieldOvercappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3377256514, },
- ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Overcapped Chaos Resistance", statOrder = { 4159 }, level = 1, group = "AilmentThresholdOvercappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 83828836, },
- ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2545 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHash = 2973498992, },
- ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4501 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2315177528, },
- ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8104 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3111921451, },
- ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2238 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, },
- ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 8195 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHash = 3045072899, },
- ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2148 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2022332470, },
- ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 5799 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, },
- ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1887 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
- ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+1 Charm Slot", statOrder = { 8377 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 554899692, },
- ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2586 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, },
- ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2250 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, },
- ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4160 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, },
- ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4160 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, },
- ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5715, 5715.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, },
- ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6598 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, },
- ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives your Persistent Minions", statOrder = { 9365 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 932661147, },
- ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 5844 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868746097, },
- ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8000 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1500744699, },
- ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 5682 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3387008487, },
- ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8035 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3960211755, },
- ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Apply Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds while Shield is raised", statOrder = { 9366, 9366.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 223138829, },
- ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 6733 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 932866937, },
- ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 5753 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHash = 2340750293, },
- ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4728 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHash = 2393355605, },
- ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2276 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, },
- ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 4814 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635316831, },
- ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2328 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, },
- ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6262 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1736538865, },
- ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4183 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4258251165, },
- ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 5815 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 1224838456, },
- ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 5812 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3840716439, },
- ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 5808 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1285684287, },
- ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 9363 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2836928993, },
- ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 5813 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "aura" }, tradeHash = 83011992, },
- ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7204 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 514290151, },
- ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4139, 4139.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 3407300125, },
- ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4289 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 679087890, },
- ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 8893 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3181887481, },
- ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4512 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, },
- ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 4864 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4062529591, },
- ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 6601 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2583483800, },
- ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 9193 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3887716633, },
- ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 8311 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1458880585, },
- ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7245 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHash = 1659564104, },
- ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 5578 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2107791433, },
- ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 6764 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHash = 2432200638, },
- ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6231 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2459662130, },
- ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7173 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 367897259, },
- ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 8332 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2771095426, },
- ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 951, 952, 953 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
- ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1421 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2593644209, },
- ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+2 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+3 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+1 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+3 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+1 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+2 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5242, 5999, 6850 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
- ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (3-5) Stacks of Critical Weakness", statOrder = { 4211 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 1550131834, },
- ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 5 seconds", statOrder = { 8770, 8770.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777740627, },
- ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3201 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, },
- ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4303 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2138799639, },
- ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2546 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
- ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1723 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, },
- ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash damage to targets within 1.5 metres", statOrder = { 1076 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, },
- ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1358 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3739186583, },
- ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9021 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2348696937, },
- ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6327 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917429943, },
- ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6328 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800412928, },
- ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6326 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 234657505, },
- ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6325 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3742268652, },
- ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4470 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1896726125, },
- ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4475 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1761741119, },
- ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 4879 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2598171606, },
- ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4164 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1952324525, },
- ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 8521 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3063814459, },
- ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 8992, 8992.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1013492127, },
- ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 4833 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000739259, },
- ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4531 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3199954470, },
- ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4422 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2157692677, },
- ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 8314 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 4252580517, },
- ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 9523 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1835420624, },
- ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 9553 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3258071686, },
- ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2229 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, },
- ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5256 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1150343007, },
- ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4523 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 1920747151, },
- ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 10% increased Damage per 100 maximum Life", statOrder = { 8975 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1027889455, },
- ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life", statOrder = { 8963 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 170426423, },
- ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 964 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, },
- ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 964 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, },
- ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 25 Maximum Life", statOrder = { 9361 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1345486764, },
- ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 8218 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3893509584, },
- ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Can Evade all Hits if you have not been Hit Recently", statOrder = { 4808 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3658454671, },
- ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5285 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, },
- ["UniqueIgnoreHexproof1"] = { affix = "", "Your Curses can affect Hexproof Enemies", statOrder = { 2291 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, },
- ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 5868 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3091132047, },
- ["UniqueShockEffect1"] = { affix = "", "(50-100)% increased Magnitude of Shock you inflict", statOrder = { 8831 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
- ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4413 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2958220558, },
- ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8318 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHash = 2758035461, },
- ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4724 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3583542124, },
- ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5430 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 3830953767, },
- ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8429 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHash = 2935004295, },
- ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
- ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 8428 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 818877178, },
- ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4212 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 2104138899, },
- ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 8433 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1569159338, },
- ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 6563 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3924583393, },
- ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 6562 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3455898738, },
- ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 6564 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3144953722, },
- ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9456 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 695624915, },
- ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4004, 4004.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3507915723, },
- ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1702 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1602694371, },
- ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1703 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 597008938, },
- ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1704 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405948943, },
- ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9336, 9336.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHash = 1955564066, },
- ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to 5% of Flask's Life Recovery amount", statOrder = { 5281 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3893788785, },
- ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5330 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3058238353, },
- ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5331 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3414998042, },
- ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4870 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 451403019, },
- ["UniqueLifeRecoveryRate1"] = { affix = "", "100% increased Life Recovery rate", statOrder = { 1390 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, },
- ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 6755 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 825825364, },
- ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Infusion to gain 2 Chaos Infusion", statOrder = { 6112 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2332055252, },
- ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4357 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3550545679, },
- ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 8795 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3164544692, },
- ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 8933 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980858462, },
- ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Forks Critical Hits", statOrder = { 1300 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, },
- ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 6894 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4142786792, },
- ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 8813 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3278008231, },
- ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 4806 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4237042051, },
- ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4150 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2312741059, },
- ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 6887 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1009412152, },
- ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 6923 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, },
- ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2163 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, },
- ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2417 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2353201291, },
- ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 6903 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 949573361, },
- ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8439 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, },
- ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8439 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, },
- ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Projectile Parry Range", statOrder = { 6656 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1052388029, },
- ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7060 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, },
- ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Life Recovery from Flasks is also applied to Minions in your Presence", statOrder = { 6768 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 228470228, },
- ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3379 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, },
- ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7052 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, },
- ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 8349 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2469544361, },
- ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 4809 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1888024332, },
- ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5420 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2342939473, },
- ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4719 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 60826109, },
- ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2820 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6597 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 3618434982, },
- ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6539 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3751467747, },
- ["UniqueInfuseFireOnReload"] = { affix = "", "When you reload, triggers Gemini Infusion to alternately", "gain 0 Cold Infusion or (1-10) Fire Infusion", statOrder = { 6113, 6113.1 }, level = 1, group = "FireInfuseOnReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3048265316, },
- ["UniqueInfuseColdOnReload"] = { affix = "", "When you reload, triggers Gemini Infusion to alternately", "gain (1-10) Cold Infusion or 0 Fire Infusion", statOrder = { 6113, 6113.1 }, level = 1, group = "ColdInfuseOnReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3806615186, },
- ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 6940 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3108672983, },
- ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5757 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2890792988, },
- ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2642 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
- ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2676 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, },
- ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(35-50)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3953 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, },
- ["UniqueManaCostPerManaSpent1"] = { affix = "", "(35-50)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3952 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, },
- ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 4872 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3593063598, },
- ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1634 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
- ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1634 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
- ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1634 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
- ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 6994 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4021234281, },
- ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4543 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2853314994, },
- ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 8310 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163076972, },
- ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4321 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1141563002, },
- ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4322 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2723294374, },
- ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Flammability Skills", statOrder = { 1929 }, level = 1, group = "FlammabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 4211044223, },
- ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Hypothermia Skills", statOrder = { 1930 }, level = 1, group = "HypothermiaGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 714102612, },
- ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Conductivity Skills", statOrder = { 1926 }, level = 1, group = "ConductivityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 2762675824, },
- ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 1960 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3507701584, },
- ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1927 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 2157870819, },
- ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1928 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3948285912, },
- ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 1959 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1042153418, },
- ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5157 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1509210032, },
- ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5156 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2566921799, },
- ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5155 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 280890192, },
- ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5150 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3138344128, },
- ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5154 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 618665892, },
- ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5153 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1056492907, },
- ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5149 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1112560582, },
- ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5169 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2716923832, },
- ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5170 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3891350097, },
- ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Ignite Enemies in Presence as though dealing Fire damage equal to 500% of your maximum Life when used", statOrder = { 5158 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 3833167682, },
- ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5152 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3246948616, },
- ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5171 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHash = 2678930256, },
- ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5165 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1280492469, },
- ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5162 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 300107724, },
- ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5166 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3181677174, },
- ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5164 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3763491818, },
- ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5159 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3403424702, },
- ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5160 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1685559578, },
- ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5163 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3463873033, },
- ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5168 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3504441212, },
- ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5167 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3685424517, },
- ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5161 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 2839557359, },
- ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3764 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, },
- ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+4% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3763 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, },
- ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9037 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1194507491, },
- ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8345 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503160529, },
- ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8346 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2772033465, },
- ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1656 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3627052716, },
- ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1659 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1686824704, },
- ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1657 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
- ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 8343 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 40154188, },
- ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 8342 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 210092264, },
- ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 8344 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289540902, },
- ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8341 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2295988214, },
- ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 9594 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, },
- ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 9589 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, },
- ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 9565 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 774026047, },
- ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 9576 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2262736444, },
- ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 9582 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1875158664, },
- ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 9602 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, },
- ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 9588 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3528245713, },
- ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 9590 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, },
- ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 9581 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHash = 145598447, },
- ["UniqueMultipleAnointments1"] = { affix = "", "Can have 2 additional Instilled Modifiers", statOrder = { 13 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1135194732, },
- ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 8339 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 701564564, },
- ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 8338 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1158842087, },
- ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage Damage as Extra Lightning Damage", statOrder = { 8340 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3550887155, },
- ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1605 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 474452755, },
- ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 6797 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2002533190, },
- ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4598 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, },
- ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 8536 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, },
- ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 9556 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1132041585, },
- ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 830 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
- ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1457 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
- ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 877 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
- ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 944 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
- ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 963 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
- ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1736 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
- ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1736 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
- ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1736 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
- ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1862 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3638599682, },
- ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1858 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, },
- ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1858 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, },
- ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1852 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
- ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 1852 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
- ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 1852 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
- ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1646 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
- ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 977 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 977 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
- ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 882 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 879 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
- ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 880 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
- ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 9558 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1588686563, },
- ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 54 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493091477, },
- ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1538 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, },
- ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 883 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 883 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1878 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, },
- ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 883 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
- ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1873 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2970307386, },
- ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3441651621, },
- ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 9594 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, },
- ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1411 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
- ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1411 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
- ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1411 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
- ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1411 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
- ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1541 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1541 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1533 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, },
- ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1533 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, },
- ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1541 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
- ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1534 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
- ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1534 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
- ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1577 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 73272763, },
- ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1423 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1637928656, },
- ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1373 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3470876581, },
- ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of maximum Life per second while on Low Life", statOrder = { 1636 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
- ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1636 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
- ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1636 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
- ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1407 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, },
- ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1496 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
- ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1496 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
- ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1495 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
- ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1496 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
- ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1496 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
- ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1668 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1648 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
- ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1623 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 758893621, },
- ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1648 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
- ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1648 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
- ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1648 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
- ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1648 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
- ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1650 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
- ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1123 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, },
- ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1123 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, },
- ["Conduit"] = { affix = "", "Conduit", statOrder = { 9570 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1994392904, },
- ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 1902 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
- ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 831 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
- ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1066 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4070519133, },
- ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-8)% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "8% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockUniqueShieldInt4"] = { affix = "", "8% Chance to Block Spell Damage", statOrder = { 1065 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2881111359, },
- ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1058 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2253286128, },
- ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 865 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 561307714, },
- ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 865 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 561307714, },
- ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 865 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, tradeHash = 561307714, },
- ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 865 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 561307714, },
- ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 865 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 561307714, },
- ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1878 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, },
- ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical damage taken from Projectile Attacks", statOrder = { 1914 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
- ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical damage taken from Projectile Attacks", statOrder = { 1914 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
- ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Hit", statOrder = { 1524 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHash = 398702949, },
- ["CannotBlockAttacks"] = { affix = "", "You cannot Block", statOrder = { 1924 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3162258068, },
- ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1434 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
- ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1434 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
- ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1434 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
- ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 324 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
- ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 324 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
- ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 324 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
- ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 324 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
- ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 335 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3265951306, },
- ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2572192375, },
- ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
- ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
- ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 333 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
- ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", statOrder = { 1961 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1881314095, },
- ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1531 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHash = 2609824731, },
- ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 1964 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, },
- ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 340 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
- ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 340 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
- ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 340 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
- ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 340 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
+ ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 5937 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2350411833, },
+ ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 6884 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 999436592, },
+ ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 9625, 9625.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2247039371, },
+ ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1869 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, },
+ ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1336 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, },
+ ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Critical Hits do not deal extra Damage", statOrder = { 7222 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1508661598, },
+ ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4580 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2715190555, },
+ ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7328 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, },
+ ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause Aftershocks", statOrder = { 9798 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2045949233, },
+ ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 5922 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 793801176, },
+ ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9275 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, },
+ ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 917 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
+ ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 917 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
+ ["UniqueChanceForNoBoltReload1"] = { affix = "", "100% chance to not consume a bolt if you've Reloaded Recently", statOrder = { 5449 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 842299438, },
+ ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 9636 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2838161567, },
+ ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3349 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3384885789, },
+ ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3673 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868118796, },
+ ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 808 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, },
+ ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 810 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
+ ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 810 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
+ ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5227 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, },
+ ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7114 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 826162720, },
+ ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7117 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 811217923, },
+ ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7116 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 704919631, },
+ ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 7060 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4031148736, },
+ ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 7059 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3598729471, },
+ ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 7061 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 21302430, },
+ ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6088 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3247805335, },
+ ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5273 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4207433208, },
+ ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 6984 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3631920880, },
+ ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7115 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1652674074, },
+ ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7113 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1524904258, },
+ ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6078 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, },
+ ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 5735 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258119672, },
+ ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 3978, 3979 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1898996531, },
+ ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6007 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1040569494, },
+ ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3027 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1094937621, },
+ ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 8993 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 632761194, },
+ ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1837 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, },
+ ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5095 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555237944, },
+ ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 13 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1161337167, },
+ ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of charges used by Charms granted to your Life Flasks", statOrder = { 5178 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369960685, },
+ ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4864 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, },
+ ["UniqueLocalSoulCoreEffect1"] = { affix = "", "100% increased effect of Socketed Soul Cores", statOrder = { 7242 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4065505214, },
+ ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 8886 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, },
+ ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain (1-3) random Charge on reaching Maximum Rage", statOrder = { 6219 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2906384323, },
+ ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7337 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3851480592, },
+ ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 6905 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3947672598, },
+ ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 8951 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457411584, },
+ ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4544 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2942704390, },
+ ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 6791 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1538879632, },
+ ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 6787 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314536008, },
+ ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4147 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 533542952, },
+ ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5263 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2243456805, },
+ ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 6793 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2665488635, },
+ ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for 15 seconds", statOrder = { 5876 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1052498387, },
+ ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 5871 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1464727508, },
+ ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 9607 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 396200591, },
+ ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5135 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 965913123, },
+ ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1396 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, },
+ ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1833 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
+ ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7205 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2437476305, },
+ ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7204 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3647242059, },
+ ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7232 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555918911, },
+ ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7233 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933024469, },
+ ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 8846 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3826125995, },
+ ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 10 seconds", statOrder = { 7250 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 636464211, },
+ ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 30% less Damage from Hits", "Take 30% less Damage over time", statOrder = { 6428, 6428.1, 6428.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258955603, },
+ ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4492 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2957287092, },
+ ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5207 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2620375641, },
+ ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4106 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 874646180, },
+ ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 9476 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1315743832, },
+ ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
+ ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
+ ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 8541 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4117005593, },
+ ["UniqueSpiritPerSocketable1"] = { affix = "", "+(6-10) to Spirit per Socket filled", statOrder = { 7245 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163415912, },
+ ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7215 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2702182380, },
+ ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7217 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 911712882, },
+ ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(6-10)% increased Global Defences per Socket filled", statOrder = { 7132 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1225174187, },
+ ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7168 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 313223231, },
+ ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(5-7)% to all Elemental Resistances per Socket filled", statOrder = { 7230 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2593651571, },
+ ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7029 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2513318031, },
+ ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(25-40) to maximum Life per Socket filled", statOrder = { 7053 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150391334, },
+ ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(20-30) to maximum Mana per Socket filled", statOrder = { 7054 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1036267537, },
+ ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(7-10)% to Chaos Resistance per Socket filled", statOrder = { 7051 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1123023256, },
+ ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(4-6) to all Attributes per Socket filled", statOrder = { 7027 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3474271079, },
+ ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(40-60) to Stun Threshold per Socket filled", statOrder = { 7247 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679769182, },
+ ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(4-6) Life Regeneration per second per Socket filled", statOrder = { 7052 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 332337290, },
+ ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (10-15)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7055 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 701923421, },
+ ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 6 seconds, up to a total of 500", statOrder = { 7211, 7211.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1630111277, },
+ ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket an additional copy of each Lineage Support Gem, in different Skills", statOrder = { 7002 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 664024640, },
+ ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5452 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4238331303, },
+ ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 25% less Damage", statOrder = { 9608 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1613322341, },
+ ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 5736 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3518087336, },
+ ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 9627 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3156445245, },
+ ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4151 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2173791158, },
+ ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 894 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHash = 3081479811, },
+ ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 5875 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHash = 2786852525, },
+ ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 5872 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 3491722585, },
+ ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-40)% chance to Avoid Physical Damage from Hits", statOrder = { 2958 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2415497478, },
+ ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-40)% chance to Avoid Chaos Damage from Hits", statOrder = { 2963 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1563503803, },
+ ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 8700 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1373370443, },
+ ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7253 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1002973905, },
+ ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7252 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHash = 1910039112, },
+ ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7254 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311259821, },
+ ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 626, 904 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2300024566, },
+ ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9537 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 599320227, },
+ ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 5972 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2793222406, },
+ ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 5970 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 513747733, },
+ ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 5971 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3885501357, },
+ ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -10% to Fire Resistance", statOrder = { 5878 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 990363519, },
+ ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5444 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1289045485, },
+ ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2603 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4742 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, },
+ ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4269 }, level = 1, group = "ArmourOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2129352930, },
+ ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Overcapped Lightning Resistance", statOrder = { 5999 }, level = 1, group = "EvasionOvercappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3924187855, },
+ ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Overcapped Cold Resistance", statOrder = { 5936 }, level = 1, group = "EnergyShieldOvercappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3377256514, },
+ ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Overcapped Chaos Resistance", statOrder = { 4127 }, level = 1, group = "AilmentThresholdOvercappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 83828836, },
+ ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2509 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHash = 2973498992, },
+ ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4503 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2315177528, },
+ ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8297 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3111921451, },
+ ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2207 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, },
+ ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 8399 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHash = 3045072899, },
+ ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2117 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2022332470, },
+ ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 5865 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, },
+ ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1866 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
+ ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+1 Charm Slot", statOrder = { 8602 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 554899692, },
+ ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2548 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, },
+ ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2218 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, },
+ ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4128 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, },
+ ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4128 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, },
+ ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5779, 5779.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, },
+ ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6717 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, },
+ ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 9633 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 932661147, },
+ ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 5916 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868746097, },
+ ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8180 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1500744699, },
+ ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 5745 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3387008487, },
+ ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8225 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3960211755, },
+ ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 9634, 9634.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 223138829, },
+ ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 6864 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 932866937, },
+ ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 5817 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHash = 2340750293, },
+ ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4758 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHash = 2393355605, },
+ ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2244 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, },
+ ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 4846 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635316831, },
+ ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2296 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, },
+ ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6362 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1736538865, },
+ ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4153 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4258251165, },
+ ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 5883 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 1224838456, },
+ ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 5879 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3840716439, },
+ ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 5874 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1285684287, },
+ ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 9631 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2836928993, },
+ ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 5880 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "aura" }, tradeHash = 83011992, },
+ ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7370 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 514290151, },
+ ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4100, 4100.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 3407300125, },
+ ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4274 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 679087890, },
+ ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9163 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3181887481, },
+ ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4519 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, },
+ ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 4894 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4062529591, },
+ ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 6721 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2583483800, },
+ ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 9455 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3887716633, },
+ ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 8521 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1458880585, },
+ ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7414 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHash = 1659564104, },
+ ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 5633 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2107791433, },
+ ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 6899 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHash = 2432200638, },
+ ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6331 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2459662130, },
+ ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7338 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 367897259, },
+ ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 8542 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2771095426, },
+ ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 949, 950, 951 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, },
+ ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1404 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2593644209, },
+ ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+2 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+3 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+1 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+3 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+1 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+2 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5275, 6090, 6988 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, },
+ ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4184 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 1550131834, },
+ ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 5 seconds", statOrder = { 9032, 9032.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777740627, },
+ ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3148 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, },
+ ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4288 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2138799639, },
+ ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2510 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
+ ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1700 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, },
+ ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash damage to targets within 1.5 metres", statOrder = { 1063 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, },
+ ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1346 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3739186583, },
+ ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9276 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2348696937, },
+ ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 3981 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1354656031, },
+ ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7131 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2879778895, },
+ ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6432 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917429943, },
+ ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6433 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800412928, },
+ ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6431 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 234657505, },
+ ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6430 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3742268652, },
+ ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4469 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1896726125, },
+ ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4474 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1761741119, },
+ ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 4911 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2598171606, },
+ ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4132 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1952324525, },
+ ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 8762 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3063814459, },
+ ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 9261, 9261.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1013492127, },
+ ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 4865 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000739259, },
+ ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4552 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3199954470, },
+ ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4416 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 2157692677, },
+ ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 8524 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 4252580517, },
+ ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 9803 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 1835420624, },
+ ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 9833 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3258071686, },
+ ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2198 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, },
+ ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5291 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1150343007, },
+ ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4538 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 1920747151, },
+ ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 10% increased Damage per 100 maximum Life", statOrder = { 9246 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1027889455, },
+ ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9232 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 170426423, },
+ ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, },
+ ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, },
+ ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 25 Maximum Life", statOrder = { 9629 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1345486764, },
+ ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 8423 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3893509584, },
+ ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 5750 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1272938854, },
+ ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5320 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, },
+ ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2259 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, },
+ ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 5942 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3091132047, },
+ ["UniqueShockEffect1UNUSED"] = { affix = "", "(50-100)% increased Magnitude of Shock you inflict", statOrder = { 9095 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
+ ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4407 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2958220558, },
+ ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8527 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHash = 2758035461, },
+ ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4753 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3583542124, },
+ ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5477 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 3830953767, },
+ ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8658 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHash = 2935004295, },
+ ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 8668 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHash = 2089152298, },
+ ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 8666 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHash = 3201111383, },
+ ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 8657 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 818877178, },
+ ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4186 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 2104138899, },
+ ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 8661 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1569159338, },
+ ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 6682 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3924583393, },
+ ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 6681 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3455898738, },
+ ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 6683 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3144953722, },
+ ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9736 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 695624915, },
+ ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 3945, 3945.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3507915723, },
+ ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1679 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1602694371, },
+ ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1680 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 597008938, },
+ ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1681 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405948943, },
+ ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9604, 9604.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHash = 1955564066, },
+ ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to 5% of Flask's Life Recovery amount", statOrder = { 5316 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3893788785, },
+ ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5369 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3058238353, },
+ ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5370 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3414998042, },
+ ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4901 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 451403019, },
+ ["UniqueLifeRecoveryRate1"] = { affix = "", "100% increased Life Recovery rate", statOrder = { 1373 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, },
+ ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1373 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, },
+ ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 6890 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 825825364, },
+ ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6210 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 447757144, },
+ ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4343 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3550545679, },
+ ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9058 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3164544692, },
+ ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9206 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980858462, },
+ ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1288 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, },
+ ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7033 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4142786792, },
+ ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9076 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3278008231, },
+ ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 4839 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4237042051, },
+ ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4112 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2312741059, },
+ ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7026 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1009412152, },
+ ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7062 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, },
+ ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2132 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, },
+ ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2383 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2353201291, },
+ ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7042 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 949573361, },
+ ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8670 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, },
+ ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8670 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, },
+ ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6783 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4063608408, },
+ ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7225 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, },
+ ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1842 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2397460217, },
+ ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1843 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4046380260, },
+ ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3325 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, },
+ ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7218 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, },
+ ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7218 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, },
+ ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 8574 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2469544361, },
+ ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 4841 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1888024332, },
+ ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5464 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2342939473, },
+ ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4749 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 60826109, },
+ ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2775 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6715 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 3618434982, },
+ ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6653 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3751467747, },
+ ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6211, 6211.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHash = 880541852, },
+ ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7080 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3108672983, },
+ ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5821 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2890792988, },
+ ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2601 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
+ ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2631 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, },
+ ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(35-50)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3894 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, },
+ ["UniqueManaCostPerManaSpent1"] = { affix = "", "(35-50)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3893 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, },
+ ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 4903 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3593063598, },
+ ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1613 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
+ ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1613 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
+ ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1613 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, },
+ ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7155 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4021234281, },
+ ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4566 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2853314994, },
+ ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 8520 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163076972, },
+ ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4306 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1141563002, },
+ ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4307 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2723294374, },
+ ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1905 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, },
+ ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1905 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, },
+ ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1905 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, },
+ ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1905 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, },
+ ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 1929 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3507701584, },
+ ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1904 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 2157870819, },
+ ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1906 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3948285912, },
+ ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 1928 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1042153418, },
+ ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5190 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1509210032, },
+ ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5189 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2566921799, },
+ ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5188 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 280890192, },
+ ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5181 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3138344128, },
+ ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5187 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 618665892, },
+ ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5186 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1056492907, },
+ ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5180 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1112560582, },
+ ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5202 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2716923832, },
+ ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5203 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3891350097, },
+ ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5191 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 39209842, },
+ ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5185 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3246948616, },
+ ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5204 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHash = 2678930256, },
+ ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5198 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1280492469, },
+ ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5195 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 300107724, },
+ ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5199 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3181677174, },
+ ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5197 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3763491818, },
+ ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5192 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3403424702, },
+ ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5193 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1685559578, },
+ ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5196 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3463873033, },
+ ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5201 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3504441212, },
+ ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5200 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3685424517, },
+ ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5194 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 2839557359, },
+ ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3706 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, },
+ ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+4% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3705 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, },
+ ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9296 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1194507491, },
+ ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8566 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503160529, },
+ ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8567 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2772033465, },
+ ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1635 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3627052716, },
+ ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1638 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1686824704, },
+ ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
+ ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 8564 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 40154188, },
+ ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 8563 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 210092264, },
+ ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 8565 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289540902, },
+ ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8562 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2295988214, },
+ ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 9876 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, },
+ ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 9871 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, },
+ ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 9846 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 774026047, },
+ ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 9857 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2262736444, },
+ ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 9864 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1875158664, },
+ ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 9883 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, },
+ ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 9870 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3528245713, },
+ ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 9872 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, },
+ ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 9862 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHash = 145598447, },
+ ["UniqueMultipleAnointments1"] = { affix = "", "Can have 2 additional Instilled Modifiers", statOrder = { 15 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1135194732, },
+ ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 8560 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 701564564, },
+ ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 8559 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1158842087, },
+ ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 8561 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3550887155, },
+ ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1584 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 474452755, },
+ ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 6934 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2002533190, },
+ ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-5) fewer enemies to be Surrounded", statOrder = { 9027 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2267564181, },
+ ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4626 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, },
+ ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 8780 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, },
+ ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4101445926, },
+ ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 9836 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1132041585, },
+ ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, },
+ ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1440 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
+ ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 871 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, },
+ ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 942 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, },
+ ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 964 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, },
+ ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1713 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
+ ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1713 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
+ ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1713 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, },
+ ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1839 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3638599682, },
+ ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1835 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, },
+ ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1835 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, },
+ ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1829 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
+ ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 1829 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
+ ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 1829 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, },
+ ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1625 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, },
+ ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 978 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 978 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, },
+ ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 876 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 873 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, },
+ ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 874 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, },
+ ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 9838 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1588686563, },
+ ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 53 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493091477, },
+ ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1521 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, },
+ ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 877 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 877 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1857 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, },
+ ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 877 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, },
+ ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1852 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2970307386, },
+ ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3441651621, },
+ ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 9876 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, },
+ ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1394 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
+ ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1394 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
+ ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1394 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
+ ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1394 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, },
+ ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1524 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1524 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1516 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, },
+ ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1516 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, },
+ ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1524 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, },
+ ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1517 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
+ ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1517 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, },
+ ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1560 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 73272763, },
+ ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1406 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1637928656, },
+ ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1357 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3470876581, },
+ ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of maximum Life per second while on Low Life", statOrder = { 1615 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
+ ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1615 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
+ ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1615 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, },
+ ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1390 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, },
+ ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1479 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
+ ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1479 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
+ ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1478 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, },
+ ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1479 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
+ ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1479 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, },
+ ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1647 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1627 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
+ ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1602 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 758893621, },
+ ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1627 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
+ ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1627 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
+ ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1627 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
+ ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1627 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, },
+ ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1629 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, },
+ ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1111 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, },
+ ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1111 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, },
+ ["Conduit"] = { affix = "", "Conduit", statOrder = { 9851 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1994392904, },
+ ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 1881 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, },
+ ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 827 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, },
+ ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1857 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, },
+ ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical damage taken from Projectile Attacks", statOrder = { 1893 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
+ ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical damage taken from Projectile Attacks", statOrder = { 1893 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, },
+ ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Hit", statOrder = { 1507 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHash = 398702949, },
+ ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2861 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, },
+ ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1417 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
+ ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1417 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
+ ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1417 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, },
+ ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 316 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
+ ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 316 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
+ ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 316 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
+ ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 316 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, },
+ ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 327 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3265951306, },
+ ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 324 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2572192375, },
+ ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 325 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
+ ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 325 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
+ ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 325 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, },
+ ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", statOrder = { 1930 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1881314095, },
+ ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1514 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHash = 2609824731, },
+ ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 1933 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, },
+ ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
+ ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
+ ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
+ ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, },
["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 994 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 994 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, },
- ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2134 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, },
- ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 252 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 282757414, },
- ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 176 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, },
- ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 176 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, },
- ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 282 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3561676020, },
- ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 9632 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3403461239, },
- ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 66 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3146680230, },
- ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
- ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1417, 1418 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHash = 1803717126, },
- ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1844, 8397 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
- ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1844, 1845 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1844 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8397 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
- ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1845 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1844 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 8869, 8870, 8872 }, level = 1, group = "SkeletonSpeedOld", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 2857939712, },
- ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1844 }, level = 1, group = "MaximumMinionCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1844 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 8872 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHash = 3295031203, },
- ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 8869 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed", "minion" }, tradeHash = 3413085237, },
- ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 8870 }, level = 1, group = "SkeletonCastSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed", "minion" }, tradeHash = 2725259389, },
- ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 383 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
- ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 383 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
- ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 383 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
- ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 138 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, },
- ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 390 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3418772, },
- ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1876 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
- ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 1876 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
- ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8347 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 1714211040, },
- ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1844, 8397 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
- ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1844, 1845 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
- ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 811, 2137 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3920081309, },
- ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 116 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHash = 916797432, },
- ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2204 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 133168938, },
- ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2149 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHash = 4129825612, },
- ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2140 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2749166636, },
- ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2141 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3261557635, },
- ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 972 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
- ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2144 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
- ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2144 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
- ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 1879 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1757945818, },
- ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1536 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
- ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1536 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
- ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1684 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, },
- ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1684 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, },
- ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2154 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, },
- ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% to Block chance", statOrder = { 2155 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
- ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 2155 }, level = 1, group = "AdditionalBlock", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 1702195217, },
- ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 2155 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2103 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, },
+ ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 244 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 282757414, },
+ ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 168 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, },
+ ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 168 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, },
+ ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 274 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3561676020, },
+ ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 9912 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3403461239, },
+ ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 58 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3146680230, },
+ ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1400, 1401 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHash = 1803717126, },
+ ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1821, 8625 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
+ ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1821, 1822 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1821 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8625 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
+ ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1822 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1821 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9134, 9135, 9138 }, level = 1, group = "SkeletonSpeedOld", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 2857939712, },
+ ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1821 }, level = 1, group = "MaximumMinionCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1821 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9138 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHash = 3295031203, },
+ ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9134 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed", "minion" }, tradeHash = 3413085237, },
+ ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9135 }, level = 1, group = "SkeletonCastSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed", "minion" }, tradeHash = 2725259389, },
+ ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 375 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
+ ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 375 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
+ ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 375 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, },
+ ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 130 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, },
+ ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 381 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3418772, },
+ ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1855 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
+ ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 1855 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, },
+ ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8572 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 1714211040, },
+ ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1821, 8625 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, },
+ ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1821, 1822 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, },
+ ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 807, 2106 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3920081309, },
+ ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 108 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHash = 916797432, },
+ ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2173 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 133168938, },
+ ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2118 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHash = 4129825612, },
+ ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2109 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2749166636, },
+ ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2110 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3261557635, },
+ ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, },
+ ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2113 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
+ ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2113 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, },
+ ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1757945818, },
+ ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1519 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
+ ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1519 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
+ ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1661 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, },
+ ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1661 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, },
+ ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2123 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, },
+ ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% to Block chance", statOrder = { 2124 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 2124 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 2124 }, level = 1, group = "AdditionalBlock", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 1702195217, },
+ ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 2124 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, },
["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4486 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1829238593, },
- ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1490 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, },
- ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1490 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, },
- ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5285 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, },
- ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1071 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2538694749, },
- ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2159 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
- ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2160 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 1336164384, },
- ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 384 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
- ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 384 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
- ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 384 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
- ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 384 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
+ ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1473 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, },
+ ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1473 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, },
+ ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5320 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, },
+ ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1057 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2538694749, },
+ ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2128 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, },
+ ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2129 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 1336164384, },
+ ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 376 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
+ ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 376 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
+ ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 376 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
+ ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 376 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, },
["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
@@ -2291,72 +2330,72 @@ return {
["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
- ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2158 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
- ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2158 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
- ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 815 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, },
- ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 815 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, },
- ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 814 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
- ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
- ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
- ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 329 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
- ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
- ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2163 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, },
- ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2164 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 4075957192, },
- ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1478 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, },
- ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1478 }, level = 1, group = "SkeletonDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1331384105, },
- ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 822 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
- ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 821 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
- ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 814 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
- ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 814 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
- ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 812 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, },
- ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 820 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4272453892, },
- ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2166 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3557561376, },
- ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1374 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, },
- ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1374 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, },
- ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2171 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, },
- ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 658 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, },
- ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2177 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 20157668, },
- ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2176 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
- ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2176 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
- ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2176 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
- ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2176 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
- ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 6917 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHash = 513681673, },
- ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 6924 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, },
- ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2174 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2992817550, },
- ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2190 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3636414626, },
- ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1859 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1472543401, },
- ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3187 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
- ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1828 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, },
- ["AuraEffectUnique__1"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3187 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
- ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3187 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
- ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1828 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, },
- ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1095 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1096 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
- ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1096 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
- ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1096 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
- ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2127 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
+ ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2127 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, },
+ ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 811 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, },
+ ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 811 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, },
+ ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 810 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
+ ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 321 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
+ ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 321 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
+ ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 321 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
+ ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 321 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, },
+ ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2132 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, },
+ ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2133 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 4075957192, },
+ ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1461 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, },
+ ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1461 }, level = 1, group = "SkeletonDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1331384105, },
+ ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 818 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, },
+ ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 817 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, },
+ ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 810 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
+ ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 810 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, },
+ ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 808 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, },
+ ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 816 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4272453892, },
+ ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2135 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3557561376, },
+ ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1358 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, },
+ ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1358 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, },
+ ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2140 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, },
+ ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 653 }, level = 1, group = "FlaskCurseImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, },
+ ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2146 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 20157668, },
+ ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2145 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
+ ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2145 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
+ ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2145 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
+ ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2145 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, },
+ ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7056 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHash = 513681673, },
+ ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7063 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, },
+ ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2143 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2992817550, },
+ ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2159 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3636414626, },
+ ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1836 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1472543401, },
+ ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3134 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
+ ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1805 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, },
+ ["AuraEffectUnique__1"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3134 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
+ ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3134 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
+ ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1805 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, },
+ ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1083 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1084 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
+ ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1084 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
+ ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1084 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, },
+ ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
@@ -2381,290 +2420,288 @@ return {
["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
- ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2215 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3804297142, },
- ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2205 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 665808208, },
- ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6309 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 213066229, },
- ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2226 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3238189103, },
- ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2229 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, },
- ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2232 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1765389199, },
- ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1901 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
- ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1898 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
- ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1901 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
- ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1898 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
- ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 1, group = "ReducedReservation", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1901 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
- ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1898 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
- ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1900 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
- ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1898 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
- ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1426 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, },
- ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1544 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 4271082039, },
- ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 336 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, },
- ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 336 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, },
- ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1586 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1586 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1586 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
- ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, },
- ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3852526385, },
- ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2240 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 482967934, },
- ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1378 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, },
- ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 9435 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, },
- ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4414 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, },
- ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4349 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, },
- ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1810 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
- ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1810 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
- ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1921 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, },
- ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2962840349, },
- ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2091466357, },
- ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2245 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, },
- ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 337 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, },
- ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 337 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, },
- ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 6820 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
- ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 6820 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
- ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1554 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
- ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 6820 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
- ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1909 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
- ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1909 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
- ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1909 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
- ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
- ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2213 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4139135963, },
- ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Damage Bonus", statOrder = { 1338 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
- ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1413 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, },
- ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2246 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2246 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2246 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2246 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
- ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1855 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
- ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced effect of Curses on you", statOrder = { 1855 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
- ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased effect of Curses on you", statOrder = { 1855 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
- ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced effect of Curses on you", statOrder = { 1855 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
- ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1447 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
- ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1448 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
- ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1448 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
- ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1448 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
- ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 359 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, },
- ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 359 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, },
- ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 948 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
- ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2248 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1252481812, },
- ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2249 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2366940416, },
- ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2247 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2482008875, },
- ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 339 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
- ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 339 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
- ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 339 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
- ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 339 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
- ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 338 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2985291457, },
- ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1807 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, },
- ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1807 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, },
- ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2250 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, },
- ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5843 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, },
- ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5843 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, },
- ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 5799 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, },
- ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2252 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524282232, },
- ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2251 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2528932950, },
- ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1881 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 189451991, },
- ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1510 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1825 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
- ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1825 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
- ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 1825 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
- ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 1823 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
- ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 1823 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
- ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 1823 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
- ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2267 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1818006464, },
- ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2268 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2969730223, },
- ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2276 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, },
- ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, },
- ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 165 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, },
- ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2265 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
- ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2265 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
- ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per Enemy Killed", statOrder = { 2265 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
- ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2277 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1081444608, },
- ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5201 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1629782265, },
- ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2278 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 347697569, },
- ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1122 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
- ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1122 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
- ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1122 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
- ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1682 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, },
- ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2429 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1425651005, },
- ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2243 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 993866933, },
- ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2244 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3778266957, },
- ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2360 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2776725787, },
- ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2368 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, },
- ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2368 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, },
- ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1084 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
- ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1085 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
- ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1086 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, },
- ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1084 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
- ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2228 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, },
- ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2228 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 2264295449, },
- ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2425 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
- ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1808 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
- ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1808 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
- ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2315 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, },
- ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2322 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1791875585, },
- ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2284 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1194648995, },
- ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2324 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3579807004, },
- ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Hit", statOrder = { 2325 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3195625581, },
- ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2326 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3159161267, },
- ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2327 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3816512110, },
- ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2334 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 783864527, },
- ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of maximum Energy Shield per second", statOrder = { 2335 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3676958605, },
- ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2345 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 195090426, },
- ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2338 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4263540840, },
- ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2332 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
- ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2332 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
- ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2332 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
- ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2331 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1330109706, },
- ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2328 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, },
- ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2329 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
- ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2329 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
- ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 1727 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 269590092, },
- ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2314 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, },
- ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2491 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1696792323, },
- ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1536 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
- ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2313 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3988943320, },
- ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1053 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4061558269, },
- ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2279 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
- ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2279 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
- ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2279 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
- ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2279 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
- ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2279 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
- ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1459 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
- ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1460 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1460 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
- ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2282 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 4116579804, },
- ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 9542 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 568070507, },
- ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2283 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHash = 3150000576, },
- ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2363 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3563667308, },
- ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2365 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHash = 2857427872, },
- ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2281 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4041805509, },
- ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2285 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4207939995, },
- ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2287 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2920230984, },
- ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1658 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHash = 268659529, },
- ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2286 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3173052379, },
- ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Hit", statOrder = { 2362 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1055188639, },
- ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1348 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, },
- ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 778 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1740200922, },
- ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 777 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3736953565, },
- ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 780 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2745936267, },
- ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 767 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 4026156644, },
- ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 783 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 3110554274, },
- ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2371 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 185598681, },
- ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1661 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, },
- ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1661 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, },
- ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2359 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2591020064, },
- ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2555 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, },
- ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2555 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, },
- ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2379 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3304763863, },
- ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2381 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3188291252, },
- ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos damage", statOrder = { 1235 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1638 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
- ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1638 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
- ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1638 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
- ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1638 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
- ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2383 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2797075304, },
- ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2378 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2785780853, },
- ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 9629 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
- ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2377 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, },
- ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2377 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, },
- ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 9629 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
- ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 9634 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3970396418, },
- ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 9629 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
- ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1676 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
- ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1676 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
- ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2258 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 2443492284, },
- ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2262 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, },
- ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2262 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, },
- ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2264 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3279535558, },
- ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1132 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1095 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 9589 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, },
- ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2385 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 637766438, },
- ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1216 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, },
- ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1216 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, },
- ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1236 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3758293500, },
- ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1222 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2109066258, },
- ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2546 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
- ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2546 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
- ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1657 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
- ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1657 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
- ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 9370 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4007740198, },
- ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 6995 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, },
- ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 6995 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, },
- ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2391 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3457687358, },
- ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 355 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, },
- ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 360 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, },
- ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 360 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, },
- ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 635 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 2917449574, },
- ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 636 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 2301696196, },
- ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 648 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 3230795453, },
- ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 649 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHash = 2697049014, },
- ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 647 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, },
- ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 647 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, },
- ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2398 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3128318472, },
- ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, },
- ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, },
- ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, },
- ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2396 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2422197812, },
- ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2397 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1357244124, },
- ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2643 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2435 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHash = 1305605911, },
- ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2384 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
+ ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2184 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3804297142, },
+ ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2174 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 665808208, },
+ ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6413 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 213066229, },
+ ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2195 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3238189103, },
+ ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2198 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, },
+ ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2201 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1765389199, },
+ ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
+ ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1877 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
+ ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
+ ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1877 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
+ ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 1, group = "ReducedReservation", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, },
+ ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1877 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
+ ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1879 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, },
+ ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1877 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, },
+ ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1409 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, },
+ ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1527 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 4271082039, },
+ ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 328 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, },
+ ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 328 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, },
+ ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1569 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1569 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1569 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, },
+ ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 132 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3852526385, },
+ ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1362 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, },
+ ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 9715 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, },
+ ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4408 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, },
+ ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4336 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, },
+ ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1787 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
+ ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1787 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
+ ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1900 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, },
+ ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 326 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2962840349, },
+ ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2091466357, },
+ ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2213 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, },
+ ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, },
+ ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, },
+ ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 6958 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
+ ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 6958 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
+ ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1537 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
+ ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 6958 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, },
+ ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1888 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
+ ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1888 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
+ ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1888 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, },
+ ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 918 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, },
+ ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2182 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4139135963, },
+ ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Damage Bonus", statOrder = { 1326 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
+ ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1396 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, },
+ ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2214 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2214 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2214 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2214 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, },
+ ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1832 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
+ ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced effect of Curses on you", statOrder = { 1832 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
+ ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased effect of Curses on you", statOrder = { 1832 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
+ ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced effect of Curses on you", statOrder = { 1832 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, },
+ ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1430 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
+ ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
+ ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
+ ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, },
+ ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 351 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, },
+ ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 351 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, },
+ ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 946 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2216 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1252481812, },
+ ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2217 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2366940416, },
+ ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2215 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2482008875, },
+ ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
+ ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
+ ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
+ ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, },
+ ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 330 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2985291457, },
+ ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1784 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, },
+ ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1784 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, },
+ ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2218 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, },
+ ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5915 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, },
+ ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5915 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, },
+ ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 5865 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, },
+ ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2220 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524282232, },
+ ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2219 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2528932950, },
+ ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1860 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 189451991, },
+ ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1493 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1802 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
+ ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1802 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
+ ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 1802 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
+ ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 1800 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
+ ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 1800 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
+ ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 1800 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, },
+ ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2235 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1818006464, },
+ ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2236 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2969730223, },
+ ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2244 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, },
+ ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 157 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, },
+ ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 157 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, },
+ ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2233 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
+ ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2233 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
+ ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per Enemy Killed", statOrder = { 2233 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, },
+ ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2245 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1081444608, },
+ ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5234 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1629782265, },
+ ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2246 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 347697569, },
+ ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1110 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
+ ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1110 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
+ ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1110 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, },
+ ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1659 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, },
+ ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2395 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1425651005, },
+ ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2211 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 993866933, },
+ ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2212 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3778266957, },
+ ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2328 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2776725787, },
+ ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2336 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, },
+ ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2336 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, },
+ ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1071 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
+ ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1072 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
+ ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1073 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, },
+ ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1071 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
+ ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2197 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, },
+ ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2197 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 2264295449, },
+ ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2391 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, },
+ ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1785 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
+ ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1785 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
+ ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2283 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, },
+ ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2290 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1791875585, },
+ ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2252 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1194648995, },
+ ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2292 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3579807004, },
+ ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Hit", statOrder = { 2293 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3195625581, },
+ ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2294 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3159161267, },
+ ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2295 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3816512110, },
+ ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2302 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 783864527, },
+ ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of maximum Energy Shield per second", statOrder = { 2303 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3676958605, },
+ ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2313 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 195090426, },
+ ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2306 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4263540840, },
+ ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2300 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
+ ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2300 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
+ ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2300 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, },
+ ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2299 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1330109706, },
+ ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2296 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, },
+ ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2297 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
+ ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2297 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, },
+ ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 1704 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 269590092, },
+ ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2282 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, },
+ ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2455 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1696792323, },
+ ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1519 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, },
+ ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2281 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3988943320, },
+ ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1052 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4061558269, },
+ ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2247 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
+ ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2247 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
+ ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2247 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
+ ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2247 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
+ ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2247 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, },
+ ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1442 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, },
+ ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1443 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1443 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, },
+ ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2250 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 4116579804, },
+ ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 9822 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 568070507, },
+ ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2251 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHash = 3150000576, },
+ ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2331 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3563667308, },
+ ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2333 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHash = 2857427872, },
+ ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2249 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4041805509, },
+ ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2253 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4207939995, },
+ ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2255 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2920230984, },
+ ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1637 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHash = 268659529, },
+ ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2254 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3173052379, },
+ ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Hit", statOrder = { 2330 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1055188639, },
+ ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1336 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, },
+ ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 775 }, level = 1, group = "FlaskItemRarity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1740200922, },
+ ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 774 }, level = 1, group = "FlaskItemQuantity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3736953565, },
+ ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 777 }, level = 1, group = "FlaskLightRadius", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2745936267, },
+ ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 764 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 4026156644, },
+ ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 780 }, level = 1, group = "FlaskElementalResistances", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 3110554274, },
+ ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2339 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 185598681, },
+ ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, },
+ ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, },
+ ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2327 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2591020064, },
+ ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2519 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, },
+ ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2519 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, },
+ ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2347 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3304763863, },
+ ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2349 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3188291252, },
+ ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos damage", statOrder = { 1223 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1617 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
+ ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1617 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
+ ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1617 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
+ ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1617 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, },
+ ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2351 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2797075304, },
+ ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2346 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2785780853, },
+ ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 9909 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
+ ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2345 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, },
+ ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2345 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, },
+ ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 9909 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
+ ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 9914 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3970396418, },
+ ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 9909 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, },
+ ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1655 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
+ ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1655 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, },
+ ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2226 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 2443492284, },
+ ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2230 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, },
+ ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2230 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, },
+ ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2232 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3279535558, },
+ ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1120 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1083 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 9871 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, },
+ ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2353 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 637766438, },
+ ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1204 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, },
+ ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1204 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, },
+ ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1224 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3758293500, },
+ ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1210 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2109066258, },
+ ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2510 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
+ ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2510 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, },
+ ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
+ ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, },
+ ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 9639 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4007740198, },
+ ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7156 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, },
+ ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7156 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, },
+ ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2357 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3457687358, },
+ ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 347 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, },
+ ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 352 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, },
+ ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 352 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, },
+ ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 630 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 2917449574, },
+ ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 631 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 2301696196, },
+ ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 643 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "frenzy_charge" }, tradeHash = 3230795453, },
+ ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 644 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "power_charge" }, tradeHash = 2697049014, },
+ ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 642 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, },
+ ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 642 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, },
+ ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2364 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3128318472, },
+ ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3139816101, },
+ ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3139816101, },
+ ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1002 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3139816101, },
+ ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2362 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2422197812, },
+ ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2363 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1357244124, },
+ ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2602 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2401 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHash = 1305605911, },
+ ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
@@ -2675,1580 +2712,1654 @@ return {
["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
- ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2523 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, },
- ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2524 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, },
- ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2525 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
- ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2525 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
- ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2527 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, },
- ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2528 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
- ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2528 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
- ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2528 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
- ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2529 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
- ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2529 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
- ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2529 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
- ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2418 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2449668043, },
- ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1443 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
- ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1443 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
- ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1443 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
- ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1443 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
- ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2406 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 250876318, },
- ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2404 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2112615899, },
- ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2409 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, },
- ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2409 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, },
- ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+2 to Melee Strike Range per White Socket", statOrder = { 2413 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2076080860, },
- ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2428 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2626398389, },
- ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2510 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 3002650433, },
- ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your maximum Energy Shield when you Block", statOrder = { 2420 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 4059516437, },
- ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1625 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, },
- ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1625 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, },
- ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1631 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 2105236138, },
- ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1630 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 1036710490, },
- ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1628 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 502598927, },
- ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2146 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, },
- ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2447 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2919089822, },
- ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2448 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 4199402748, },
- ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1615 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, },
- ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1615 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, },
- ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2452 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1620219216, },
- ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2452 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3102860761, },
- ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 325 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
- ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 325 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
- ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 325 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
- ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1610 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, },
- ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1610 }, level = 1, group = "TrapDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2001530951, },
- ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2509 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1955882986, },
- ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2500 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 963290143, },
- ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3069 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2996445420, },
- ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1910 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, },
- ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 1905 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 614758785, },
- ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2516 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3598983877, },
- ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2515 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777334641, },
- ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2518 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 496011033, },
- ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5431 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
- ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5431 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
- ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5431 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
- ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 141 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
- ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 141 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
- ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 141 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
- ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 141 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
- ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1856 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
- ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1856 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
- ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2940 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, },
- ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2514 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, },
- ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1276 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
- ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1276 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
- ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
- ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 394 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 2788729902, },
- ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 145 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, },
- ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2574694107, },
- ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 145 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, },
- ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2233 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, },
- ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1377 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
- ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4299 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3647471922, },
- ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4298 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1019891080, },
- ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2587 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2654043939, },
- ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 146 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
- ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
- ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
- ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1488 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
- ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1488 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
- ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1488 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
- ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", statOrder = { 2601 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 986616727, },
- ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1137 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 17354819, },
- ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1135 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1138694108, },
- ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1133 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 298331790, },
- ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2390 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2803352419, },
- ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2389 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3733737728, },
- ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2388 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 4260460340, },
- ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 349 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, },
- ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 349 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, },
- ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 350 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2178803872, },
- ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2151 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, },
- ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2421 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3836017971, },
- ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2595 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3277537093, },
- ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 859 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2597 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1625103793, },
- ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2598 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3693130674, },
- ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2599 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1269609669, },
- ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1353 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4212255859, },
- ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 9602 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, },
+ ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2487 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, },
+ ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2488 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, },
+ ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2489 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
+ ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2489 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, },
+ ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2491 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, },
+ ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2492 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
+ ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2492 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
+ ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2492 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, },
+ ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2493 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
+ ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2493 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
+ ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2493 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, },
+ ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2384 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2449668043, },
+ ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1426 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
+ ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1426 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
+ ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1426 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
+ ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1426 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, },
+ ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2372 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 250876318, },
+ ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2370 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2112615899, },
+ ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2375 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, },
+ ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2375 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, },
+ ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+2 to Melee Strike Range per White Socket", statOrder = { 2379 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2076080860, },
+ ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2394 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2626398389, },
+ ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2474 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 3002650433, },
+ ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your maximum Energy Shield when you Block", statOrder = { 2386 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 4059516437, },
+ ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1604 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, },
+ ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1604 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, },
+ ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1610 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 2105236138, },
+ ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1609 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 1036710490, },
+ ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1607 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 502598927, },
+ ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2115 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, },
+ ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2413 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 4199402748, },
+ ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1594 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, },
+ ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1594 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, },
+ ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2417 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1620219216, },
+ ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2417 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3102860761, },
+ ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 317 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
+ ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 317 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
+ ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 317 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, },
+ ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1589 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, },
+ ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1589 }, level = 1, group = "TrapDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2001530951, },
+ ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2473 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1955882986, },
+ ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2464 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 963290143, },
+ ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3017 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2996445420, },
+ ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1889 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, },
+ ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 1884 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 614758785, },
+ ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2480 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3598983877, },
+ ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2479 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777334641, },
+ ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2482 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 496011033, },
+ ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5478 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
+ ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5478 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
+ ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5478 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, },
+ ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 133 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
+ ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 133 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
+ ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 133 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
+ ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 133 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, },
+ ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1833 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
+ ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1833 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, },
+ ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2891 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, },
+ ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2478 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, },
+ ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1264 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1264 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 385 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 2788729902, },
+ ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 137 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, },
+ ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2574694107, },
+ ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 137 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, },
+ ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2202 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, },
+ ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1361 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, },
+ ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4284 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3647471922, },
+ ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4283 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1019891080, },
+ ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2549 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2654043939, },
+ ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 138 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
+ ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 138 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
+ ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 138 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, },
+ ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1471 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
+ ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1471 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
+ ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1471 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, },
+ ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", statOrder = { 2561 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 986616727, },
+ ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1125 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 17354819, },
+ ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1123 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1138694108, },
+ ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1121 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 298331790, },
+ ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2356 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2803352419, },
+ ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2355 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3733737728, },
+ ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 341 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, },
+ ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 341 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, },
+ ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 342 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2178803872, },
+ ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2120 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, },
+ ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2387 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3836017971, },
+ ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2555 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3277537093, },
+ ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 854 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2557 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1625103793, },
+ ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2558 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3693130674, },
+ ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2559 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1269609669, },
+ ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1341 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4212255859, },
+ ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 9883 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, },
["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 962 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 637 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2629106530, },
- ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 638 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 3232201443, },
- ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2603 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHash = 2179619644, },
- ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 455 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3541114083, },
- ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2604 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1936544447, },
- ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Hit Chance per 8 Strength", statOrder = { 2605 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3068290007, },
- ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2606 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, },
- ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2606 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, },
- ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2607 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, },
- ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2607 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, },
- ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2613 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, },
- ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2613 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, },
- ["IncreasedChanceToIgniteUnique__1"] = { affix = "", "2% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgnite", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
- ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7058 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 374737750, },
- ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2453 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 2635385320, },
- ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 768 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, },
- ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 768 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, },
- ["SpellBlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(4-6)% Chance to Block Spell Damage during Effect", statOrder = { 784 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 215754572, },
- ["SpellBlockIncreasedDuringFlaskEffectUnique__1_"] = { affix = "", "+(20-30)% Chance to Block Spell Damage during Effect", statOrder = { 784 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 215754572, },
- ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2611 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 93696421, },
- ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 6536 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3585754616, },
- ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2633 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2825197711, },
- ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2624 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3212461220, },
- ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 860 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1840 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
- ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1838 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 2460686383, },
- ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1840 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
- ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1840 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
- ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1840 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
- ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1842 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3554867738, },
- ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1252 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
- ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1252 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
- ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1252 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
- ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2618 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2737492258, },
- ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2619 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 627889781, },
- ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2620 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3100457893, },
- ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6139 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 3271016161, },
- ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2631 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3321583955, },
- ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2632 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 376956212, },
- ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2622 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2221570601, },
- ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2625 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1384864963, },
- ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Hit Chance per Level", statOrder = { 2626 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3081076859, },
- ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2627 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 63607615, },
- ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2628 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 797084288, },
- ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2629 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1546046884, },
- ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2634 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 515996808, },
- ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 9555 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
- ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 9555 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
- ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 9555 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
- ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 9554, 9554.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2889807051, },
- ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 9555 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
- ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 9555 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
- ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2638 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, },
- ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2638 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, },
- ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2636 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1064067689, },
- ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2637 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 294153754, },
- ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 524797741, },
- ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2639 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2094646950, },
- ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2640 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4084331136, },
- ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2635 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4228691877, },
- ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 438 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 1592277680, },
- ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 440 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHash = 4051493629, },
- ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 9316 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 2716882575, },
- ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1425 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHash = 3051845758, },
- ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1432 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHash = 289814996, },
- ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1429 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHash = 1064331314, },
- ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2645 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2645 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2643 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 63 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 211836731, },
- ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 63 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 211836731, },
- ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 2648 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHash = 541329769, },
- ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 2649 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHash = 2048643052, },
- ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 391 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 85122299, },
- ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2646 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHash = 3477714116, },
- ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2646 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHash = 3477714116, },
- ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 6543 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, },
- ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 6543 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, },
- ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2270 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 953314356, },
- ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2437 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 782323220, },
- ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1910 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, },
- ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2143 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 1029319062, },
- ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2142 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, },
- ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1157 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 627339348, },
- ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 541, 541.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHash = 2816098341, },
- ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 1% increased Damage per 5 Dexterity", statOrder = { 1666 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 4187741589, },
- ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 540 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2770461177, },
- ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 2674 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2503253050, },
- ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2673 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1818773442, },
- ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2652 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, },
- ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2652 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, },
- ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 1822 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, },
- ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 1822 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, },
- ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", statOrder = { 2656 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2111067745, },
- ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2657 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 82392902, },
- ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2655 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2724643145, },
- ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2685 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 2839036860, },
- ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1558 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
- ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1558 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
- ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1558 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
- ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 2680 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2740359895, },
- ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1555 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
- ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1553, 1555 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
- ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1555 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
- ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2642 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
- ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2642 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
- ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2683 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, },
- ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2683 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, },
- ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2686 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, },
- ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2682 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1617739170, },
- ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2470 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3900877792, },
- ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2471 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 282353000, },
- ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4421 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 591162856, },
- ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 8894, 8894.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2511521167, },
- ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2260 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHash = 1420236871, },
- ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 443 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 967556848, },
- ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 444 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3235941702, },
- ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 441 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, },
- ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 441 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, },
- ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 442 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 973574623, },
- ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 445 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 678608747, },
- ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 355 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, },
- ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 356 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2593773031, },
- ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3187 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
- ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3187 }, level = 1, group = "AuraEffectGlobal", weightKey = { "default" }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 1880071428, },
- ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1892 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, },
- ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 1892 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, },
- ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1821 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 1586440250, },
- ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 2690 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 325437053, },
- ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 2687 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3818161429, },
- ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 824 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
- ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 823 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2689 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2872105818, },
- ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1635 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 9473 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1496370423, },
- ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1635 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
- ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1616 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, },
- ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1616 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, },
- ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8081 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3085465082, },
- ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1100 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3298440988, },
- ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 358 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1710508327, },
- ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5226 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 860668586, },
- ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2135 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, },
- ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2136 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 3597806437, },
- ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2266 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, },
- ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2266 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, },
- ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 2670 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2095084973, },
- ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2671 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHash = 2437193018, },
- ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of maximum Life Regenerated per second", statOrder = { 2659 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3462673103, },
- ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2664 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 778848857, },
- ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2382 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2138434718, },
- ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3385 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
- ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2677 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1489905076, },
- ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 2679 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 4196775867, },
- ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased effect of Buffs on you", statOrder = { 1827 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, },
- ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased effect of Buffs on you", statOrder = { 1827 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, },
- ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2676 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, },
- ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 362 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4066711249, },
- ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 2669 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, },
- ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 2669 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, },
- ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 656 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1457911472, },
- ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 791 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHash = 3636096208, },
- ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 719 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHash = 251342217, },
- ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2175 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, },
- ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1445 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
- ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1445 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
- ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1445 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
- ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 969, 1448 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
- ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 969, 1448 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
- ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 969, 1448 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
- ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 490 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3164659793, },
- ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2450 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2318615887, },
- ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2451 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3470535775, },
- ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
- ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 8599 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457679290, },
- ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 9590 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, },
- ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 473 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3321235265, },
- ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 369 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 254728692, },
- ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 6779 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 996053100, },
- ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1194 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, },
- ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1178 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, },
- ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1204 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, },
- ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1198 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, },
- ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1186 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1069260037, },
- ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1190 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, },
- ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2609 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 379328644, },
- ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1183 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, },
- ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 2973 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1010549321, },
- ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 2974 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1836374041, },
- ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 444174528, },
- ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1177 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 515842015, },
- ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1682 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
- ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1682 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
- ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "SpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1126 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3496944181, },
- ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1678690824, },
- ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1128 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1766142294, },
- ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1099 }, level = 1, group = "MineDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2137912951, },
- ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1095 }, level = 1, group = "DamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
- ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1663 }, level = 1, group = "MinionDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
- ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 859 }, level = 1, group = "LightningDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1130 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
- ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1130 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
- ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1112 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 967627487, },
- ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1112 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 967627487, },
- ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1718 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 4251717817, },
- ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1267 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2515515064, },
- ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1263 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, },
- ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1269 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
- ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1268 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, },
- ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1265 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1421645223, },
- ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1266 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, },
- ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1270 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3720627346, },
- ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1264 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, },
- ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1262 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1813451228, },
- ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1261 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1917910910, },
- ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1258 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 4249220643, },
- ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1289 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2382196858, },
- ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1260 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3805075944, },
- ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1290 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 1612163368, },
- ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1291 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2066542501, },
- ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1273 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1584440377, },
- ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1615 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 118398748, },
- ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1616 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 1896971621, },
- ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1084 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
- ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1084 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
- ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1085 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
- ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1085 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
- ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1086 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, },
- ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1109 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1393393937, },
- ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1218 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHash = 1476643878, },
- ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1226 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHash = 928238845, },
- ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1231 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHash = 1788635023, },
- ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1237 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHash = 2054902222, },
- ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1887 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
- ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 945 }, level = 1, group = "StrengthForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 946 }, level = 1, group = "DexterityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 947 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1084 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 538848803, },
- ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1085 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1535626285, },
- ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1086 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2300185227, },
- ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 944 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
- ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 872 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
- ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 873 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
- ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 874 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
- ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 875 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
- ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 870 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
- ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 871 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 872, 874 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 1843765141, },
- ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 873, 875 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHash = 815489141, },
- ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 871, 875 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 90481046, },
- ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 871, 873 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1207485992, },
- ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 966 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
- ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 974 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
- ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 968 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
- ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1447 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
- ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1450 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences", "attack" }, tradeHash = 211381198, },
- ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 867 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 869 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 867, 869 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 855315578, },
- ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 867, 871 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1627905397, },
- ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 869, 871 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 3667468782, },
- ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2511 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "defences" }, tradeHash = 1389153006, },
- ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3917489142, },
- ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 864 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 803737631, },
- ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 624954515, },
- ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 624954515, },
- ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 931, 1276 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2639697810, },
- ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1309 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 107161577, },
- ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1312 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2560468845, },
- ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1308 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2630620421, },
- ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1305 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2091591880, },
- ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1306 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3428039188, },
- ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1307 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, },
- ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1311 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1729982003, },
- ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1310 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3621953418, },
- ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1329 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 458899422, },
- ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1330 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4219746989, },
- ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1332 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3114492047, },
- ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1331 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1712221299, },
- ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1334 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2811834828, },
- ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1328 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3998601568, },
- ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1333 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1241396104, },
- ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1335 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1661096452, },
- ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1318 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2381842786, },
- ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1316 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 764295120, },
- ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1320 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3702513529, },
- ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1314 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1215447494, },
- ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1319 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1199429645, },
- ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, },
- ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 934 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, },
- ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1315 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 214031493, },
- ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1321 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "critical" }, tradeHash = 1104796138, },
- ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1323 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "critical" }, tradeHash = 3337344042, },
- ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1322 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1186596295, },
- ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1324 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "critical" }, tradeHash = 439950087, },
- ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1325 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 1424360933, },
- ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1337 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 670153687, },
- ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1317 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 252507949, },
- ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3859 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2546185479, },
- ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1340 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3668589927, },
- ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1338 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
- ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, },
- ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 938 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 1780168381, },
- ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1341 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 2529112796, },
- ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1342 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHash = 2307547323, },
- ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1344 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHash = 915908446, },
- ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1343 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHash = 2441475928, },
- ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1345 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHash = 1569407745, },
- ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1346 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 2710238363, },
- ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 956 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
- ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 957 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
- ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 958 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
- ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2479 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHash = 2915988346, },
- ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2480 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHash = 3441501978, },
- ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2481 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHash = 4277795662, },
- ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 955 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 2901986750, },
- ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 959 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
- ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 981 }, level = 1, group = "StunDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2517001139, },
+ ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 632 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 2629106530, },
+ ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 633 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 3232201443, },
+ ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2563 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHash = 2179619644, },
+ ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 446 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3541114083, },
+ ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2564 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1936544447, },
+ ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Hit Chance per 8 Strength", statOrder = { 2565 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3068290007, },
+ ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2566 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, },
+ ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2566 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, },
+ ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2567 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, },
+ ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2567 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, },
+ ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2572 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, },
+ ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2572 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, },
+ ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7223 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 374737750, },
+ ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2418 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 2635385320, },
+ ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 765 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "block", "flask" }, tradeHash = 2519106214, },
+ ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 765 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "block", "flask" }, tradeHash = 2519106214, },
+ ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2570 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 93696421, },
+ ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 6650 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3585754616, },
+ ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2592 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2825197711, },
+ ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2583 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3212461220, },
+ ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 855 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1817 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
+ ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1815 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 2460686383, },
+ ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1817 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
+ ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1817 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
+ ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1817 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, },
+ ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1819 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3554867738, },
+ ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1240 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
+ ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1240 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
+ ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1240 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, },
+ ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2577 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2737492258, },
+ ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2578 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 627889781, },
+ ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2579 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3100457893, },
+ ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6234 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 3271016161, },
+ ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2590 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3321583955, },
+ ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2591 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 376956212, },
+ ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2581 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2221570601, },
+ ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2584 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1384864963, },
+ ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Hit Chance per Level", statOrder = { 2585 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3081076859, },
+ ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2586 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 63607615, },
+ ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2587 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 797084288, },
+ ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2588 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1546046884, },
+ ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2593 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 515996808, },
+ ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 9835 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
+ ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 9835 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
+ ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 9835 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
+ ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 9834, 9834.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2889807051, },
+ ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 9835 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
+ ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 9835 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, },
+ ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2597 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, },
+ ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2597 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, },
+ ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2595 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1064067689, },
+ ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2596 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 294153754, },
+ ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 524797741, },
+ ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2598 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2094646950, },
+ ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2599 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4084331136, },
+ ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2594 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4228691877, },
+ ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 429 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 1592277680, },
+ ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 431 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHash = 4051493629, },
+ ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 9583 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 2716882575, },
+ ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1408 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHash = 3051845758, },
+ ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1415 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHash = 289814996, },
+ ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1412 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHash = 1064331314, },
+ ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2604 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2604 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2602 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 382 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 85122299, },
+ ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 6660 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, },
+ ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 6660 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, },
+ ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2238 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 953314356, },
+ ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2403 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 782323220, },
+ ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1889 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, },
+ ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2112 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 1029319062, },
+ ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2111 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, },
+ ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1145 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 627339348, },
+ ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 532, 532.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHash = 2816098341, },
+ ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 1% increased Damage per 5 Dexterity", statOrder = { 1645 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 4187741589, },
+ ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 531 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2770461177, },
+ ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 2629 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2503253050, },
+ ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2628 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1818773442, },
+ ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2607 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, },
+ ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2607 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, },
+ ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 1799 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, },
+ ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 1799 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, },
+ ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", statOrder = { 2611 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2111067745, },
+ ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2612 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 82392902, },
+ ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2610 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2724643145, },
+ ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2640 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 2839036860, },
+ ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1541 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
+ ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1541 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
+ ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1541 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, },
+ ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 2635 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2740359895, },
+ ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1538 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
+ ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1536, 1538 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
+ ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1538 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, },
+ ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2601 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
+ ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2601 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, },
+ ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2638 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, },
+ ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2638 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, },
+ ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2641 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, },
+ ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2637 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1617739170, },
+ ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2435 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3900877792, },
+ ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2436 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 282353000, },
+ ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4415 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 591162856, },
+ ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9164, 9164.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2511521167, },
+ ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2228 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHash = 1420236871, },
+ ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 434 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 967556848, },
+ ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 435 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3235941702, },
+ ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 432 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, },
+ ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 432 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, },
+ ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 433 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 973574623, },
+ ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 436 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 678608747, },
+ ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 347 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, },
+ ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 348 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2593773031, },
+ ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3134 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, },
+ ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3134 }, level = 1, group = "AuraEffectGlobal", weightKey = { "default" }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 1880071428, },
+ ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1871 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, },
+ ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 1871 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, },
+ ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1798 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 1586440250, },
+ ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 2645 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 325437053, },
+ ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 2642 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3818161429, },
+ ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 820 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, },
+ ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 819 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2644 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2872105818, },
+ ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1614 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 9757 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1496370423, },
+ ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, },
+ ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1595 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, },
+ ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1595 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, },
+ ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8274 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3085465082, },
+ ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1088 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3298440988, },
+ ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 350 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1710508327, },
+ ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5259 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 860668586, },
+ ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2104 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, },
+ ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2104 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, },
+ ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2105 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 3597806437, },
+ ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2234 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, },
+ ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2234 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, },
+ ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 2625 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2095084973, },
+ ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2626 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHash = 2437193018, },
+ ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of maximum Life Regenerated per second", statOrder = { 2614 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3462673103, },
+ ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2619 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 778848857, },
+ ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2350 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2138434718, },
+ ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3331 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
+ ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2632 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1489905076, },
+ ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect Allies", statOrder = { 2634 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 4196775867, },
+ ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased effect of Buffs on you", statOrder = { 1804 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, },
+ ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased effect of Buffs on you", statOrder = { 1804 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, },
+ ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2631 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, },
+ ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 354 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4066711249, },
+ ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 2624 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, },
+ ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 2624 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, },
+ ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 651 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1457911472, },
+ ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 787 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHash = 3636096208, },
+ ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 714 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "attack" }, tradeHash = 251342217, },
+ ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2144 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, },
+ ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1428 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
+ ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1428 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
+ ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1428 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, },
+ ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 970, 1431 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
+ ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 970, 1431 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
+ ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 970, 1431 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, },
+ ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 481 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3164659793, },
+ ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2415 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2318615887, },
+ ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2416 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3470535775, },
+ ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, },
+ ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 8844 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457679290, },
+ ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 9872 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, },
+ ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 464 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3321235265, },
+ ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 361 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 254728692, },
+ ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 6915 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 996053100, },
+ ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1182 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, },
+ ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1166 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, },
+ ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1192 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, },
+ ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1186 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, },
+ ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1174 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1069260037, },
+ ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1178 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, },
+ ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2568 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 379328644, },
+ ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1171 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, },
+ ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 2924 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1010549321, },
+ ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 2925 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1836374041, },
+ ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1150 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 444174528, },
+ ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1165 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 515842015, },
+ ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1659 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
+ ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1659 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
+ ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "SpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1114 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3496944181, },
+ ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1117 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1678690824, },
+ ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1116 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1766142294, },
+ ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1087 }, level = 1, group = "MineDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2137912951, },
+ ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1083 }, level = 1, group = "DamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2154246560, },
+ ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1642 }, level = 1, group = "MinionDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
+ ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 854 }, level = 1, group = "LightningDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1118 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
+ ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1118 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
+ ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1100 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 967627487, },
+ ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1100 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 967627487, },
+ ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1695 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 4251717817, },
+ ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1255 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2515515064, },
+ ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1251 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, },
+ ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1257 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
+ ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1256 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, },
+ ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1253 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1421645223, },
+ ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1254 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, },
+ ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1258 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3720627346, },
+ ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1252 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, },
+ ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1250 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1813451228, },
+ ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1249 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1917910910, },
+ ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1246 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 4249220643, },
+ ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1277 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2382196858, },
+ ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1248 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3805075944, },
+ ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1278 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 1612163368, },
+ ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1279 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2066542501, },
+ ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1261 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 1584440377, },
+ ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1594 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 118398748, },
+ ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1595 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 1896971621, },
+ ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1071 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
+ ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1071 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, },
+ ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1072 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
+ ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1072 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, },
+ ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1073 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, },
+ ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1097 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1393393937, },
+ ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1206 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHash = 1476643878, },
+ ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1214 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHash = 928238845, },
+ ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1219 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHash = 1788635023, },
+ ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1225 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHash = 2054902222, },
+ ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1866 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
+ ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 943 }, level = 1, group = "StrengthForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 944 }, level = 1, group = "DexterityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 945 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1071 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 538848803, },
+ ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1072 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1535626285, },
+ ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1073 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2300185227, },
+ ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 942 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1379411836, },
+ ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 866 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, },
+ ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 867 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 868 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, },
+ ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 869 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 864 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, },
+ ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 865 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 866, 868 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 1843765141, },
+ ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 867, 869 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHash = 815489141, },
+ ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 865, 869 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 90481046, },
+ ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 865, 867 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1207485992, },
+ ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, },
+ ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 975 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, },
+ ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 969 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, },
+ ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1430 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, },
+ ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences", "attack" }, tradeHash = 211381198, },
+ ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 861 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 863 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 861, 863 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 855315578, },
+ ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 861, 865 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1627905397, },
+ ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 863, 865 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 3667468782, },
+ ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2475 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "defences" }, tradeHash = 1389153006, },
+ ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3917489142, },
+ ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 859 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 803737631, },
+ ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 929, 1264 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2639697810, },
+ ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1297 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 107161577, },
+ ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1300 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2560468845, },
+ ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1296 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2630620421, },
+ ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1293 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2091591880, },
+ ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1294 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3428039188, },
+ ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1295 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, },
+ ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1299 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1729982003, },
+ ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1298 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3621953418, },
+ ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1317 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 458899422, },
+ ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1318 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4219746989, },
+ ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1320 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3114492047, },
+ ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1319 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1712221299, },
+ ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1322 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2811834828, },
+ ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1316 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3998601568, },
+ ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1321 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1241396104, },
+ ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1323 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1661096452, },
+ ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1306 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 2381842786, },
+ ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1304 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 764295120, },
+ ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1308 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 3702513529, },
+ ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1302 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1215447494, },
+ ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1307 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1199429645, },
+ ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, },
+ ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 932 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, },
+ ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1303 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 214031493, },
+ ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1309 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "critical" }, tradeHash = 1104796138, },
+ ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1311 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "critical" }, tradeHash = 3337344042, },
+ ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1310 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1186596295, },
+ ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1312 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "critical" }, tradeHash = 439950087, },
+ ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1313 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 1424360933, },
+ ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1325 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 670153687, },
+ ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1305 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 252507949, },
+ ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3800 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2546185479, },
+ ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1328 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3668589927, },
+ ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1326 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, },
+ ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, },
+ ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 936 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 1780168381, },
+ ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1329 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 2529112796, },
+ ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1330 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHash = 2307547323, },
+ ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1332 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHash = 915908446, },
+ ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1331 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHash = 2441475928, },
+ ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1333 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHash = 1569407745, },
+ ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1334 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 2710238363, },
+ ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 954 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, },
+ ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 955 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, },
+ ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 956 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, },
+ ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2444 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHash = 2915988346, },
+ ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2445 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHash = 3441501978, },
+ ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2446 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHash = 4277795662, },
+ ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 953 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 2901986750, },
+ ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 957 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, },
+ ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 982 }, level = 1, group = "StunDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2517001139, },
["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 989 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2511217560, },
- ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1574 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
- ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1574 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
- ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1574 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
- ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5552 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, },
- ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1892 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 895264825, },
- ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1893 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, },
- ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1543 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
- ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1545 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
- ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1542 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1514829491, },
- ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1541 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3483999943, },
- ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 4262448838, },
+ ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1557 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
+ ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1557 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
+ ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1557 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 474294393, },
+ ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5606 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, },
+ ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1871 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 895264825, },
+ ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, },
+ ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1526 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, },
+ ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1528 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, },
+ ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1525 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1514829491, },
+ ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1524 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3483999943, },
+ ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 4262448838, },
["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 985 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, },
- ["ChanceToIgniteJewel_"] = { affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 983 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1335054179, },
["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 987 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, },
- ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1808 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
- ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1810 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
- ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1825 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 3872306017, },
- ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1681 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 977908611, },
- ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1681 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 977908611, },
- ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1070 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 2166444903, },
- ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1053 }, level = 1, group = "BlockShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 4061558269, },
- ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1064 }, level = 1, group = "BlockStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 1778298516, },
- ["DualWieldingSpellBlockForJewel"] = { affix = "Dissipating", "+1% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1057 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 138741818, },
- ["ShieldSpellBlockJewel"] = { affix = "Thwarting", "+1% Chance to Block Spell Damage while holding a Shield", statOrder = { 1054 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 938645499, },
- ["StaffSpellBlockJewel"] = { affix = "Halting", "+1% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1061 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 2120297997, },
- ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5181 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1308198396, },
- ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1554 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
- ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1556 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
- ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 8841 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1984113628, },
- ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1855 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "curse" }, tradeHash = 3407849389, },
+ ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1785 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
+ ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1787 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
+ ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1802 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 3872306017, },
+ ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1658 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 977908611, },
+ ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1658 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 977908611, },
+ ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1056 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 2166444903, },
+ ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1052 }, level = 1, group = "BlockShieldForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 4061558269, },
+ ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1055 }, level = 1, group = "BlockStaffForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 1778298516, },
+ ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5214 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1308198396, },
+ ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1537 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
+ ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, },
+ ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9106 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1984113628, },
+ ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1832 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "curse" }, tradeHash = 3407849389, },
["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 992 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, },
- ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1436 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, },
- ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 8842 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, },
+ ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1419 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, },
+ ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9107 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, },
["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 996 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, },
- ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Bleeding Duration on you", statOrder = { 991 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
- ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1896 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
- ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 985, 1555 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1936010701, },
- ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 987, 1554 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2971420375, },
- ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(3-5)% chance to Ignite", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 983, 1556 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1413663783, },
- ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2820, 2823 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2866047695, },
- ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2184, 4491 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 6403334, },
- ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4430 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHash = 3739863694, },
- ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1568 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 1175385867, },
- ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1875 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, },
+ ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 985, 1538 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1936010701, },
+ ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 987, 1537 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2971420375, },
+ ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1413663783, },
+ ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2775, 2778 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2866047695, },
+ ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2153, 4491 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 6403334, },
+ ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4424 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHash = 3739863694, },
+ ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1551 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 1175385867, },
+ ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2578 }, level = 1, group = "MinionBlockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block", "minion" }, tradeHash = 3374054207, },
- ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2585 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
- ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8126 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, },
- ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2585 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
- ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1097 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
- ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1097 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
- ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1097 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, },
- ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "TotemLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2467 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1809006367, },
- ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2705 }, level = 1, group = "JewelStrToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2850960254, },
- ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2705 }, level = 1, group = "JewelStrToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2850960254, },
- ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2708 }, level = 1, group = "JewelDexToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1971303613, },
- ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2708 }, level = 1, group = "JewelDexToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1971303613, },
- ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2709 }, level = 1, group = "JewelIntToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1903968940, },
- ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2709 }, level = 1, group = "JewelIntToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1903968940, },
- ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2706 }, level = 1, group = "JewelStrToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2332369917, },
- ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2706 }, level = 1, group = "JewelStrToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2332369917, },
- ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 947 }, level = 1, group = "Intelligence", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
- ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2710 }, level = 1, group = "JewelIntToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1956000455, },
- ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2710 }, level = 1, group = "JewelIntToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1956000455, },
- ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 946 }, level = 1, group = "Dexterity", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
- ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2707 }, level = 1, group = "JewelDexToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3577105420, },
- ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2707 }, level = 1, group = "JewelDexToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3577105420, },
- ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 945 }, level = 1, group = "Strength", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
- ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1725 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
- ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 967 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 655 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3591397930, },
- ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1583 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 4080656180, },
- ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2263 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, },
- ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2263 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, },
- ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 9608 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3943945975, },
- ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 808 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2719662643, },
- ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3642528642, },
- ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3642528642, },
- ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 808 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 4077035099, },
- ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1540 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
- ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2178 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
- ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2184 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
- ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2184 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
- ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2184 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
- ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2714 }, level = 1, group = "JewelStealRareMod", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3355050323, },
- ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2711 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2216127021, },
- ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2732 }, level = 1, group = "UnarmedRange", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3273962791, },
- ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2721 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 2018468320, },
- ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2725 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos" }, tradeHash = 3540967981, },
- ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2726 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2054270841, },
- ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "4% increased Spell Damage per 10 Intelligence", statOrder = { 2419 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2818518881, },
- ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1719 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
- ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, },
- ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1719 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
- ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, },
- ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2712 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 2715345125, },
- ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2713 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 768628581, },
- ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2718 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 335735137, },
- ["MinionDodgeChanceUniqueJewel16"] = { affix = "", "Minions have +(2-5)% chance to Suppress Spell Damage", statOrder = { 8200 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3195300715, },
- ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 8200 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3195300715, },
- ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1158 }, level = 1, group = "FireDamagePerBuff", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 761505024, },
- ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1159 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 3434279150, },
- ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2717 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, },
- ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2717 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, },
- ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2719 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 310246444, },
- ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 2719 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, },
- ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2719 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, },
- ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2486 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 581625445, },
- ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2486 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, },
- ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2486 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, },
- ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 1965 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1166417447, },
- ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1906 }, level = 1, group = "DamageTaken", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3691641145, },
- ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2733 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 886366428, },
- ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2735 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 736847554, },
- ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2736 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3779823630, },
- ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2739 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1212897608, },
- ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2728 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 1609999275, },
- ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2729 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHash = 622657842, },
- ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 9531 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
- ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 9531 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
- ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 9531 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
- ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2227 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1560540713, },
- ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1405 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1722463112, },
- ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 6953 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3152714748, },
- ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 6955 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 244825991, },
- ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2756 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1962922582, },
- ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2757 }, level = 1, group = "VaalSkillDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 547412107, },
- ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 9381 }, level = 1, group = "VaalSkillRefundChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 2833218772, },
- ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2759 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical", "vaal" }, tradeHash = 3165492062, },
- ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2760 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical", "vaal" }, tradeHash = 2070982674, },
- ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1101 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2422 }, level = 1, group = "FlaskEffect", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask" }, tradeHash = 114734841, },
- ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2762 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 2701327257, },
- ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2761 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1633381214, },
- ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2763 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { "default" }, weightVal = { 0 }, modTags = { "gem" }, tradeHash = 47271484, },
- ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2764 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1677654268, },
- ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1457 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
- ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1456 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 751813227, },
- ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1458 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1699499433, },
- ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2772 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 1556263668, },
- ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1854 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 3112863846, },
- ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1118 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1019020209, },
- ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1912 }, level = 1, group = "DamageTakenOnFullES", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 969865219, },
- ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1912 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, },
- ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1656 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHash = 3627052716, },
- ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2593 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHash = 288651645, },
- ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2774, 2775, 2790 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHash = 869956483, },
- ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2777, 2778 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 3834234392, },
- ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2776 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1421711266, },
- ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2779 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3208876368, },
- ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2780 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1380481398, },
- ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2785 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3833699760, },
- ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 848, 2784 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2402140837, },
- ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2788 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 3364361256, },
- ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2789 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1880450502, },
- ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2672 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3915702459, },
- ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2272 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2272 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2272 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2186 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
- ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2186 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
- ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2186 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
- ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2211 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 654274615, },
- ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2224 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 338121249, },
- ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 519 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 243713911, },
- ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1548 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
- ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 347 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2501237765, },
- ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2187 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, },
- ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2187 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, },
- ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 9564 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, },
- ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1249 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
- ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1250 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
- ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1251 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
- ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1118 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1019020209, },
- ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1235 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1235 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1235 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
- ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1274 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, },
- ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1274 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, },
- ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1275 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, },
- ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1275 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, },
- ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1455 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, },
- ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1455 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, },
- ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 1915 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 705686721, },
- ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1916 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156764291, },
- ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2573 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798853218, },
- ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 2981 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2614654450, },
- ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2179 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1454946771, },
- ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3015 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1924591908, },
- ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5083 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2453026567, },
- ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1453 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, },
- ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1452 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, },
- ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1452 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, },
- ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1144 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1038686782, },
- ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2977, 2978, 2979 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, },
- ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2977, 2978, 2979 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, },
- ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2906 }, level = 1, group = "BarrageThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3988316455, },
- ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2900, 2900.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3902917146, },
- ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2899, 2899.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1559361866, },
- ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2889 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2077634227, },
- ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3026 }, level = 1, group = "AdditionalSnipeTotemsPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2125178364, },
- ["AdditionalShrapnelBallistaePerStrengthUnique__1"] = { affix = "", "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength", statOrder = { 3025 }, level = 1, group = "AdditionalShrapnelBallistaePerStrength", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1124661381, },
- ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3027 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2066426995, },
- ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4388 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 787185456, },
- ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3028 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2826979740, },
- ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3035 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHash = 607839150, },
- ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 370 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 13669281, },
- ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 371 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
- ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 371 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
- ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 372 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1991958615, },
- ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 373 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2608615082, },
- ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 374 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4020144606, },
- ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 375 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, },
- ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 375 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, },
- ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 644 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 570159344, },
- ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3038 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, },
- ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 3038 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, },
- ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3710 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 528422616, },
- ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3059 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3968454273, },
- ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3060 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3577316952, },
- ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 549 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4240751513, },
- ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 385, 385.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 2497009514, },
- ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 454 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3279574030, },
- ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 48 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, },
- ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 48 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, },
- ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3188 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3919199754, },
- ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3192 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2865232420, },
- ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3191 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, },
- ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3190 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3148570142, },
- ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 572 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
- ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 572 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
- ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 572 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
- ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 533 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 4169720975, },
- ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1269 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
- ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1179 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2008219439, },
- ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1274831335, },
- ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3201 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, },
- ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3193 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2988055461, },
- ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3194 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 531932482, },
- ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3197 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1912660783, },
- ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3199 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1827657795, },
- ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3204 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4150597533, },
- ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3205 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3645234093, },
- ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3206 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1857635068, },
- ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1224 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, },
- ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1224 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, },
- ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 657 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 538730182, },
- ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 639 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2146730404, },
- ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 640 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311869501, },
- ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 654 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2005503156, },
- ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 677 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2451856207, },
- ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 678, 678.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2434293916, },
- ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1530 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, },
- ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3221 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
- ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3221 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
- ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2432 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3590104875, },
- ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3222 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, },
- ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 564 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 4125471110, },
- ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2643 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 747 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1935500672, },
- ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 731 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHash = 677302513, },
- ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2815 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1415558356, },
- ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3362 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3003321700, },
- ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3363 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 3127641775, },
- ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 548 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3250579936, },
- ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3356 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2656696317, },
- ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3240 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 399854017, },
- ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3054 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 762154651, },
- ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3403 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, },
- ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3372 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 625037258, },
- ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3373 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 4064396395, },
- ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 623, 805 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "resource", "life", "defences" }, tradeHash = 2650716659, },
- ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3377 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3905661226, },
- ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Hit Chance against Enemies on Full Life", statOrder = { 3378 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 47954913, },
- ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3379 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, },
- ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", statOrder = { 3387 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHash = 2329121140, },
- ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3385 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
- ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3385 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
- ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3388 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3788706881, },
- ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3305 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
- ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3305 }, level = 1, group = "MaximumGolems", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2821079699, },
- ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3305 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
- ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3305 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
- ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 456 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3056188914, },
- ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 8743 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 632761194, },
- ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3390 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1524882321, },
- ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 357 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 107118693, },
- ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3005 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
- ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1384 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 988575597, },
- ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 1906 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, },
- ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 743 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4267616253, },
- ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3403 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, },
- ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3406 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 555311393, },
- ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3407 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHash = 1030835421, },
- ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3408 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2072206041, },
- ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3009 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, },
- ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1613 }, level = 1, group = "TrapTriggerRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 497716276, },
- ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3039 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2901262227, },
- ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 3729 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4148932984, },
- ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 2825 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
- ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3405 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 1087710344, },
- ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3404 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3391324703, },
- ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 725 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 3686711832, },
- ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3693 }, level = 1, group = "TrapPoisonChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3192135716, },
- ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 376 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
- ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 376 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
- ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 448 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, },
- ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 448 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, },
- ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3016 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2367680009, },
- ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3017 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 991168463, },
- ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 566 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3751996449, },
- ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1653 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
- ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3730 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 931560398, },
- ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3734 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3418949024, },
- ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7044 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
- ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3737 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3481428688, },
- ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3738 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3344493315, },
- ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3756 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2939409392, },
- ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3755 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2684385509, },
- ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 380 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHash = 4006301249, },
- ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 3757 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3020069394, },
- ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3758 }, level = 1, group = "ManaPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 620607587, },
- ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3759 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 1644446896, },
- ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3762 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3033481928, },
- ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3761 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1153907800, },
- ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3763 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, },
- ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3764 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 262406138, },
- ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3760 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental" }, tradeHash = 3907129423, },
- ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3768 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion", "critical" }, tradeHash = 3164503003, },
- ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3765 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 3024010112, },
- ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3766 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 28063707, },
- ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3767 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 2790884137, },
- ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1521 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, },
- ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1521 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, },
- ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 8705 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3304801725, },
- ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1520 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3607154250, },
- ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5481 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1064477264, },
- ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4385 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, },
- ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4385 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, },
- ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2238 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, },
- ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 8272 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 696659555, },
- ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3932 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 4052714663, },
- ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3930 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2181129193, },
- ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8103 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4222857095, },
- ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5234 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1477032229, },
- ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 8702 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, },
- ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 8702 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, },
- ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 8732 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3291999509, },
- ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5120 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 2319040925, },
- ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6175 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2977774856, },
- ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5217 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, },
- ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5217 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, },
- ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4712 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, },
- ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1462 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 1678831767, },
- ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 483 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2434330144, },
- ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8221 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2602664175, },
- ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3223 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2732344760, },
- ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 482 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, },
- ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 482 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, },
- ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4047 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 4091848539, },
- ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8470 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, },
- ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2824 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, },
- ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2824 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, },
- ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 551 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 2634885412, },
- ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 591 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1357672429, },
- ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4426 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2591028853, },
- ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 8681 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, },
- ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4284 }, level = 1, group = "ArmourOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2129352930, },
- ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 5911 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2358015838, },
- ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5342 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2478752719, },
- ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4214 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3748879662, },
- ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 859 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8024 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
- ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8024 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
- ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2791 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2459809121, },
- ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 58 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3192592092, },
- ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 6919 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 608438307, },
- ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2218 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2213584313, },
- ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7123, 7123.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 3931143552, },
- ["ColdResistConvertedToDodgeChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value", statOrder = { 7101, 7101.1 }, level = 1, group = "ColdResistConvertedToDodgeChanceScaledJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 1409669176, },
- ["LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value", statOrder = { 7137, 7137.1 }, level = 1, group = "LightningResistConvertedToSpellBlockChanceScaledJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 1224928411, },
- ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7124, 7124.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 1566428451, },
- ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7100, 7100.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 2264338004, },
- ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7138, 7138.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 439570297, },
- ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 557 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, },
- ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 557 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, },
- ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3626 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3995612171, },
- ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4231 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1483066460, },
- ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3104, 3104.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3133323410, },
- ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3330 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3910961021, },
- ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3020 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 1276918229, },
- ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3770 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHash = 2477735984, },
- ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of maximum Mana when you Shock an Enemy", statOrder = { 3772 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2524029637, },
- ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 542, 542.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHash = 723388324, },
- ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3785 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2040585053, },
- ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Hit Chance when in Main Hand", statOrder = { 3784 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3404168630, },
- ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2407 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 35810390, },
- ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2403 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 3025389409, },
- ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 770 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1085359447, },
- ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 803 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741956733, },
- ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3733 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 990219738, },
- ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 3777 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1275066948, },
- ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 3780 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798111687, },
- ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 3776 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1067429236, },
- ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 3787 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, },
- ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3788 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, },
- ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3781 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, },
- ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3781 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, },
- ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3779 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 277484363, },
- ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 3775 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2415592273, },
- ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3794 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 4095359151, },
- ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3783 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3992153900, },
- ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4447 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 115351487, },
- ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1376 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 156734303, },
- ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3773 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3122365625, },
- ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3774 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2085001246, },
- ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1522 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 285624304, },
- ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1519 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2230931659, },
- ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2198 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2632954025, },
- ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2199 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 402176724, },
- ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 3789 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1440638174, },
- ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3793 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 3669898891, },
- ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 388 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1936441365, },
- ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 3778 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2288558421, },
- ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3782 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3204585690, },
- ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3795 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 264715122, },
- ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1395 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3513180117, },
- ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 3796 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2466604008, },
- ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 3798 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2105048696, },
- ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Counterattacks", statOrder = { 3806 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1109700751, },
- ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3800 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2114157293, },
- ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3802 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2217962305, },
- ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3803 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2497198283, },
- ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3804 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4156715241, },
- ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7226 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2760138143, },
- ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1232 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
- ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1152 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, },
- ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1152 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, },
- ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1214 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
- ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1214 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
- ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1214 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
- ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1214 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
- ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
- ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
- ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
- ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
- ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1228 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
- ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1228 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
- ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1228 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
- ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1228 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
- ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1497 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 115109959, },
- ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1872 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2319377249, },
- ["IgnoreHexproofUnique___1"] = { affix = "", "Your Curses can affect Hexproof Enemies", statOrder = { 2291 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, },
- ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3808 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4266201818, },
- ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 3809 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2208857094, },
- ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2614 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, },
- ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2614 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, },
- ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2412 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 967108924, },
- ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3811 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1498954300, },
- ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3810 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4151190513, },
- ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3844 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3266394681, },
- ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3790 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHash = 2200407711, },
- ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 8171 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHash = 1889350679, },
- ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3792 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHash = 351413557, },
- ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 735 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3589217170, },
- ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3840 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 144887967, },
- ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3842 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1073384532, },
- ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 3841 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, },
- ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 3841 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, },
- ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3218 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3738335639, },
- ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3816 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, },
- ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3816 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, },
- ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1563 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, },
- ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 3855 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 33065250, },
- ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3856 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, },
- ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3856 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, },
- ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 281 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3425526049, },
- ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 381 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3718597497, },
- ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Ignite Chance and Magnitude", statOrder = { 2547 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1888494262, },
- ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1389 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
- ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4245 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448279015, },
- ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3185 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, },
- ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3185 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, },
- ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3385 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
- ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1622 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
- ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1622 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
- ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 2952 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 1464115829, },
- ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1587 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 289885185, },
- ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 2820 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 2820 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 779 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 803730540, },
- ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3857 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
- ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3857 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
- ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3857 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
- ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2145 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, },
- ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1639 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, },
- ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3230 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, },
- ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3871 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHash = 3243534964, },
- ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3872 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, },
- ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3872 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, },
- ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 6924 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, },
- ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3870 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2562665460, },
- ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3880 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, },
- ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3881 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4107150355, },
- ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 3882 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3134790305, },
- ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3916 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3919557483, },
- ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3917 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3112776239, },
- ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3918 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1332534089, },
- ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 8373 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1342790450, },
- ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7186 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3433676080, },
- ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 4950, 7504 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3583773212, },
- ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 7500, 7501 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4028807870, },
- ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5639, 7505 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3021082678, },
- ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7502, 7503 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1530239356, },
- ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3919 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4169623196, },
- ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3922 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1997151732, },
- ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3921 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1812251528, },
- ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3925 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 4157767905, },
- ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3923 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1011373762, },
- ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 8155 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2337295272, },
- ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4138 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1433144735, },
- ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6269 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3699490848, },
- ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 607 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHash = 2295303426, },
- ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4348 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
- ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4348 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
- ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4348 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
- ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2557 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3848047105, },
- ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5572 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, },
- ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5572 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, },
- ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 5987 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, },
- ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7157 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3193100053, },
- ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8248 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4114010855, },
- ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6207 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3489372920, },
- ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3096 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3086866381, },
- ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1683 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2162876159, },
- ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1710 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 507075051, },
- ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 5865 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 506942497, },
- ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1709 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2042405614, },
- ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8056 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2355151849, },
- ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1708 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2196657026, },
- ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 5902 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 810772344, },
- ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5079 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1695720239, },
- ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 8605 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2636403786, },
- ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 8606 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 97250660, },
- ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4455 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635120731, },
- ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 753 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 323705912, },
- ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 733 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 215882879, },
- ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 9630 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50381303, },
- ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2582 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3375935924, },
- ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 8393 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 920385757, },
- ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 9533 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
- ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 9533 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
- ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 9533 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
- ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 9533 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, },
- ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6287 }, level = 1, group = "GolemLifeUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1750735210, },
- ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6286 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 2235163762, },
- ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3313 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 3384291300, },
- ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3314 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2869193493, },
- ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3314 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2869193493, },
- ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 2968 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 729180395, },
- ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 2969 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3246099900, },
- ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6284 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2109043683, },
- ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6282 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 56225773, },
- ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6290 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences", "minion" }, tradeHash = 1020786773, },
- ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4048 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1429385513, },
- ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 8973 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 467806158, },
- ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 8969 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1550015622, },
- ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5400 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3245481061, },
- ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3933 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, },
- ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3931 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2551779822, },
- ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5191 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 358040686, },
- ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8319 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, },
- ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8319 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, },
- ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5371 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, },
- ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5371 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, },
- ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 5797 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2970902024, },
- ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2837 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 956384511, },
- ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4368 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1358422215, },
- ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5065 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3206381437, },
- ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6205 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493590317, },
- ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7005 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 202275580, },
- ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 565 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3844016207, },
- ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 4853 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3965442551, },
- ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 8996 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 291644318, },
- ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 9633 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3576153145, },
- ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 5977 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2241902512, },
- ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 9547 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3630426972, },
- ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8022 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
- ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8022 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
- ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7059 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
- ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 795138349, },
- ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 8984 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2088288068, },
- ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4109 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 3635566977, },
- ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6201 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3101915418, },
- ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 8214 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHash = 2195137717, },
- ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 8400 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4056985119, },
+ ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2541 }, level = 1, group = "MinionBlockForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block", "minion" }, tradeHash = 3374054207, },
+ ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
+ ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8321 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, },
+ ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
+ ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1085 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
+ ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1085 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
+ ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1085 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, },
+ ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "TotemLifeForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2432 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1809006367, },
+ ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2660 }, level = 1, group = "JewelStrToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2850960254, },
+ ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2660 }, level = 1, group = "JewelStrToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2850960254, },
+ ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2663 }, level = 1, group = "JewelDexToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1971303613, },
+ ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2663 }, level = 1, group = "JewelDexToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1971303613, },
+ ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2664 }, level = 1, group = "JewelIntToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1903968940, },
+ ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2664 }, level = 1, group = "JewelIntToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1903968940, },
+ ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2661 }, level = 1, group = "JewelStrToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2332369917, },
+ ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2661 }, level = 1, group = "JewelStrToInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 2332369917, },
+ ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 945 }, level = 1, group = "Intelligence", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 328541901, },
+ ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2665 }, level = 1, group = "JewelIntToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1956000455, },
+ ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2665 }, level = 1, group = "JewelIntToDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1956000455, },
+ ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 944 }, level = 1, group = "Dexterity", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3261801346, },
+ ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2662 }, level = 1, group = "JewelDexToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3577105420, },
+ ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2662 }, level = 1, group = "JewelDexToStr", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 3577105420, },
+ ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 943 }, level = 1, group = "Strength", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 4080418644, },
+ ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1702 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, },
+ ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 968 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 650 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3591397930, },
+ ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1566 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 4080656180, },
+ ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2231 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, },
+ ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2231 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, },
+ ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 9888 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3943945975, },
+ ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 804 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2719662643, },
+ ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 14 }, level = 1, group = "JewelRingRadiusValues", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3642528642, },
+ ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 14 }, level = 1, group = "JewelRingRadiusValues", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3642528642, },
+ ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 804 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 4077035099, },
+ ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1523 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, },
+ ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2147 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, },
+ ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2153 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
+ ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2153 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
+ ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2153 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, },
+ ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2669 }, level = 1, group = "JewelStealRareMod", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3355050323, },
+ ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2666 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2216127021, },
+ ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2687 }, level = 1, group = "UnarmedRange", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3273962791, },
+ ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2676 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 2018468320, },
+ ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2680 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos" }, tradeHash = 3540967981, },
+ ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2681 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2054270841, },
+ ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "4% increased Spell Damage per 10 Intelligence", statOrder = { 2385 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2818518881, },
+ ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1696 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
+ ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, },
+ ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1696 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, },
+ ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 913 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, },
+ ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2667 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 2715345125, },
+ ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2668 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 768628581, },
+ ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2673 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 335735137, },
+ ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1146 }, level = 1, group = "FireDamagePerBuff", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 761505024, },
+ ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1147 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 3434279150, },
+ ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2672 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, },
+ ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2672 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, },
+ ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2674 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 310246444, },
+ ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 2674 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, },
+ ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2674 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, },
+ ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2450 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 581625445, },
+ ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2450 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, },
+ ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2450 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, },
+ ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 1934 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1166417447, },
+ ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1885 }, level = 1, group = "DamageTaken", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3691641145, },
+ ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2688 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 886366428, },
+ ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2690 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 736847554, },
+ ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2691 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3779823630, },
+ ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2694 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attribute" }, tradeHash = 1212897608, },
+ ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2683 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHash = 1609999275, },
+ ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2684 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHash = 622657842, },
+ ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 9811 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
+ ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 9811 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
+ ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 9811 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2995661301, },
+ ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2196 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1560540713, },
+ ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1388 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1722463112, },
+ ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7094 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3152714748, },
+ ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7096 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 244825991, },
+ ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2711 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1962922582, },
+ ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2712 }, level = 1, group = "VaalSkillDuration", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 547412107, },
+ ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 9650 }, level = 1, group = "VaalSkillRefundChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 2833218772, },
+ ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2714 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical", "vaal" }, tradeHash = 3165492062, },
+ ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2715 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "critical", "vaal" }, tradeHash = 2070982674, },
+ ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1089 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2388 }, level = 1, group = "FlaskEffect", weightKey = { "default" }, weightVal = { 0 }, modTags = { "flask" }, tradeHash = 114734841, },
+ ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2717 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 2701327257, },
+ ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2716 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1633381214, },
+ ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2718 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { "default" }, weightVal = { 0 }, modTags = { "gem" }, tradeHash = 47271484, },
+ ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2719 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { "default" }, weightVal = { 0 }, modTags = { "vaal" }, tradeHash = 1677654268, },
+ ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1440 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
+ ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1439 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 751813227, },
+ ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1441 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1699499433, },
+ ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2727 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 1556263668, },
+ ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1831 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 3112863846, },
+ ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1106 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1019020209, },
+ ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1891 }, level = 1, group = "DamageTakenOnFullES", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 969865219, },
+ ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1891 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, },
+ ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1635 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHash = 3627052716, },
+ ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2553 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHash = 288651645, },
+ ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2729, 2730, 2745 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { "default" }, weightVal = { 0 }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHash = 869956483, },
+ ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2732, 2733 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 3834234392, },
+ ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2731 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1421711266, },
+ ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2734 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3208876368, },
+ ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2735 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { "default" }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1380481398, },
+ ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2740 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3833699760, },
+ ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 843, 2739 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2402140837, },
+ ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2743 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 3364361256, },
+ ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2744 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1880450502, },
+ ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2627 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3915702459, },
+ ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2240 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2240 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2240 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2155 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
+ ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2155 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
+ ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2155 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, },
+ ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2180 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 654274615, },
+ ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2193 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 338121249, },
+ ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 510 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 243713911, },
+ ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1531 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, },
+ ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 339 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2501237765, },
+ ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2156 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, },
+ ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2156 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, },
+ ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 9845 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, },
+ ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1237 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, },
+ ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1238 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, },
+ ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1239 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, },
+ ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1106 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 1019020209, },
+ ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1223 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1223 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1223 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, },
+ ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1262 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, },
+ ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1262 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, },
+ ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1263 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, },
+ ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1263 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, },
+ ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1438 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, },
+ ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1438 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, },
+ ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 1894 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 705686721, },
+ ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1895 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156764291, },
+ ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2536 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798853218, },
+ ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 2932 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2614654450, },
+ ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2148 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1454946771, },
+ ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 2966 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1924591908, },
+ ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5111 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2453026567, },
+ ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1436 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, },
+ ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, },
+ ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, },
+ ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1132 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1038686782, },
+ ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2928, 2929, 2930 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, },
+ ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2928, 2929, 2930 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, },
+ ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2859 }, level = 1, group = "BarrageThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3988316455, },
+ ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2853, 2853.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 3902917146, },
+ ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2852, 2852.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1559361866, },
+ ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2842 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2077634227, },
+ ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 2976 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2066426995, },
+ ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4381 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 787185456, },
+ ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 2977 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2826979740, },
+ ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 2984 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHash = 607839150, },
+ ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 362 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 13669281, },
+ ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 363 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
+ ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 363 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
+ ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 364 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1991958615, },
+ ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 365 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2608615082, },
+ ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 366 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4020144606, },
+ ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 367 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, },
+ ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 367 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, },
+ ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 639 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "frenzy_charge" }, tradeHash = 570159344, },
+ ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2987 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, },
+ ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2987 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, },
+ ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3652 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 528422616, },
+ ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3007 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3968454273, },
+ ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3008 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3577316952, },
+ ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 540 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4240751513, },
+ ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 377, 377.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 2497009514, },
+ ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 445 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3279574030, },
+ ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 50 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, },
+ ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 50 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, },
+ ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3135 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3919199754, },
+ ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3139 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2865232420, },
+ ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3138 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, },
+ ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3138 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, },
+ ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3137 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3148570142, },
+ ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 563 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
+ ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 563 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
+ ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 563 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, },
+ ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 524 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 4169720975, },
+ ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1257 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
+ ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1167 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2008219439, },
+ ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1151 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1274831335, },
+ ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3148 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, },
+ ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3140 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2988055461, },
+ ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3141 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 531932482, },
+ ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3144 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1912660783, },
+ ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3146 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1827657795, },
+ ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3151 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4150597533, },
+ ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3152 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1857635068, },
+ ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1212 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, },
+ ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1212 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, },
+ ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 652 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 538730182, },
+ ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 634 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2146730404, },
+ ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 635 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3311869501, },
+ ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 649 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2005503156, },
+ ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 672 }, level = 1, group = "UtilityFlaskWard", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2451856207, },
+ ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 673, 673.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 2434293916, },
+ ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1513 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, },
+ ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3167 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
+ ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3167 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, },
+ ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2398 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3590104875, },
+ ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3168 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, },
+ ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 555 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 4125471110, },
+ ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2602 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 743 }, level = 1, group = "LocalFlaskPetrified", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1935500672, },
+ ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 726 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "physical" }, tradeHash = 677302513, },
+ ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2770 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1415558356, },
+ ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3308 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3003321700, },
+ ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3309 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 3127641775, },
+ ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 539 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3250579936, },
+ ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3302 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2656696317, },
+ ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3186 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 399854017, },
+ ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3003 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 762154651, },
+ ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3349 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, },
+ ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3318 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 625037258, },
+ ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3319 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 4064396395, },
+ ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 617, 801 }, level = 1, group = "FlaskZealotsOath", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "flask", "resource", "life", "defences" }, tradeHash = 2650716659, },
+ ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3323 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3905661226, },
+ ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Hit Chance against Enemies on Full Life", statOrder = { 3324 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 47954913, },
+ ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3325 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, },
+ ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", statOrder = { 3333 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHash = 2329121140, },
+ ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3331 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
+ ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3331 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
+ ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3334 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3788706881, },
+ ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3251 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
+ ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3251 }, level = 1, group = "MaximumGolems", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2821079699, },
+ ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3251 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
+ ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3251 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, },
+ ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 447 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3056188914, },
+ ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 8993 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 632761194, },
+ ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3336 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1524882321, },
+ ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 349 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 107118693, },
+ ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2956 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, },
+ ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1367 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 988575597, },
+ ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 1885 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, },
+ ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 739 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 4267616253, },
+ ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3349 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, },
+ ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3352 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 555311393, },
+ ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3353 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHash = 1030835421, },
+ ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3354 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2072206041, },
+ ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 2960 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, },
+ ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1592 }, level = 1, group = "TrapTriggerRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 497716276, },
+ ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 2988 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2901262227, },
+ ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 3671 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4148932984, },
+ ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 2780 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
+ ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3351 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 1087710344, },
+ ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3350 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3391324703, },
+ ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 720 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 3686711832, },
+ ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3635 }, level = 1, group = "TrapPoisonChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3192135716, },
+ ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 368 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
+ ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 368 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
+ ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 439 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, },
+ ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 439 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, },
+ ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 2967 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2367680009, },
+ ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 2968 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 991168463, },
+ ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 557 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3751996449, },
+ ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1632 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, },
+ ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3672 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 931560398, },
+ ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3676 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3418949024, },
+ ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7210 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
+ ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3679 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3481428688, },
+ ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3680 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3344493315, },
+ ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3698 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2939409392, },
+ ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3697 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2684385509, },
+ ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 372 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHash = 4006301249, },
+ ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 3699 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3020069394, },
+ ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3700 }, level = 1, group = "ManaPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 620607587, },
+ ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3701 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 1644446896, },
+ ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3704 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3033481928, },
+ ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3703 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1153907800, },
+ ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3705 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, },
+ ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3706 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 262406138, },
+ ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3702 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental" }, tradeHash = 3907129423, },
+ ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3710 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion", "critical" }, tradeHash = 3164503003, },
+ ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3707 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 3024010112, },
+ ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3708 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 28063707, },
+ ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3709 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 2790884137, },
+ ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1504 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, },
+ ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1504 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, },
+ ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 8954 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3304801725, },
+ ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1503 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3607154250, },
+ ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5532 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1064477264, },
+ ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4378 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, },
+ ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4378 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, },
+ ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2207 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, },
+ ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 8481 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 696659555, },
+ ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3873 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 4052714663, },
+ ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3871 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2181129193, },
+ ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8296 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4222857095, },
+ ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5267 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1477032229, },
+ ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 8952 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, },
+ ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 8952 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, },
+ ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 8982 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3291999509, },
+ ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5152 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 2319040925, },
+ ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6273 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2977774856, },
+ ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5250 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, },
+ ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5250 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, },
+ ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4742 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, },
+ ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1445 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 1678831767, },
+ ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 474 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2434330144, },
+ ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8427 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2602664175, },
+ ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3169 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2732344760, },
+ ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 473 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, },
+ ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 473 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, },
+ ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 3986 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 4091848539, },
+ ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8704 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, },
+ ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2779 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, },
+ ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2779 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, },
+ ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 542 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 2634885412, },
+ ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 582 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1357672429, },
+ ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4420 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2591028853, },
+ ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 8929 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, },
+ ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4269 }, level = 1, group = "ArmourOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2129352930, },
+ ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 5998 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2358015838, },
+ ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5385 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2478752719, },
+ ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4188 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3748879662, },
+ ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 854 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8211 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
+ ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8211 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, },
+ ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2746 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2459809121, },
+ ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7058 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 608438307, },
+ ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2187 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2213584313, },
+ ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7288, 7288.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "block" }, tradeHash = 3931143552, },
+ ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7289, 7289.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHash = 1566428451, },
+ ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7266, 7266.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHash = 2264338004, },
+ ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7302, 7302.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHash = 439570297, },
+ ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 548 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, },
+ ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 548 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, },
+ ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3569 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3995612171, },
+ ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4211 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1483066460, },
+ ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3052, 3052.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3133323410, },
+ ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3276 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3910961021, },
+ ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 2971 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 1276918229, },
+ ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3712 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHash = 2477735984, },
+ ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of maximum Mana when you Shock an Enemy", statOrder = { 3714 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2524029637, },
+ ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 533, 533.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHash = 723388324, },
+ ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3727 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2040585053, },
+ ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Hit Chance when in Main Hand", statOrder = { 3726 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3404168630, },
+ ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2373 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 35810390, },
+ ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2369 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 3025389409, },
+ ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 767 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1085359447, },
+ ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 799 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3741956733, },
+ ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3675 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 990219738, },
+ ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 3719 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1275066948, },
+ ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 3722 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798111687, },
+ ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 3718 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1067429236, },
+ ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 3729 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, },
+ ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3730 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, },
+ ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3723 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, },
+ ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3723 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, },
+ ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3721 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 277484363, },
+ ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 3717 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2415592273, },
+ ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3735 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 4095359151, },
+ ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3725 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3992153900, },
+ ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4442 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 115351487, },
+ ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1360 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 156734303, },
+ ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3715 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3122365625, },
+ ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3716 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2085001246, },
+ ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 285624304, },
+ ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1502 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2230931659, },
+ ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2167 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2632954025, },
+ ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2168 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 402176724, },
+ ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3734 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 3669898891, },
+ ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 380 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1936441365, },
+ ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 3720 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2288558421, },
+ ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3724 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3204585690, },
+ ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3736 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 264715122, },
+ ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1378 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3513180117, },
+ ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 3737 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2466604008, },
+ ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 3740 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2105048696, },
+ ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Counterattacks", statOrder = { 3748 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1109700751, },
+ ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3742 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2114157293, },
+ ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3744 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2217962305, },
+ ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3745 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2497198283, },
+ ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3746 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4156715241, },
+ ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7394 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2760138143, },
+ ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, },
+ ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1140 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, },
+ ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1140 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, },
+ ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1202 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
+ ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1202 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
+ ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1202 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
+ ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1202 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, },
+ ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1208 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
+ ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1208 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
+ ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1208 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
+ ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1208 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, },
+ ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1216 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
+ ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1216 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
+ ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1216 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
+ ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1216 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, },
+ ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1480 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 115109959, },
+ ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1851 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2319377249, },
+ ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2259 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, },
+ ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3750 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4266201818, },
+ ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 3751 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2208857094, },
+ ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2573 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, },
+ ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2573 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, },
+ ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2378 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 967108924, },
+ ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3753 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1498954300, },
+ ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3752 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4151190513, },
+ ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3785 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3266394681, },
+ ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3731 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHash = 2200407711, },
+ ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 8373 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHash = 1889350679, },
+ ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3733 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHash = 351413557, },
+ ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 730 }, level = 1, group = "FlaskStunImmunity", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3589217170, },
+ ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3781 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 144887967, },
+ ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3783 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1073384532, },
+ ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 3782 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, },
+ ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 3782 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, },
+ ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3164 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3738335639, },
+ ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3758 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, },
+ ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3758 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, },
+ ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1546 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, },
+ ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 3796 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 33065250, },
+ ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3797 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, },
+ ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3797 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, },
+ ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 273 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3425526049, },
+ ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 373 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3718597497, },
+ ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2511 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1888494262, },
+ ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1372 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
+ ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4225 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448279015, },
+ ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3132 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, },
+ ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3132 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, },
+ ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3331 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, },
+ ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1601 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
+ ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1601 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, },
+ ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 2903 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 1464115829, },
+ ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1570 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 289885185, },
+ ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 2775 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 2775 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 776 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 803730540, },
+ ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3798 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
+ ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3798 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
+ ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3798 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, },
+ ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2114 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, },
+ ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1618 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, },
+ ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3176 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, },
+ ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3812 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHash = 3243534964, },
+ ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3813 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, },
+ ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3813 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, },
+ ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7063 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, },
+ ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3811 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2562665460, },
+ ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3821 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, },
+ ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3822 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4107150355, },
+ ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 3823 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3134790305, },
+ ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3857 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3919557483, },
+ ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3858 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3112776239, },
+ ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3859 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1332534089, },
+ ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 8598 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1342790450, },
+ ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7351 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3433676080, },
+ ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 4984, 7684 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3583773212, },
+ ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 7680, 7681 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4028807870, },
+ ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5700, 7685 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3021082678, },
+ ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7682, 7683 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1530239356, },
+ ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3860 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4169623196, },
+ ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3863 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1997151732, },
+ ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3862 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1812251528, },
+ ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3866 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 4157767905, },
+ ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3864 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1011373762, },
+ ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 8357 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2337295272, },
+ ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4098 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1433144735, },
+ ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6369 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3699490848, },
+ ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 598 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHash = 2295303426, },
+ ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4335 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
+ ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4335 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
+ ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4335 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
+ ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3848047105, },
+ ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5627 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, },
+ ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5627 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, },
+ ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5627 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, },
+ ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6078 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, },
+ ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7321 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3193100053, },
+ ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8454 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4114010855, },
+ ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6307 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3489372920, },
+ ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3044 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3086866381, },
+ ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1660 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2162876159, },
+ ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1687 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 507075051, },
+ ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 5939 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 506942497, },
+ ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1686 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2042405614, },
+ ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8249 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2355151849, },
+ ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1685 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2196657026, },
+ ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 5986 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 810772344, },
+ ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5107 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1695720239, },
+ ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 8851 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2636403786, },
+ ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 8852 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 97250660, },
+ ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4450 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635120731, },
+ ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 750 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 323705912, },
+ ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 728 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 215882879, },
+ ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 9910 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50381303, },
+ ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2544 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3375935924, },
+ ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 8621 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 920385757, },
+ ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 9813 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
+ ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 9813 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
+ ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 9813 }, level = 1, group = "PrimordialJewelCount", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1089165168, },
+ ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 9813 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, },
+ ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6390 }, level = 1, group = "GolemLifeUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1750735210, },
+ ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6389 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 2235163762, },
+ ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3259 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 3384291300, },
+ ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3260 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2869193493, },
+ ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3260 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHash = 2869193493, },
+ ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 2919 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 729180395, },
+ ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 2920 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3246099900, },
+ ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6387 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2109043683, },
+ ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6385 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 56225773, },
+ ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6393 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences", "minion" }, tradeHash = 1020786773, },
+ ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 3987 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1429385513, },
+ ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 9243 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 467806158, },
+ ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9237 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1550015622, },
+ ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5441 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3245481061, },
+ ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3874 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, },
+ ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3872 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2551779822, },
+ ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5224 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 358040686, },
+ ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8528 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, },
+ ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8528 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, },
+ ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5412 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, },
+ ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5412 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, },
+ ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 5863 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2970902024, },
+ ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2792 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 956384511, },
+ ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4360 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1358422215, },
+ ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5093 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3206381437, },
+ ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6305 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493590317, },
+ ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7171 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 202275580, },
+ ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 556 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3844016207, },
+ ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 4883 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3965442551, },
+ ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 9266 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 291644318, },
+ ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 9913 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3576153145, },
+ ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6068 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2241902512, },
+ ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 9827 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3630426972, },
+ ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8209 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
+ ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8209 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, },
+ ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7224 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, },
+ ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 795138349, },
+ ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 9253 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2088288068, },
+ ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4073 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 3635566977, },
+ ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6301 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3101915418, },
+ ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 8419 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHash = 2195137717, },
+ ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 8628 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4056985119, },
["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4491 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, },
- ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 6696 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4260403588, },
- ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 6609 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3705740723, },
- ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8019 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3806100539, },
- ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 6789 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2841027131, },
- ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 9519 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1981749265, },
- ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8021 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1457265483, },
- ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5491 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2675627948, },
- ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 6695 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3729758391, },
- ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 8266 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 718844908, },
- ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 9423 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 519622288, },
- ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3097 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2831922878, },
- ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2842 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 628716294, },
- ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2843 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3875592188, },
- ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 9052 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2342431054, },
- ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 801 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 2444301311, },
- ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 800 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1869678332, },
- ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 382 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3375208082, },
- ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6544 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2097550886, },
- ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 6619 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1512695141, },
- ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 5995 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2341811700, },
- ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 496 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3985468650, },
- ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 491 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, },
- ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 491 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, },
- ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4187 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2636728487, },
- ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4089 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3619054484, },
- ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4130 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3218891195, },
- ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 6763 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1982144275, },
- ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7223 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2563691316, },
- ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 5864 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3864993324, },
- ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 489 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 825352061, },
- ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 6495 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 262773569, },
- ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4457 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493090598, },
- ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5482 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 908650225, },
- ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 8843, 8843.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2706994884, },
- ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 9319 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, },
- ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 9319 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, },
- ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 8136 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 4047895119, },
- ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 8183 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 4017879067, },
- ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 8219 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1736403946, },
- ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, },
- ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, },
- ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1735 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4180687797, },
- ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1734 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3062763405, },
- ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4068 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3213407110, },
- ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 8245 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1176492594, },
- ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5213 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3612256591, },
- ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 5976 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4167600809, },
- ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5498 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, },
- ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6191, 6191.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, },
- ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2542 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1985969957, },
- ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2541 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1917124426, },
- ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2543 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1604984482, },
- ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6000 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2424717327, },
- ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5243 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2373079502, },
- ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 6852 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 949718413, },
- ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1860 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, },
- ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 487 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2498303876, },
- ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 460 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
- ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 460 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
- ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 460 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
- ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5128 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 1573646535, },
- ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 9607 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2483362276, },
- ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8198 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, },
- ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 8198 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, },
- ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 605 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 372705099, },
- ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 536 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHash = 2939874331, },
- ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3605 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1589090910, },
- ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9135 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3013430129, },
- ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 5869 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 788946728, },
- ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3085 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, },
- ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 5954 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3544527742, },
- ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3095 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 3655758456, },
- ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 480 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1540840, },
- ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 484 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1198418726, },
- ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 463 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
- ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5118 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2733285506, },
- ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2821 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1237693206, },
- ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3934 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4095169720, },
- ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 379 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 228165595, },
- ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 378 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1002855537, },
- ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 377 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, },
- ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 377 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, },
- ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 371 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
- ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 535 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1869144397, },
- ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8090, 8090.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3829706447, },
- ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 8532 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3491499175, },
- ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6179 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 496822696, },
- ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6216 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 352612932, },
- ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 8533 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2771181375, },
- ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 9482 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, },
- ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 9482 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, },
- ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7044 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
- ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4667 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 4170725899, },
- ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
- ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
- ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 5583 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
- ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 5583 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
- ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 5583 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
- ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1384, 1390 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3982333460, },
- ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 537 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 818329660, },
- ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3935, 3935.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4058504226, },
- ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3937, 3937.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 1114411822, },
- ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3936, 3936.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1753916791, },
- ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3938 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 242822230, },
- ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3939 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2152491486, },
- ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3940 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3597737983, },
- ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 534 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3670477918, },
- ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 8831 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
- ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 6822 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
- ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 6822 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
- ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 6822 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
- ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 77 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 899329924, },
- ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 817 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, },
- ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 817 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, },
- ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 123 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2886998024, },
- ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 124 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3799930101, },
- ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 125 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2236460050, },
- ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 9208 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2918150296, },
- ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 5973 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 702909553, },
- ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 453 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3970432307, },
- ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 459 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 4193390599, },
- ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 461 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3822878124, },
- ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 528 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2700934265, },
- ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 529 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1300125165, },
- ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 530 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2959369472, },
- ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 8946 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3111456397, },
- ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1469 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3035514623, },
- ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 6948 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3269060224, },
- ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1293 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 1604393896, },
- ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7236 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4084763463, },
- ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6223 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1438403666, },
- ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7169 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 31415336, },
- ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7147, 7148 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2151971591, },
- ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 797, 798 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 2001651052, },
- ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 555 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1128763150, },
- ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 553 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3918947537, },
- ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 556 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 850729424, },
- ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 554 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2602585351, },
- ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 558 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1892084828, },
- ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 376 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
- ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 497, 497.1, 497.2, 497.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1757548756, },
- ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 498, 498.1, 498.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1517357911, },
- ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 8542 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2374357674, },
- ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4607 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2658399404, },
- ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5129 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHash = 175362265, },
- ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5497 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1034580601, },
- ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 8269 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1360723495, },
- ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 9265, 9265.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 130616495, },
- ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4295 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 2466912132, },
- ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 4831 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 676883595, },
- ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 4827 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3881126302, },
- ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 4840 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3024242403, },
- ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5492 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 35476451, },
- ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1557 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
- ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1557 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
- ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1557 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
- ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 595 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 208447205, },
- ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6045 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1195140808, },
- ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6095 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3062707366, },
- ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5260 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1233358566, },
- ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 9414 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 531868030, },
- ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 5609 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 450601566, },
- ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9206 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, },
- ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9206 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, },
- ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 8609 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2097195894, },
- ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 5884 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 56919069, },
- ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 5770 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3416664215, },
- ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 9010 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2076926581, },
- ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5221 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3520048646, },
- ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 9619 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2200114771, },
- ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 9624 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 304032021, },
- ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 9628 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3284029342, },
- ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 9627 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3476327198, },
- ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2549 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2933625540, },
- ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5715, 5715.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, },
- ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 571 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 651875072, },
- ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 6910 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 642457541, },
- ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 6990 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 186482813, },
- ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 6988 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3892691596, },
- ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 6911 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2750004091, },
- ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 6918 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2044840211, },
- ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 6908 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2863332749, },
- ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 5575 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 4031851097, },
- ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 202 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, },
- ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 202 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, },
- ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 3991 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 570644802, },
- ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 3993 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 305634887, },
- ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 3994 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1996775727, },
- ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 8364 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHash = 3137640399, },
- ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 596 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1992516007, },
- ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 3990 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 328131617, },
- ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 3992 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2663792764, },
- ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3988 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, },
- ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3988 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, },
- ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 9527 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3442107889, },
- ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 576 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3308936917, },
- ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 577 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2603798371, },
- ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8108 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 173438493, },
- ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5127 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, },
- ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 5741 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1686913105, },
- ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 8498 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 513221334, },
- ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3867 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
- ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3008 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1649883131, },
- ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8105 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 4085417083, },
- ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4093 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1818900806, },
- ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2921 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
- ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4128 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 816458107, },
- ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4128 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 816458107, },
- ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 8661 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "minion" }, tradeHash = 262301496, },
- ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 599 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3262369040, },
- ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 3963, 6296 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3320313293, },
- ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3944 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2926399803, },
- ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3941 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1555962658, },
- ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3942 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2921373173, },
- ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3943 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2312817839, },
- ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 3950 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1926816773, },
- ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 3951 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2262007777, },
- ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3953 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, },
- ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3952 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, },
- ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 9564 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, },
- ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1248 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 2435536961, },
- ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 603 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHash = 1350938937, },
- ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 602 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3141831683, },
- ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 604 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2143990571, },
- ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 494 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1904419785, },
- ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 506 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, },
- ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 502 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, },
- ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 525 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, },
- ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 518 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 989878105, },
- ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 507 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, },
- ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1402 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 760855772, },
- ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5487 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, },
- ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5487 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, },
- ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 6788 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 952897668, },
- ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 5722 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 850820277, },
- ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5053 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4104492115, },
- ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 7836 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158543967, },
- ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 8656 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2761732967, },
- ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 3984 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 637690626, },
- ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 3983 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4119032338, },
- ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2173 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, },
- ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5182 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, },
- ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5182 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, },
- ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 8828 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, },
- ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 8828 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, },
- ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 328 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3814066599, },
- ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 326 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2854183975, },
- ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8095 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3485231932, },
- ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8106 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 855634301, },
- ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4439 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251945210, },
- ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4318 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2544408546, },
- ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4317 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1746347097, },
- ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 6790 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2589482056, },
- ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 7244 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1495376076, },
- ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4438 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251731548, },
- ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 578 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2554328719, },
- ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7116, 7119 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 2542902299, },
- ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7115, 7118 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2676447058, },
- ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7117, 7120 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1007157231, },
- ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1808 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
- ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1810 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
- ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1825 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
- ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2315 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, },
- ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2317 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
- ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2319 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
- ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 8267 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2116250000, },
- ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1498 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
- ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 8270 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3774108776, },
- ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1389 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
- ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2314 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, },
- ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 6807 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3961213398, },
- ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2846 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3515686789, },
- ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2925 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 902747843, },
- ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5498 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, },
- ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8098 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1073447019, },
- ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3867 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
- ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8102 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1917107159, },
- ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4078 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2355741828, },
- ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4079 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2148784747, },
- ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4080 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2856326982, },
- ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 9001 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 161741084, },
- ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2240 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 482967934, },
- ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 9004 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1309947938, },
- ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 8352 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 700405539, },
- ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 8351 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 2764080642, },
- ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 8354 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2650222338, },
- ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 8500 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1447080724, },
- ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1378 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, },
- ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 5866 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2189382346, },
- ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3837 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2713233613, },
- ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6190 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2119664154, },
- ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6191, 6191.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, },
- ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6163 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2894476716, },
- ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1529 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2323242761, },
- ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1526 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, },
- ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4330 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3618888098, },
- ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1729 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3700381193, },
- ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4331 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 987588151, },
- ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5357 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2547511866, },
- ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5358 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 707887043, },
- ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2921 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
- ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5127 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, },
- ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 8492 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1226049915, },
- ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 8494 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3986347319, },
- ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1500 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
- ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1505 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
- ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1510 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
- ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 6690 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2877370216, },
- ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6198 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2408544213, },
- ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6144 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 813119588, },
- ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3655 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3780437763, },
- ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6168 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3371432622, },
- ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 8381 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 761598374, },
- ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 9613 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 1990354706, },
- ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 9614 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 1876857497, },
- ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1887 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
- ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1887 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
- ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 601 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHash = 3657377047, },
- ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3948 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHash = 1860646468, },
- ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 6558 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4234677275, },
- ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 6557 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 89314980, },
- ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5212 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2517031897, },
- ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 6830 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2642525868, },
- ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, },
- ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 641 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 806698863, },
- ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 740 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHash = 1866211373, },
- ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 737 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1535051459, },
- ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 772 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 3278399103, },
- ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1600 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 209387074, },
- ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 3995, 3996 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666908929, },
- ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 3998, 3998.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1174243390, },
- ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1862, 6959 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1239325414, },
- ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2842, 6952 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2148696191, },
- ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7254 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2676451350, },
- ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7255 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1212083058, },
- ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 2661 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3767939384, },
- ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2660 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3941641418, },
- ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2662 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1438488526, },
- ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2663 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2373999301, },
- ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 501 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2721815210, },
- ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8555 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 1291925008, },
- ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8556 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 3859865977, },
- ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 179 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3274973940, },
- ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 543 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHash = 3171958921, },
- ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 608, 608.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHash = 1378815167, },
- ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2857 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4224337800, },
- ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4428 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, },
- ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4428 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, },
- ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9529 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
- ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9529 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
- ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9529 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
- ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9529 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
- ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9529 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
- ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6515 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3959101898, },
- ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6516 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3817220109, },
- ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 6831 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 536957, },
- ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 6514 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3814686091, },
- ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8028 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3259396413, },
- ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 6833 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 2687017988, },
- ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6502 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3819451758, },
- ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6503 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2500442851, },
- ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 5982 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2775776604, },
- ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 6501 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2154349925, },
- ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8012 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3716758077, },
- ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 5983 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 2675641469, },
- ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6505 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3059700363, },
- ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6506 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3395872960, },
- ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5220 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1970606344, },
- ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 6504 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1862926389, },
- ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8002 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 950661692, },
- ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5222 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 2494069187, },
- ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6510 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1542765265, },
- ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6511 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2189040439, },
- ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 8488 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3294232483, },
- ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 6508 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2126027382, },
- ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 8809 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 650630047, },
- ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 8495 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3163114700, },
- ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6498 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1284151528, },
- ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6499 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1133703802, },
- ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5126 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 739274558, },
- ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 6497 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2572910724, },
- ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4151 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 786460697, },
- ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5131 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 3456816469, },
- ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 9530 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
- ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9237 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2566390555, },
- ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 8860 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2697019412, },
- ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5119 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 970844066, },
- ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4233 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1724614884, },
- ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 5728 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3103189267, },
- ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 5764 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1910205563, },
- ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 8325 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 1810368194, },
- ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 8800 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 730530528, },
- ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 8799 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4235333770, },
- ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 8133 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3808469650, },
- ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8125 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHash = 2830135449, },
- ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 7235 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2042813020, },
- ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7208 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3293275880, },
- ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 8320 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2585926696, },
- ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 8826 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 2803981661, },
- ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7072 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 200113086, },
- ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7070 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2418322751, },
- ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1256719186, },
- ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1602, 6932 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHash = 2109698899, },
- ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1602, 6885 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 476646817, },
- ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1602, 6906 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHash = 454308351, },
- ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 1602, 7164 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3746833883, },
- ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1602, 6980 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3668986230, },
- ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1602, 6902 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1692679499, },
- ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4391 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 396113830, },
- ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4392 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1643324992, },
- ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 9548 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 128585622, },
- ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 88, 274 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3567278969, },
- ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 916, 1406 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2084531689, },
- ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7008 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1819655989, },
- ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4500 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1552907959, },
+ ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 6827 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4260403588, },
+ ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 6729 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3705740723, },
+ ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8206 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3806100539, },
+ ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 6925 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2841027131, },
+ ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 9799 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1981749265, },
+ ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8208 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1457265483, },
+ ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5542 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2675627948, },
+ ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 6826 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3729758391, },
+ ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 8475 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 718844908, },
+ ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 9701 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 519622288, },
+ ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3045 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2831922878, },
+ ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2797 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 628716294, },
+ ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2798 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3875592188, },
+ ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 9312 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2342431054, },
+ ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 797 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 2444301311, },
+ ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 796 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { "flask", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1869678332, },
+ ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 374 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3375208082, },
+ ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6661 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2097550886, },
+ ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 6741 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1512695141, },
+ ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6086 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2341811700, },
+ ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 487 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3985468650, },
+ ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 482 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, },
+ ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 482 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, },
+ ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4157 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2636728487, },
+ ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4050 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3619054484, },
+ ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 6898 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1982144275, },
+ ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7391 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2563691316, },
+ ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 5938 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3864993324, },
+ ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 480 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 825352061, },
+ ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 6607 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 262773569, },
+ ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4452 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493090598, },
+ ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5533 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 908650225, },
+ ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9108, 9108.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2706994884, },
+ ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 9586 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, },
+ ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 9586 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, },
+ ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 8333 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 4047895119, },
+ ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 8386 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 4017879067, },
+ ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 8424 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1736403946, },
+ ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 131 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, },
+ ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 131 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, },
+ ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1712 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4180687797, },
+ ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1711 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3062763405, },
+ ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4021 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3213407110, },
+ ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 8451 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1176492594, },
+ ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5246 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3612256591, },
+ ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6067 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4167600809, },
+ ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5549 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, },
+ ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6290, 6290.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, },
+ ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2506 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1985969957, },
+ ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2505 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1917124426, },
+ ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2507 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1604984482, },
+ ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6091 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2424717327, },
+ ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5276 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2373079502, },
+ ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 6990 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 949718413, },
+ ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1837 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, },
+ ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 478 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2498303876, },
+ ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 451 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
+ ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 451 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
+ ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 451 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, },
+ ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5160 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 1573646535, },
+ ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 9887 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2483362276, },
+ ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8403 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, },
+ ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 8403 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, },
+ ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 596 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 372705099, },
+ ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 527 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHash = 2939874331, },
+ ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3548 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 1589090910, },
+ ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9398 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 3013430129, },
+ ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 5949 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 788946728, },
+ ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3033 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, },
+ ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6043 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3544527742, },
+ ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3043 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 3655758456, },
+ ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 471 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1540840, },
+ ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 475 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1198418726, },
+ ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 454 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, },
+ ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5149 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2733285506, },
+ ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2776 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1237693206, },
+ ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3875 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4095169720, },
+ ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 371 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 228165595, },
+ ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 370 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1002855537, },
+ ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 369 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, },
+ ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 369 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, },
+ ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 363 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, },
+ ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 526 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1869144397, },
+ ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8283, 8283.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3829706447, },
+ ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 8776 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3491499175, },
+ ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6277 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 496822696, },
+ ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6315 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 352612932, },
+ ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 8777 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2771181375, },
+ ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 9763 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, },
+ ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 9763 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, },
+ ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7210 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, },
+ ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4697 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 4170725899, },
+ ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
+ ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, },
+ ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
+ ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
+ ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, },
+ ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1367, 1373 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3982333460, },
+ ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 528 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 818329660, },
+ ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3876, 3876.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4058504226, },
+ ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3878, 3878.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 1114411822, },
+ ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3877, 3877.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1753916791, },
+ ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3879 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 242822230, },
+ ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3880 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2152491486, },
+ ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3881 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3597737983, },
+ ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 525 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3670477918, },
+ ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9095 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
+ ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 6960 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
+ ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 6960 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
+ ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 6960 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, },
+ ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 69 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 899329924, },
+ ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 813 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, },
+ ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 813 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, },
+ ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 115 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2886998024, },
+ ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 116 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3799930101, },
+ ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 117 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2236460050, },
+ ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 9471 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2918150296, },
+ ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6062 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 702909553, },
+ ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 444 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3970432307, },
+ ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 450 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 4193390599, },
+ ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 452 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3822878124, },
+ ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 519 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2700934265, },
+ ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 520 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1300125165, },
+ ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 521 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2959369472, },
+ ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9219 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3111456397, },
+ ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1452 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3035514623, },
+ ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7089 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3269060224, },
+ ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1281 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 1604393896, },
+ ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7405 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4084763463, },
+ ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6322 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1438403666, },
+ ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7334 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 31415336, },
+ ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7311, 7312 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2151971591, },
+ ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 793, 794 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { "default" }, weightVal = { 1, 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 2001651052, },
+ ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 546 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1128763150, },
+ ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 544 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3918947537, },
+ ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 547 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 850729424, },
+ ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 545 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2602585351, },
+ ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 549 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1892084828, },
+ ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 368 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, },
+ ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 488, 488.1, 488.2, 488.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1757548756, },
+ ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 489, 489.1, 489.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1517357911, },
+ ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 8785 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2374357674, },
+ ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4637 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2658399404, },
+ ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5161 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { "default" }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHash = 175362265, },
+ ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5548 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1034580601, },
+ ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 8478 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1360723495, },
+ ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 9532, 9532.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 130616495, },
+ ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4280 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { "default" }, weightVal = { 0 }, modTags = { "armour", "defences" }, tradeHash = 2466912132, },
+ ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 4863 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 676883595, },
+ ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 4859 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3881126302, },
+ ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 4875 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3024242403, },
+ ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5543 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 35476451, },
+ ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1540 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
+ ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1540 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
+ ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1540 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, },
+ ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 586 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 208447205, },
+ ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6136 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1195140808, },
+ ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6187 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3062707366, },
+ ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5295 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1233358566, },
+ ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 9692 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 531868030, },
+ ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 5668 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 450601566, },
+ ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9468 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, },
+ ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9468 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, },
+ ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 8855 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2097195894, },
+ ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 5964 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 56919069, },
+ ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 5835 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3416664215, },
+ ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5254 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3520048646, },
+ ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 9899 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2200114771, },
+ ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 9904 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 304032021, },
+ ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 9908 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3284029342, },
+ ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 9907 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3476327198, },
+ ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2513 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2933625540, },
+ ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5779, 5779.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, },
+ ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 562 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 651875072, },
+ ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7049 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 642457541, },
+ ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7130 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 186482813, },
+ ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7128 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3892691596, },
+ ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7050 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2750004091, },
+ ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7057 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2044840211, },
+ ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7047 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2863332749, },
+ ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 5630 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 4031851097, },
+ ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 194 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, },
+ ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 194 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, },
+ ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 3932 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 570644802, },
+ ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 3934 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 305634887, },
+ ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 3935 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1996775727, },
+ ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 8589 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHash = 3137640399, },
+ ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 587 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1992516007, },
+ ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 3931 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 328131617, },
+ ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 3933 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2663792764, },
+ ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3929 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, },
+ ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3929 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, },
+ ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 9807 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3442107889, },
+ ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 567 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3308936917, },
+ ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 568 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2603798371, },
+ ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8301 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 173438493, },
+ ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5159 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, },
+ ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 5805 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1686913105, },
+ ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 8737 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 513221334, },
+ ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3808 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
+ ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 2959 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1649883131, },
+ ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8298 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 4085417083, },
+ ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4055 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1818900806, },
+ ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2874 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
+ ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 8909 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { "default" }, weightVal = { 0 }, modTags = { "resource", "mana", "minion" }, tradeHash = 262301496, },
+ ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 590 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3262369040, },
+ ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 3904, 6399 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3320313293, },
+ ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3885 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2926399803, },
+ ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3882 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1555962658, },
+ ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3883 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2921373173, },
+ ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3884 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2312817839, },
+ ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 3891 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1926816773, },
+ ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 3892 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2262007777, },
+ ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3894 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, },
+ ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3893 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, },
+ ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 9845 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, },
+ ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1236 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 2435536961, },
+ ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 594 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHash = 1350938937, },
+ ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 593 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3141831683, },
+ ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 595 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2143990571, },
+ ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 485 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1904419785, },
+ ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 497 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, },
+ ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 493 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, },
+ ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 516 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, },
+ ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 509 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 989878105, },
+ ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 498 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, },
+ ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1385 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 760855772, },
+ ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5538 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, },
+ ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5538 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, },
+ ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 6924 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 952897668, },
+ ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 5786 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 850820277, },
+ ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5084 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4104492115, },
+ ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8016 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158543967, },
+ ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 8905 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2761732967, },
+ ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 3925 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 637690626, },
+ ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 3924 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4119032338, },
+ ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2142 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, },
+ ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5215 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, },
+ ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5215 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, },
+ ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9092 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, },
+ ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9092 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, },
+ ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 320 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3814066599, },
+ ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 318 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2854183975, },
+ ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8288 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3485231932, },
+ ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8299 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 855634301, },
+ ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4434 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251945210, },
+ ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4303 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2544408546, },
+ ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4302 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1746347097, },
+ ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 6926 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2589482056, },
+ ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 7413 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1495376076, },
+ ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4433 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251731548, },
+ ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 569 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2554328719, },
+ ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7281, 7284 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 2542902299, },
+ ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7280, 7283 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2676447058, },
+ ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7282, 7285 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1007157231, },
+ ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1785 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, },
+ ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1787 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, },
+ ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1802 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, },
+ ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2283 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, },
+ ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2285 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, },
+ ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2287 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, },
+ ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 8476 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2116250000, },
+ ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1481 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, },
+ ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 8479 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3774108776, },
+ ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1372 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, },
+ ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2282 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, },
+ ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 6944 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3961213398, },
+ ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2801 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3515686789, },
+ ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2878 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 902747843, },
+ ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5549 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, },
+ ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8291 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1073447019, },
+ ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3808 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, },
+ ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8295 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1917107159, },
+ ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4039 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2355741828, },
+ ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4040 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2148784747, },
+ ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4041 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2856326982, },
+ ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 8577 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 700405539, },
+ ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 8576 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 2764080642, },
+ ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 8579 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2650222338, },
+ ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 8739 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1447080724, },
+ ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1362 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, },
+ ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 5940 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2189382346, },
+ ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3778 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2713233613, },
+ ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6289 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2119664154, },
+ ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6290, 6290.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, },
+ ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6261 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2894476716, },
+ ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1512 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2323242761, },
+ ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1509 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, },
+ ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4316 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3618888098, },
+ ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1706 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3700381193, },
+ ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4317 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 987588151, },
+ ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5399 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2547511866, },
+ ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5400 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 707887043, },
+ ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2874 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, },
+ ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5159 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, },
+ ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 8730 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1226049915, },
+ ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 8732 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3986347319, },
+ ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1483 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
+ ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 6816 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2877370216, },
+ ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6298 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2408544213, },
+ ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6240 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 813119588, },
+ ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3598 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3780437763, },
+ ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6266 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3371432622, },
+ ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 8608 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 761598374, },
+ ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 9893 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 1990354706, },
+ ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 9894 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 1876857497, },
+ ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1866 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
+ ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1866 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, },
+ ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 592 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHash = 3657377047, },
+ ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3889 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHash = 1860646468, },
+ ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 6676 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4234677275, },
+ ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 6675 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 89314980, },
+ ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5245 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2517031897, },
+ ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 6968 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2642525868, },
+ ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 904 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, },
+ ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 636 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 806698863, },
+ ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 735 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHash = 1866211373, },
+ ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 731 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1535051459, },
+ ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 769 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 3278399103, },
+ ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1579 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 209387074, },
+ ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 3936, 3937 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666908929, },
+ ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 3939, 3939.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1174243390, },
+ ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1839, 7100 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1239325414, },
+ ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2797, 7093 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2148696191, },
+ ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7423 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2676451350, },
+ ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7424 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1212083058, },
+ ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 2616 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3767939384, },
+ ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2615 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3941641418, },
+ ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2617 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1438488526, },
+ ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2618 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2373999301, },
+ ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 492 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2721815210, },
+ ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8797 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 1291925008, },
+ ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8798 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 3859865977, },
+ ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 171 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3274973940, },
+ ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 534 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHash = 3171958921, },
+ ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 599, 599.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHash = 1378815167, },
+ ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2812 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4224337800, },
+ ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4422 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, },
+ ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4422 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, },
+ ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9809 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
+ ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9809 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
+ ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9809 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
+ ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9809 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
+ ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9809 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, },
+ ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6627 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3959101898, },
+ ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6628 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3817220109, },
+ ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 6969 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 536957, },
+ ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 6626 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3814686091, },
+ ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8215 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3259396413, },
+ ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 6971 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 2687017988, },
+ ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6614 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3819451758, },
+ ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6615 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2500442851, },
+ ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6073 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2775776604, },
+ ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 6613 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2154349925, },
+ ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8194 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3716758077, },
+ ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6074 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 2675641469, },
+ ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6617 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3059700363, },
+ ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6618 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3395872960, },
+ ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5253 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1970606344, },
+ ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 6616 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1862926389, },
+ ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8181 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 950661692, },
+ ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5255 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 2494069187, },
+ ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6622 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1542765265, },
+ ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6623 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2189040439, },
+ ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 8725 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3294232483, },
+ ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 6620 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2126027382, },
+ ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9072 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 650630047, },
+ ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 8733 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3163114700, },
+ ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6610 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1284151528, },
+ ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6611 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1133703802, },
+ ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5158 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 739274558, },
+ ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 6609 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2572910724, },
+ ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4113 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 786460697, },
+ ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5163 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 3456816469, },
+ ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Historic", statOrder = { 12, 12.1, 9810 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { "default" }, weightVal = { 0 }, modTags = { "red_herring" }, tradeHash = 3179277870, },
+ ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9504 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2566390555, },
+ ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9125 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2697019412, },
+ ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5150 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 970844066, },
+ ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4213 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1724614884, },
+ ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 5792 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3103189267, },
+ ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 5828 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1910205563, },
+ ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 8535 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 1810368194, },
+ ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9063 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 730530528, },
+ ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9062 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4235333770, },
+ ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 8330 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3808469650, },
+ ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8320 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHash = 2830135449, },
+ ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 7404 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2042813020, },
+ ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7376 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3293275880, },
+ ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 8529 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2585926696, },
+ ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 9090 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 2803981661, },
+ ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7237 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 200113086, },
+ ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7235 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2418322751, },
+ ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 904 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1256719186, },
+ ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1581, 7072 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHash = 2109698899, },
+ ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1581, 7024 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 476646817, },
+ ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1581, 7045 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHash = 454308351, },
+ ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 1581, 7329 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3746833883, },
+ ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1581, 7122 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3668986230, },
+ ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1581, 7041 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1692679499, },
+ ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4384 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 396113830, },
+ ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4385 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1643324992, },
+ ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 9828 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 128585622, },
+ ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 80, 266 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3567278969, },
+ ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 913, 1389 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2084531689, },
+ ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7174 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 1819655989, },
+ ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4502 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1552907959, },
["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 4479 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, },
- ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7036 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3768948090, },
- ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 6999 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1109900829, },
- ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 434 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3784504781, },
- ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 8802, 8802.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1615324731, },
- ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 9345 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2023285759, },
- ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2537 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3833160777, },
- ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2540 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, },
- ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4172 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405089557, },
- ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5194 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, },
- ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5792 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, },
- ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 6957 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746994389, },
- ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7149, 7149.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 461663422, },
- ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9354 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3430847459, },
- ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
- ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5106 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3823990000, },
- ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5278 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 76982026, },
- ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 967 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
- ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 823 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
- ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
- ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5707 }, level = 1, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3891922348, },
- ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2825 }, level = 83, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
+ ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7202 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3768948090, },
+ ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7160 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1109900829, },
+ ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 425 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3784504781, },
+ ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9065, 9065.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1615324731, },
+ ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 9613 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2023285759, },
+ ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2501 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3833160777, },
+ ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2504 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, },
+ ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4140 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405089557, },
+ ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5227 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, },
+ ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5859 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, },
+ ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7098 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746994389, },
+ ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7313, 7313.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 461663422, },
+ ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9622 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 3430847459, },
+ ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 917 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
+ ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 917 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, },
+ ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5134 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3823990000, },
+ ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5313 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 76982026, },
+ ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 968 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, },
+ ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 819 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, },
+ ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 916 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, },
+ ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5771 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3891922348, },
+ ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2780 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, },
+ ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4000 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2646093132, },
+ ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, },
+ ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 999 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, },
+ ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(4-6)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4577 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 53386210, },
+ ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(4-6)% increased Spirit", statOrder = { 1352 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1416406066, },
+ ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(20-30)% increased Armour", statOrder = { 861 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (6-10)% increased Cooldown Recovery Rate", statOrder = { 9747 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 36954843, },
+ ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 9746 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404134612, },
+ ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8467 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, },
+ ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1483 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, },
+ ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 9473 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 806994543, },
+ ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 946 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, },
+ ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4519 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, },
+ ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, },
+ ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(8-14)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, },
+ ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5469 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1104825894, },
+ ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(15-25)% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, },
+ ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1076 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, },
+ ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 153777645, },
+ ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 959 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, },
+ ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 3995 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2991563371, },
+ ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(40-60)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 3994 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4043376133, },
+ ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 3996 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1679776108, },
+ ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(15-20) to Spirit while you have at least 200 Strength", statOrder = { 9292 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3044685077, },
+ ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "1% increased Cast Speed per 20 Spirit", statOrder = { 4921 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 34174842, },
+ ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 869 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, },
+ ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(20-30)% increased maximum Energy Shield", statOrder = { 865 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(6-12)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
+ ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7401 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1895238057, },
+ ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Cast Speed", statOrder = { 9745 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281990982, },
+ ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (2-3)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 8958 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2456226238, },
+ ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6236 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3625518318, },
+ ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1493 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, },
+ ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9145 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369495153, },
+ ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 5919 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4236566306, },
+ ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 9540 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, },
+ ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Chill you inflict", statOrder = { 5219 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, },
+ ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1078 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, },
+ ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (7-15)% increased Area of Effect", statOrder = { 9229 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1967040409, },
+ ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 3993 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3979226081, },
+ ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(10-20)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 3998 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 546201303, },
+ ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(20-30)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4005 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4255854327, },
+ ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(15-20) to Spirit while you have at least 200 Intelligence", statOrder = { 9291 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1282318918, },
+ ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4388 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 324579579, },
+ ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 867 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, },
+ ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 863 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 8825 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4081947835, },
+ ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5092 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3003542304, },
+ ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(20-30)% increased Life Regeneration rate while Surrounded", statOrder = { 6929 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3084372306, },
+ ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 9744 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3408222535, },
+ ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 9742 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3429986699, },
+ ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 8957 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503117295, },
+ ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6295 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605616594, },
+ ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1488 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, },
+ ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 6882 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3843204146, },
+ ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9095 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
+ ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1077 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, },
+ ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(7-15)% increased Area of Effect for Attacks", statOrder = { 4335 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, },
+ ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (5-10)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (8-16)% of Evasion Rating", statOrder = { 960 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, },
+ ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 3999 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1726353460, },
+ ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(10-20)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 3997 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3658708511, },
+ ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(20-30)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4116 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2760643568, },
+ ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(15-20) to Spirit while you have at least 200 Dexterity", statOrder = { 9290 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2694614739, },
+ ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 55 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4077843608, },
+ ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7165 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1458343515, },
+ ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7162 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087787187, },
+ ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7164 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1856590738, },
+ ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7163 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2733960806, },
+ ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7166 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2044810874, },
+ ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Items", statOrder = { 7241 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2081918629, },
+ ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion or Energy Shield", statOrder = { 5979 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, },
+ ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 5977 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, },
+ ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 5977 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, },
+ ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 5977 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, },
+ ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 5977 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, },
+ ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 5978 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 415464603, },
+ ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 616 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1726753705, },
+ ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 625 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2932359713, },
+ ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 734, 737, 747 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2832906403, },
+ ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 904 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, },
+ ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6361 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 33298888, },
+ ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3738 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1195705739, },
+ ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4264 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2451508632, },
+ ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6063 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1325331627, },
+ ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 9638 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2029147356, },
+ ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1062 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 668076381, },
+ ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7084 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2662365575, },
+ ["TheFlawedEdictUnique__1"] = { affix = "", "DNT Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7121 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2303993580, },
+ ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 48 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 586037801, },
}
\ No newline at end of file
diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua
index 6beaaa476a..ca2bf0b9c2 100644
--- a/src/Data/ModJewel.lua
+++ b/src/Data/ModJewel.lua
@@ -2,358 +2,358 @@
-- Item data (c) Grinding Gear Games
return {
- ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 624954515, },
- ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4155 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1772247089, },
- ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4156 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 1303248024, },
- ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4162 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3544800472, },
- ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1571 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 280731498, },
- ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 867 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
- ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4275 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, },
- ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4278 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2215233444, },
- ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
- ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
- ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1101 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
- ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
- ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2498 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHash = 315791320, },
- ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1178 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, },
- ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1263 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, },
- ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4498 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2174054121, },
+ ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 624954515, },
+ ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4119 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1772247089, },
+ ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4123 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 1303248024, },
+ ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4130 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3544800472, },
+ ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1554 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 280731498, },
+ ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 861 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, },
+ ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4259 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, },
+ ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4261 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2637470878, },
+ ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, },
+ ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, },
+ ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1089 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, },
+ ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, },
+ ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2462 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHash = 315791320, },
+ ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1166 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, },
+ ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1251 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, },
+ ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2174054121, },
["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4491 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, },
- ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4715 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1585769763, },
- ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4428 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 318953428, },
- ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1074 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 4147897060, },
- ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2855 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1852872083, },
- ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1285 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 169946467, },
- ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1198 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, },
- ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1268 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, },
- ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
- ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8581 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, },
- ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 881 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
- ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5146 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
- ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5511 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 627767961, },
- ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
- ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
- ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
- ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2644 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
- ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, },
- ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3850 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2118708619, },
- ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5327 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHash = 440490623, },
- ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
- ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
- ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, },
- ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3897 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 427684353, },
- ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 8749 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3192728503, },
- ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3901 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1135928777, },
- ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(15-25)% increased Area of Effect of Curses", statOrder = { 1893 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, },
- ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5425 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 1104825894, },
- ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1480 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 3824372849, },
- ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
- ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1307 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, },
- ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1190 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, },
- ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1266 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, },
- ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2384 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
- ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5445 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2301718443, },
- ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5550 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1829102168, },
- ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(10-20)% increased Daze Buildup", statOrder = { 5560 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1949833742, },
- ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5583 }, level = 1, group = "DebuffTimePassed", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1238227257, },
- ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6598 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, },
- ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
- ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5778 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1569101201, },
- ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5847 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, },
- ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 871 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
- ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
+ ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4745 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1585769763, },
+ ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4422 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 318953428, },
+ ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1060 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 4147897060, },
+ ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2810 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1852872083, },
+ ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1273 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 169946467, },
+ ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1186 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, },
+ ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1256 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, },
+ ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, },
+ ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8825 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, },
+ ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 875 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, },
+ ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5177 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, },
+ ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5562 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 627767961, },
+ ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, },
+ ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, },
+ ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, },
+ ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2603 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, },
+ ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, },
+ ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3791 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2118708619, },
+ ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5366 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHash = 440490623, },
+ ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, },
+ ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, },
+ ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, },
+ ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3838 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 427684353, },
+ ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 8999 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3192728503, },
+ ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3842 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1135928777, },
+ ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(15-25)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, },
+ ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5469 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 1104825894, },
+ ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1463 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 3824372849, },
+ ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, },
+ ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1295 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, },
+ ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1178 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, },
+ ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1254 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, },
+ ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, },
+ ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5492 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2301718443, },
+ ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5603 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1829102168, },
+ ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4498 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3146310524, },
+ ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1238227257, },
+ ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6717 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, },
+ ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5844 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1569101201, },
+ ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5919 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, },
+ ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 865 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, },
+ ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, },
["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, },
- ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 869 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
- ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5552 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, },
- ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
- ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2643 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
- ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3891 }, level = 1, group = "FlailCriticalChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1484710594, },
- ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3886 }, level = 1, group = "FlailDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1731242173, },
- ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
- ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3741323227, },
- ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 5857 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3174700878, },
- ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5064 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3003542304, },
+ ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 863 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, },
+ ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5606 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, },
+ ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, },
+ ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2602 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, },
+ ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3832 }, level = 1, group = "FlailCriticalChance", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1484710594, },
+ ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3827 }, level = 1, group = "FlailDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1731242173, },
+ ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, },
+ ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3741323227, },
+ ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 5931 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3174700878, },
+ ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5092 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3003542304, },
["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 473429811, },
- ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2915 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, },
- ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5516 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 21071013, },
- ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
- ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Magnitude of Ignite you inflict", statOrder = { 6596 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3791899485, },
- ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, },
- ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1688 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 565784293, },
- ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4545 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
- ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
- ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6734 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4009879772, },
- ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1839 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2112395885, },
- ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
- ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
- ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 964 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, },
- ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 859 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
- ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2645 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
- ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1194 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, },
- ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7183 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 872504239, },
- ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
- ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7212 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3590792340, },
- ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1841 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2839066308, },
- ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1457 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
- ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
- ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Cast Speed", statOrder = { 1889 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHash = 4189061307, },
- ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 7977 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2594634307, },
- ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2290 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 712554801, },
- ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 952 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
- ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 951 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
- ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 953 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
- ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 8640 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1181501418, },
- ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
- ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8126 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, },
- ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-10)% increased Area of Effect", statOrder = { 2683 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, },
- ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8131 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, },
- ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2586 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, },
- ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8149 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHash = 491450213, },
- ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8151 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHash = 1854213750, },
- ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1663 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
- ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
- ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1974 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHash = 3119612865, },
- ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2585 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
- ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8197 }, level = 1, group = "MinionReviveSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { }, tradeHash = 2639966148, },
- ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
- ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8411 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2957407601, },
- ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8412 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3787460122, },
- ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1130 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
+ ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2868 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, },
+ ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5567 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 21071013, },
+ ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, },
+ ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3791899485, },
+ ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, },
+ ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1665 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 565784293, },
+ ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2480498143, },
+ ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, },
+ ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6865 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4009879772, },
+ ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1816 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2112395885, },
+ ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2023107756, },
+ ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, },
+ ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, },
+ ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 854 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, },
+ ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2604 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, },
+ ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1182 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, },
+ ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7348 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 872504239, },
+ ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, },
+ ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7380 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3590792340, },
+ ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1818 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2839066308, },
+ ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1440 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, },
+ ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, },
+ ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1868 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHash = 1714971114, },
+ ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8158 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2594634307, },
+ ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2258 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 712554801, },
+ ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 8886 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1181501418, },
+ ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, },
+ ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8321 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, },
+ ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2638 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, },
+ ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8328 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, },
+ ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2548 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, },
+ ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8350 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHash = 491450213, },
+ ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8352 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHash = 1854213750, },
+ ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1642 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, },
+ ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, },
+ ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1942 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHash = 3119612865, },
+ ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
+ ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "minion" }, tradeHash = 2639966148, },
+ ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, },
+ ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8639 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2957407601, },
+ ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8640 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3787460122, },
+ ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1118 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, },
["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, },
- ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6540 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3473929743, },
- ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 795138349, },
- ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8536 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, },
- ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2820 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
- ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1682 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
- ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
- ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1183 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, },
- ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 8628 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1697447343, },
- ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1264 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, },
- ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 8636 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1200678966, },
- ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6240 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2709367754, },
- ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6242 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3292710273, },
- ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 8825 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHash = 145497481, },
+ ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6657 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3473929743, },
+ ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 795138349, },
+ ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8780 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, },
+ ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2775 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, },
+ ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1659 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1839076647, },
+ ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, },
+ ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1171 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, },
+ ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 8874 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1697447343, },
+ ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1252 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, },
+ ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 8882 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1200678966, },
+ ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6339 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2709367754, },
+ ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6341 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3292710273, },
+ ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9088 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHash = 145497481, },
["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 293638271, },
- ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1554 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
- ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 8831 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
- ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4548 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, },
- ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1271 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1165163804, },
- ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1336 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2456523742, },
- ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1212 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2696027455, },
- ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
- ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
- ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 979 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239367161, },
- ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2914 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, },
- ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9099 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 416040624, },
- ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4161 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHash = 3398301358, },
- ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9101 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1405298142, },
- ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4598 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, },
- ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1204 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, },
- ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1269 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
- ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9211 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, },
- ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1097 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
- ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, },
- ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2272 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3374165039, },
- ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
- ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1615 }, level = 1, group = "TrapThrowSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 118398748, },
- ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9273 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, },
- ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3195 }, level = 1, group = "UnarmedDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1870736574, },
- ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9424 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3037553757, },
- ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2967 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4159248054, },
- ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9427 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1594812856, },
- ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2920 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, },
- ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9436 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, },
- ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Effect of Withered", statOrder = { 9454 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHash = 2545584555, },
- ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9328 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 662579422, },
- ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8584 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3596695232, },
- ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8046 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3028809864, },
- ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8433 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1569159338, },
- ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8439 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 3401186585, },
- ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8440 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1911237468, },
- ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9403 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3749502527, },
- ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5252 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 234296660, },
- ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5254 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1805182458, },
- ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6336 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1697951953, },
- ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5099 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHash = 300723956, },
- ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Valour gained", statOrder = { 4469 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1050359418, },
+ ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1537 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, },
+ ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9095 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, },
+ ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, },
+ ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1259 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1165163804, },
+ ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1324 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2456523742, },
+ ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1200 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2696027455, },
+ ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, },
+ ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, },
+ ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239367161, },
+ ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, },
+ ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9364 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 416040624, },
+ ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4129 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHash = 3398301358, },
+ ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9366 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1405298142, },
+ ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4626 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, },
+ ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1192 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, },
+ ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1257 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, },
+ ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9476 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, },
+ ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1085 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, },
+ ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, },
+ ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2240 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3374165039, },
+ ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage" }, tradeHash = 2941585404, },
+ ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1594 }, level = 1, group = "TrapThrowSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "speed" }, tradeHash = 118398748, },
+ ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9540 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, },
+ ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3142 }, level = 1, group = "UnarmedDamage", weightKey = { "default" }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHash = 1870736574, },
+ ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9702 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3037553757, },
+ ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2918 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4159248054, },
+ ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9705 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1594812856, },
+ ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2873 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, },
+ ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9716 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, },
+ ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9734 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHash = 3973629633, },
+ ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9595 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "default" }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 662579422, },
+ ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8828 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3596695232, },
+ ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8239 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3028809864, },
+ ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8661 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1569159338, },
+ ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8670 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 3401186585, },
+ ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8671 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1911237468, },
+ ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9681 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "intjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3749502527, },
+ ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5287 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 234296660, },
+ ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5289 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1805182458, },
+ ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6444 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1697951953, },
+ ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5127 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHash = 300723956, },
+ ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6382 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1869147066, },
["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4464 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 429143663, },
["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4466 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2720982137, },
["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 101878827, },
- ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7009 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, },
- ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7009 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, },
- ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7032 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, },
- ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7032 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, },
- ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7028 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4234573345, },
- ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1276 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 624954515, },
- ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4155 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 1772247089, },
- ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4156 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 1303248024, },
- ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4162 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3544800472, },
- ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1571 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 280731498, },
- ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 867 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, nodeType = 1, tradeHash = 2866361420, },
- ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4275 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1776411443, },
- ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4278 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2215233444, },
- ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 932 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 2194114101, },
- ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 936 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 3714003708, },
- ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1101 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2843214518, },
- ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 939 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 681332047, },
- ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2498 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHash = 315791320, },
- ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1178 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3314142259, },
- ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1263 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3550868361, },
- ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4498 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2174054121, },
+ ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7175 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, },
+ ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7175 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, },
+ ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7198 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, },
+ ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7198 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, },
+ ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7194 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4234573345, },
+ ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1264 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 624954515, },
+ ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4119 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 1772247089, },
+ ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4123 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 1303248024, },
+ ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4130 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3544800472, },
+ ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1554 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 280731498, },
+ ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 861 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, nodeType = 1, tradeHash = 2866361420, },
+ ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4259 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1776411443, },
+ ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4261 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2637470878, },
+ ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 930 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 2194114101, },
+ ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 3714003708, },
+ ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1089 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2843214518, },
+ ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 681332047, },
+ ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2462 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHash = 315791320, },
+ ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1166 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3314142259, },
+ ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1251 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3550868361, },
+ ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2174054121, },
["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4491 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 1459321413, },
- ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4715 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1585769763, },
- ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4428 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 318953428, },
- ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1074 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 4147897060, },
- ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2855 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1852872083, },
- ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1285 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 169946467, },
- ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1198 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 4188894176, },
- ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1268 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3759735052, },
- ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 940 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, nodeType = 2, tradeHash = 2891184298, },
- ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 8581 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4081947835, },
- ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 881 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1389754388, },
- ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5146 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3585532255, },
- ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 5511 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 627767961, },
- ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 860 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHash = 736967255, },
- ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1553 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHash = 3485067555, },
- ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 858 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 3291658075, },
- ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2644 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 3417711605, },
- ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4504 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1004011302, },
- ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3850 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2118708619, },
- ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5327 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHash = 440490623, },
- ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 931 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHash = 587431675, },
- ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 935 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHash = 3556824919, },
- ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 937 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHash = 274716455, },
- ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3897 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 427684353, },
- ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 8749 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3192728503, },
- ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3901 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1135928777, },
- ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(6-12)% increased Area of Effect of Curses", statOrder = { 1893 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 153777645, },
- ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1480 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, nodeType = 1, tradeHash = 3824372849, },
- ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2288 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 2353576063, },
- ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1307 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 4018186542, },
- ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1190 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3586984690, },
- ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1266 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2538566497, },
- ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2384 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHash = 458438597, },
- ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5445 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2301718443, },
- ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5550 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 1829102168, },
- ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(2-3)% increased Daze Buildup", statOrder = { 5560 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1949833742, },
- ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 5583 }, level = 1, group = "DebuffTimePassed", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1238227257, },
- ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6598 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, nodeType = 2, tradeHash = 1062710370, },
- ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1668 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, nodeType = 1, tradeHash = 3141070085, },
- ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 5778 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1569101201, },
- ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 5847 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4236566306, },
- ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 871 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 2482852589, },
- ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1379 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 1782086450, },
+ ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4745 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1585769763, },
+ ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4422 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 318953428, },
+ ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1060 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 4147897060, },
+ ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2810 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1852872083, },
+ ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1273 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 169946467, },
+ ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1186 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 4188894176, },
+ ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1256 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3759735052, },
+ ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, nodeType = 2, tradeHash = 2891184298, },
+ ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 8825 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4081947835, },
+ ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 875 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1389754388, },
+ ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5177 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3585532255, },
+ ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 5562 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 627767961, },
+ ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 855 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHash = 736967255, },
+ ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1536 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHash = 3485067555, },
+ ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 853 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 3291658075, },
+ ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2603 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 3417711605, },
+ ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1004011302, },
+ ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3791 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2118708619, },
+ ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5366 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHash = 440490623, },
+ ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHash = 587431675, },
+ ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHash = 3556824919, },
+ ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHash = 274716455, },
+ ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3838 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 427684353, },
+ ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 8999 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3192728503, },
+ ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3842 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1135928777, },
+ ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(6-12)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 153777645, },
+ ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1463 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "curse" }, nodeType = 1, tradeHash = 3824372849, },
+ ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 2353576063, },
+ ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1295 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 4018186542, },
+ ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1178 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3586984690, },
+ ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1254 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2538566497, },
+ ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHash = 458438597, },
+ ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5492 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2301718443, },
+ ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5603 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 1829102168, },
+ ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4498 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3146310524, },
+ ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1238227257, },
+ ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6717 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, nodeType = 2, tradeHash = 1062710370, },
+ ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1647 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, nodeType = 1, tradeHash = 3141070085, },
+ ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 5844 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1569101201, },
+ ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 5919 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4236566306, },
+ ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 865 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 2482852589, },
+ ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 963 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 1782086450, },
["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 962 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 2339757871, },
- ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 869 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, nodeType = 1, tradeHash = 2106365538, },
- ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 5552 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 538241406, },
- ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 857 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 3962278098, },
- ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2643 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 2653955271, },
- ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3891 }, level = 1, group = "FlailCriticalChance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1484710594, },
- ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3886 }, level = 1, group = "FlailDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1731242173, },
- ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6050 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHash = 1836676211, },
- ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 882 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHash = 3741323227, },
- ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 5857 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3174700878, },
- ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5064 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3003542304, },
+ ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 863 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, nodeType = 1, tradeHash = 2106365538, },
+ ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 5606 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 538241406, },
+ ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 852 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 3962278098, },
+ ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2602 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 2653955271, },
+ ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3832 }, level = 1, group = "FlailCriticalChance", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1484710594, },
+ ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3827 }, level = 1, group = "FlailDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1731242173, },
+ ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHash = 1836676211, },
+ ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHash = 3741323227, },
+ ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 5931 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3174700878, },
+ ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5092 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3003542304, },
["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 986 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 473429811, },
- ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2915 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 3780644166, },
- ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 5516 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 21071013, },
- ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased chance to Ignite", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2968503605, },
- ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Magnitude of Ignite you inflict", statOrder = { 6596 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3791899485, },
- ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1586 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3377888098, },
- ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1688 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 565784293, },
- ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4545 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2480498143, },
- ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1738 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHash = 821241191, },
- ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 6734 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4009879772, },
- ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1839 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2112395885, },
- ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1451 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2023107756, },
- ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 965 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 1444556985, },
- ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 964 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 44972811, },
- ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 859 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 2231156303, },
- ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2645 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 818778753, },
- ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1194 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1181419800, },
- ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7183 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHash = 872504239, },
- ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1739 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHash = 2222186378, },
- ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7212 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3590792340, },
- ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1841 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 2839066308, },
- ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1457 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHash = 1604736568, },
- ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 971 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 789117908, },
- ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Cast Speed", statOrder = { 1889 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, nodeType = 1, tradeHash = 4189061307, },
- ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 7977 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2594634307, },
- ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2290 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 712554801, },
- ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 8640 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1181501418, },
- ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1132 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1002362373, },
- ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8126 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHash = 1718147982, },
- ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-7)% increased Area of Effect", statOrder = { 2683 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 3811191316, },
- ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8131 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHash = 3091578504, },
- ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2586 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, nodeType = 1, tradeHash = 3837707023, },
- ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8149 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHash = 491450213, },
- ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8151 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, nodeType = 2, tradeHash = 1854213750, },
- ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1663 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 1589917703, },
- ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 961 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 770672621, },
- ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 1974 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHash = 3119612865, },
- ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2585 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, nodeType = 1, tradeHash = 1423639565, },
- ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 8197 }, level = 1, group = "MinionReviveSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2639966148, },
- ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 829 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 2250533757, },
- ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 8411 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2957407601, },
- ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 8412 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3787460122, },
- ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1130 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHash = 1310194496, },
+ ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2868 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 3780644166, },
+ ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 5567 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 21071013, },
+ ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 984 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2968503605, },
+ ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1005 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3791899485, },
+ ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3377888098, },
+ ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1665 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 565784293, },
+ ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2480498143, },
+ ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1715 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHash = 821241191, },
+ ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 6865 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4009879772, },
+ ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1816 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2112395885, },
+ ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2023107756, },
+ ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 1444556985, },
+ ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 44972811, },
+ ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 854 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 2231156303, },
+ ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2604 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 818778753, },
+ ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1182 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1181419800, },
+ ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7348 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHash = 872504239, },
+ ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1716 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHash = 2222186378, },
+ ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7380 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3590792340, },
+ ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1818 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 2839066308, },
+ ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1440 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHash = 1604736568, },
+ ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 789117908, },
+ ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1868 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, nodeType = 1, tradeHash = 1714971114, },
+ ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8158 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2594634307, },
+ ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2258 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 712554801, },
+ ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 8886 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1181501418, },
+ ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1120 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1002362373, },
+ ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8321 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHash = 1718147982, },
+ ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2638 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 3811191316, },
+ ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8328 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHash = 3091578504, },
+ ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2548 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, nodeType = 1, tradeHash = 3837707023, },
+ ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8350 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHash = 491450213, },
+ ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8352 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, nodeType = 2, tradeHash = 1854213750, },
+ ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1642 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 1589917703, },
+ ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 958 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 770672621, },
+ ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 1942 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHash = 3119612865, },
+ ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, nodeType = 1, tradeHash = 1423639565, },
+ ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 2639966148, },
+ ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 2250533757, },
+ ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 8639 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2957407601, },
+ ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 8640 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3787460122, },
+ ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1118 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHash = 1310194496, },
["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2321178454, },
- ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 6540 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3473929743, },
- ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2823 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 795138349, },
- ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 8536 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 2487305362, },
- ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2820 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHash = 2011656677, },
- ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1682 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1839076647, },
- ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 3759663284, },
- ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1183 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 4045894391, },
- ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 8628 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1697447343, },
- ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1264 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3283482523, },
- ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 8636 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1200678966, },
- ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6240 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2709367754, },
- ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6242 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3292710273, },
- ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Defences from Equipped Shield", statOrder = { 8825 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHash = 145497481, },
+ ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 6657 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3473929743, },
+ ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 795138349, },
+ ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 8780 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 2487305362, },
+ ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2775 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHash = 2011656677, },
+ ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1659 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1839076647, },
+ ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 872 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 3759663284, },
+ ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1171 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 4045894391, },
+ ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 8874 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1697447343, },
+ ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1252 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3283482523, },
+ ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 8882 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1200678966, },
+ ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6339 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2709367754, },
+ ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6341 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3292710273, },
+ ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Defences from Equipped Shield", statOrder = { 9088 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHash = 145497481, },
["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 988 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 293638271, },
- ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1554 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 3668351662, },
- ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 8831 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHash = 2527686725, },
- ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4548 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 924253255, },
- ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1271 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1165163804, },
- ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1336 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 2456523742, },
- ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1212 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2696027455, },
- ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 933 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, nodeType = 2, tradeHash = 737908626, },
- ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 855 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 2974417149, },
- ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 979 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 239367161, },
- ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2914 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 680068163, },
- ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 9099 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 416040624, },
- ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4161 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHash = 3398301358, },
- ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9101 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1405298142, },
- ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4598 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 3166958180, },
- ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1204 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 83050999, },
- ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1269 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3293699237, },
- ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 9211 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1315743832, },
- ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1097 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 3851254963, },
- ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1473 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 686254215, },
- ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2272 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 3374165039, },
- ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 856 }, level = 1, group = "TrapDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2941585404, },
- ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1615 }, level = 1, group = "TrapThrowSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 118398748, },
- ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 9273 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 3067892458, },
- ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3195 }, level = 1, group = "UnarmedDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1870736574, },
- ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 9424 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3037553757, },
- ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 2967 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4159248054, },
- ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 9427 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1594812856, },
- ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2920 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1316278494, },
- ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 9436 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHash = 3233599707, },
- ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Effect of Withered", statOrder = { 9454 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHash = 2545584555, },
- ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 9328 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 662579422, },
- ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8584 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3596695232, },
- ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8046 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3028809864, },
- ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 8433 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1569159338, },
- ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 8439 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 3401186585, },
- ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 8440 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1911237468, },
- ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 9403 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3749502527, },
- ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5252 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 234296660, },
- ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5254 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 1805182458, },
- ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6336 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1697951953, },
- ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5099 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, nodeType = 1, tradeHash = 300723956, },
- ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Valour gained", statOrder = { 4469 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1050359418, },
+ ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1537 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 3668351662, },
+ ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9095 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHash = 2527686725, },
+ ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 924253255, },
+ ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1259 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1165163804, },
+ ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1324 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 2456523742, },
+ ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1200 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2696027455, },
+ ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, nodeType = 2, tradeHash = 737908626, },
+ ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 850 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 2974417149, },
+ ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 239367161, },
+ ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 680068163, },
+ ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 9364 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 416040624, },
+ ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4129 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHash = 3398301358, },
+ ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9366 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1405298142, },
+ ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4626 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 3166958180, },
+ ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1192 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 83050999, },
+ ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1257 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3293699237, },
+ ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 9476 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1315743832, },
+ ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1085 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 3851254963, },
+ ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1456 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 686254215, },
+ ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2240 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 3374165039, },
+ ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 851 }, level = 1, group = "TrapDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2941585404, },
+ ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1594 }, level = 1, group = "TrapThrowSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 118398748, },
+ ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 9540 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 3067892458, },
+ ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3142 }, level = 1, group = "UnarmedDamage", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1870736574, },
+ ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 9702 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3037553757, },
+ ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 2918 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4159248054, },
+ ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 9705 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1594812856, },
+ ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2873 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1316278494, },
+ ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 9716 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHash = 3233599707, },
+ ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 9734 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHash = 3973629633, },
+ ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 9595 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 662579422, },
+ ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8828 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3596695232, },
+ ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8239 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3028809864, },
+ ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 8661 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1569159338, },
+ ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 8670 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 3401186585, },
+ ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 8671 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1911237468, },
+ ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 9681 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "int_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3749502527, },
+ ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5287 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 234296660, },
+ ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5289 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 1805182458, },
+ ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6444 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1697951953, },
+ ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5127 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, nodeType = 1, tradeHash = 300723956, },
+ ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6382 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1869147066, },
["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4464 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 429143663, },
["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4466 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2720982137, },
["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 998 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default" }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 101878827, },
diff --git a/src/Data/ModRunes.lua b/src/Data/ModRunes.lua
index 26443ebedb..1f99bfec1d 100644
--- a/src/Data/ModRunes.lua
+++ b/src/Data/ModRunes.lua
@@ -3,23 +3,23 @@
return {
["Hayoxi's Soul Core of Heatproofing"] = {
- ["body armour"] = {
+ ["helmet"] = {
type = "Rune",
- "20% of Armour also applies to Cold Damage taken from Hits",
+ "+30% of Armour also applies to Cold Damage",
statOrder = { 4481 },
},
},
["Zalatl's Soul Core of Insulation"] = {
- ["body armour"] = {
+ ["boots"] = {
type = "Rune",
- "20% of Armour also applies to Lightning Damage taken from Hits",
+ "+30% of Armour also applies to Lightning Damage",
statOrder = { 4483 },
},
},
["Topotante's Soul Core of Dampening"] = {
- ["body armour"] = {
+ ["gloves"] = {
type = "Rune",
- "20% of Armour also applies to Fire Damage taken from Hits",
+ "+30% of Armour also applies to Fire Damage",
statOrder = { 4482 },
},
},
@@ -27,7 +27,7 @@ return {
["body armour"] = {
type = "Rune",
"30% faster start of Energy Shield Recharge",
- statOrder = { 1379 },
+ statOrder = { 963 },
},
},
["Quipolatl's Soul Core of Flow"] = {
@@ -35,14 +35,14 @@ return {
type = "Rune",
"8% increased Skill Effect Duration",
"8% increased Cooldown Recovery Rate",
- statOrder = { 1586, 4504 },
+ statOrder = { 1569, 4507 },
},
},
["Tzamoto's Soul Core of Ferocity"] = {
["helmet"] = {
type = "Rune",
"+4 to Maximum Rage",
- statOrder = { 8640 },
+ statOrder = { 8886 },
},
},
["Uromoti's Soul Core of Attenuation"] = {
@@ -50,167 +50,167 @@ return {
type = "Rune",
"15% increased Curse Duration",
"15% increased Poison Duration",
- statOrder = { 1480, 2820 },
+ statOrder = { 1463, 2775 },
},
},
["Opiloti's Soul Core of Assault"] = {
["weapon"] = {
type = "Rune",
"50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge",
- statOrder = { 5069 },
+ statOrder = { 5097 },
},
["caster"] = {
type = "Rune",
"50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge",
- statOrder = { 5069 },
+ statOrder = { 5097 },
},
},
["Guatelitzi's Soul Core of Endurance"] = {
["weapon"] = {
type = "Rune",
"50% chance when you gain an Endurance Charge to gain an additional Endurance Charge",
- statOrder = { 5068 },
+ statOrder = { 5096 },
},
["caster"] = {
type = "Rune",
"50% chance when you gain an Endurance Charge to gain an additional Endurance Charge",
- statOrder = { 5068 },
+ statOrder = { 5096 },
},
},
["Xopec's Soul Core of Power"] = {
["weapon"] = {
type = "Rune",
"50% chance when you gain a Power Charge to gain an additional Power Charge",
- statOrder = { 5070 },
+ statOrder = { 5098 },
},
["caster"] = {
type = "Rune",
"50% chance when you gain a Power Charge to gain an additional Power Charge",
- statOrder = { 5070 },
+ statOrder = { 5098 },
},
},
["Estazunti's Soul Core of Convalescence"] = {
["boots"] = {
type = "Rune",
"10% increased speed of Recoup Effects",
- statOrder = { 8689 },
+ statOrder = { 8937 },
},
},
["Tacati's Soul Core of Affliction"] = {
["helmet"] = {
type = "Rune",
"Enemies you Curse have -4% to Chaos Resistance",
- statOrder = { 3663 },
+ statOrder = { 3606 },
},
},
["Cholotl's Soul Core of War"] = {
["bow"] = {
type = "Rune",
"20% increased Projectile Speed",
- statOrder = { 878 },
+ statOrder = { 872 },
},
},
["Citaqualotl's Soul Core of Foulness"] = {
["weapon"] = {
type = "Rune",
- "Adds 13 to 19 Chaos damage",
- statOrder = { 1235 },
+ "Adds 19 to 29 Chaos damage",
+ statOrder = { 1223 },
},
},
["Xipocado's Soul Core of Dominion"] = {
["caster"] = {
type = "Rune",
"Minions deal 40% increased Damage with Command Skills",
- statOrder = { 8147 },
+ statOrder = { 8347 },
},
["sceptre"] = {
type = "Rune",
"Minions deal 40% increased Damage with Command Skills",
- statOrder = { 8147 },
+ statOrder = { 8347 },
},
},
["Soul Core of Tacati"] = {
["weapon"] = {
type = "Rune",
"15% chance to Poison on Hit with this weapon",
- statOrder = { 7059 },
+ statOrder = { 7224 },
},
["armour"] = {
type = "Rune",
"+11% to Chaos Resistance",
- statOrder = { 959 },
+ statOrder = { 957 },
},
},
["Soul Core of Opiloti"] = {
["weapon"] = {
type = "Rune",
"15% chance to cause Bleeding on Hit",
- statOrder = { 2178 },
+ statOrder = { 2147 },
},
- ["armour"] = {
+ ["helmet"] = {
type = "Rune",
- "10% increased Charm Charges gained",
- statOrder = { 5146 },
+ "20% increased Charm Charges gained",
+ statOrder = { 5177 },
},
},
["Soul Core of Jiquani"] = {
["weapon"] = {
type = "Rune",
"Recover 2% of maximum Life on Kill",
- statOrder = { 1451 },
+ statOrder = { 1434 },
},
- ["armour"] = {
+ ["body armour"] = {
type = "Rune",
- "2% increased maximum Life",
- statOrder = { 873 },
+ "3% increased maximum Life",
+ statOrder = { 867 },
},
},
["Soul Core of Zalatl"] = {
["weapon"] = {
type = "Rune",
"Recover 2% of maximum Mana on Kill",
- statOrder = { 1453 },
+ statOrder = { 1436 },
},
- ["armour"] = {
+ ["helmet"] = {
type = "Rune",
- "2% increased maximum Mana",
- statOrder = { 875 },
+ "3% increased maximum Mana",
+ statOrder = { 869 },
},
},
["Soul Core of Citaqualotl"] = {
["weapon"] = {
type = "Rune",
"30% increased Elemental Damage with Attacks",
- statOrder = { 861 },
+ statOrder = { 856 },
},
["armour"] = {
type = "Rune",
"+5% to all Elemental Resistances",
- statOrder = { 955 },
+ statOrder = { 953 },
},
},
["Soul Core of Puhuarte"] = {
["weapon"] = {
type = "Rune",
- "30% increased chance to Ignite",
+ "30% increased Flammability Magnitude",
statOrder = { 984 },
},
- ["armour"] = {
+ ["gloves"] = {
type = "Rune",
"+1% to Maximum Fire Resistance",
- statOrder = { 951 },
+ statOrder = { 949 },
},
},
["Soul Core of Tzamoto"] = {
["weapon"] = {
type = "Rune",
- "20% increased Freeze Buildup",
+ "30% increased Freeze Buildup",
statOrder = { 986 },
},
- ["armour"] = {
+ ["helmet"] = {
type = "Rune",
"+1% to Maximum Cold Resistance",
- statOrder = { 952 },
+ statOrder = { 950 },
},
},
["Soul Core of Xopec"] = {
@@ -219,208 +219,208 @@ return {
"30% increased chance to Shock",
statOrder = { 988 },
},
- ["armour"] = {
+ ["boots"] = {
type = "Rune",
"+1% to Maximum Lightning Resistance",
- statOrder = { 953 },
+ statOrder = { 951 },
},
},
["Soul Core of Azcapa"] = {
["weapon"] = {
type = "Rune",
"+15 to Spirit",
- statOrder = { 877 },
+ statOrder = { 871 },
},
- ["armour"] = {
+ ["gloves"] = {
type = "Rune",
- "5% increased Quantity of Gold Dropped by Slain Enemies",
- statOrder = { 6281 },
+ "10% increased Quantity of Gold Dropped by Slain Enemies",
+ statOrder = { 6384 },
},
},
["Soul Core of Topotante"] = {
["weapon"] = {
type = "Rune",
"Attacks with this Weapon Penetrate 15% Elemental Resistances",
- statOrder = { 3373 },
+ statOrder = { 3319 },
},
- ["armour"] = {
+ ["boots"] = {
type = "Rune",
- "15% increased Elemental Ailment Threshold",
- statOrder = { 4162 },
+ "25% increased Elemental Ailment Threshold",
+ statOrder = { 4130 },
},
},
["Soul Core of Quipolatl"] = {
["weapon"] = {
type = "Rune",
"5% increased Attack Speed",
- statOrder = { 919 },
+ statOrder = { 916 },
},
- ["armour"] = {
+ ["boots"] = {
type = "Rune",
- "10% reduced Slowing Potency of Debuffs on You",
- statOrder = { 4548 },
+ "15% reduced Slowing Potency of Debuffs on You",
+ statOrder = { 4572 },
},
},
["Soul Core of Ticaba"] = {
["weapon"] = {
type = "Rune",
- "+12% to Critical Damage Bonus",
- statOrder = { 918 },
+ "+5% to Critical Damage Bonus",
+ statOrder = { 915 },
},
- ["armour"] = {
+ ["body armour"] = {
type = "Rune",
- "Hits against you have 10% reduced Critical Damage Bonus",
- statOrder = { 948 },
+ "Hits against you have 20% reduced Critical Damage Bonus",
+ statOrder = { 946 },
},
},
["Soul Core of Atmohua"] = {
["weapon"] = {
type = "Rune",
"Convert 20% of Requirements to Strength",
- statOrder = { 7063 },
+ statOrder = { 7228 },
},
["armour"] = {
type = "Rune",
"Convert 20% of Requirements to Strength",
- statOrder = { 7063 },
+ statOrder = { 7228 },
},
},
["Soul Core of Cholotl"] = {
["weapon"] = {
type = "Rune",
"Convert 20% of Requirements to Dexterity",
- statOrder = { 7061 },
+ statOrder = { 7226 },
},
["armour"] = {
type = "Rune",
"Convert 20% of Requirements to Dexterity",
- statOrder = { 7061 },
+ statOrder = { 7226 },
},
},
["Soul Core of Zantipi"] = {
["weapon"] = {
type = "Rune",
"Convert 20% of Requirements to Intelligence",
- statOrder = { 7062 },
+ statOrder = { 7227 },
},
["armour"] = {
type = "Rune",
"Convert 20% of Requirements to Intelligence",
- statOrder = { 7062 },
+ statOrder = { 7227 },
},
},
["Desert Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 7 to 11 Fire Damage",
- statOrder = { 825 },
+ statOrder = { 821 },
},
["armour"] = {
type = "Rune",
"+12% to Fire Resistance",
- statOrder = { 956 },
+ statOrder = { 954 },
},
["caster"] = {
type = "Rune",
- "Gain 10% of Damage as Extra Fire Damage",
- statOrder = { 849 },
+ "Gain 8% of Damage as Extra Fire Damage",
+ statOrder = { 844 },
},
},
["Glacial Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 6 to 10 Cold Damage",
- statOrder = { 826 },
+ statOrder = { 822 },
},
["armour"] = {
type = "Rune",
"+12% to Cold Resistance",
- statOrder = { 957 },
+ statOrder = { 955 },
},
["caster"] = {
type = "Rune",
- "Gain 10% of Damage as Extra Cold Damage",
- statOrder = { 851 },
+ "Gain 8% of Damage as Extra Cold Damage",
+ statOrder = { 846 },
},
},
["Storm Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 1 to 20 Lightning Damage",
- statOrder = { 827 },
+ statOrder = { 823 },
},
["armour"] = {
type = "Rune",
"+12% to Lightning Resistance",
- statOrder = { 958 },
+ statOrder = { 956 },
},
["caster"] = {
type = "Rune",
- "Gain 10% of Damage as Extra Lightning Damage",
- statOrder = { 853 },
+ "Gain 8% of Damage as Extra Lightning Damage",
+ statOrder = { 848 },
},
},
["Iron Rune"] = {
["weapon"] = {
type = "Rune",
- "20% increased Physical Damage",
- statOrder = { 823 },
+ "16% increased Physical Damage",
+ statOrder = { 819 },
},
["armour"] = {
type = "Rune",
- "20% increased Armour, Evasion and Energy Shield",
- statOrder = { 1377 },
+ "16% increased Armour, Evasion and Energy Shield",
+ statOrder = { 1361 },
},
["caster"] = {
type = "Rune",
"25% increased Spell Damage",
- statOrder = { 855 },
+ statOrder = { 850 },
},
},
["Body Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 2.5% of Physical Damage as Life",
- statOrder = { 967 },
+ statOrder = { 968 },
},
["armour"] = {
type = "Rune",
"+30 to maximum Life",
- statOrder = { 872 },
+ statOrder = { 866 },
},
["caster"] = {
type = "Rune",
"+30 to maximum Energy Shield",
- statOrder = { 870 },
+ statOrder = { 864 },
},
},
["Mind Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 2% of Physical Damage as Mana",
- statOrder = { 973 },
+ statOrder = { 974 },
},
["armour"] = {
type = "Rune",
"+25 to maximum Mana",
- statOrder = { 874 },
+ statOrder = { 868 },
},
["caster"] = {
type = "Rune",
- "+30 to maximum Mana",
- statOrder = { 874 },
+ "+40 to maximum Mana",
+ statOrder = { 868 },
},
},
["Rebirth Rune"] = {
["weapon"] = {
type = "Rune",
"Gain 20 Life per Enemy Killed",
- statOrder = { 970 },
+ statOrder = { 971 },
},
["armour"] = {
type = "Rune",
"Regenerate 0.3% of maximum Life per second",
- statOrder = { 1635 },
+ statOrder = { 1614 },
},
["caster"] = {
type = "Rune",
@@ -432,165 +432,165 @@ return {
["weapon"] = {
type = "Rune",
"Gain 16 Mana per Enemy Killed",
- statOrder = { 975 },
+ statOrder = { 976 },
},
["armour"] = {
type = "Rune",
"15% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
["caster"] = {
type = "Rune",
"20% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
},
["Stone Rune"] = {
["weapon"] = {
type = "Rune",
"Causes 25% increased Stun Buildup",
- statOrder = { 980 },
+ statOrder = { 981 },
},
["armour"] = {
type = "Rune",
- "+40 to Stun Threshold",
+ "+60 to Stun Threshold",
statOrder = { 990 },
},
["caster"] = {
type = "Rune",
"Gain additional Stun Threshold equal to 12% of maximum Energy Shield",
- statOrder = { 9099 },
+ statOrder = { 9364 },
},
},
["Vision Rune"] = {
["weapon"] = {
type = "Rune",
"+80 to Accuracy Rating",
- statOrder = { 828 },
+ statOrder = { 824 },
},
["armour"] = {
type = "Rune",
"10% increased Life and Mana Recovery from Flasks",
- statOrder = { 6052 },
+ statOrder = { 6145 },
},
["caster"] = {
type = "Rune",
"20% increased Critical Hit Chance for Spells",
- statOrder = { 933 },
+ statOrder = { 931 },
},
},
["Lesser Desert Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 4 to 6 Fire Damage",
- statOrder = { 825 },
+ statOrder = { 821 },
},
["armour"] = {
type = "Rune",
"+10% to Fire Resistance",
- statOrder = { 956 },
+ statOrder = { 954 },
},
["caster"] = {
type = "Rune",
- "Gain 8% of Damage as Extra Fire Damage",
- statOrder = { 849 },
+ "Gain 6% of Damage as Extra Fire Damage",
+ statOrder = { 844 },
},
},
["Lesser Glacial Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 3 to 5 Cold Damage",
- statOrder = { 826 },
+ statOrder = { 822 },
},
["armour"] = {
type = "Rune",
"+10% to Cold Resistance",
- statOrder = { 957 },
+ statOrder = { 955 },
},
["caster"] = {
type = "Rune",
- "Gain 8% of Damage as Extra Cold Damage",
- statOrder = { 851 },
+ "Gain 6% of Damage as Extra Cold Damage",
+ statOrder = { 846 },
},
},
["Lesser Storm Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 1 to 10 Lightning Damage",
- statOrder = { 827 },
+ statOrder = { 823 },
},
["armour"] = {
type = "Rune",
"+10% to Lightning Resistance",
- statOrder = { 958 },
+ statOrder = { 956 },
},
["caster"] = {
type = "Rune",
- "Gain 8% of Damage as Extra Lightning Damage",
- statOrder = { 853 },
+ "Gain 6% of Damage as Extra Lightning Damage",
+ statOrder = { 848 },
},
},
["Lesser Iron Rune"] = {
["weapon"] = {
type = "Rune",
- "15% increased Physical Damage",
- statOrder = { 823 },
+ "14% increased Physical Damage",
+ statOrder = { 819 },
},
["armour"] = {
type = "Rune",
- "15% increased Armour, Evasion and Energy Shield",
- statOrder = { 1377 },
+ "14% increased Armour, Evasion and Energy Shield",
+ statOrder = { 1361 },
},
["caster"] = {
type = "Rune",
"20% increased Spell Damage",
- statOrder = { 855 },
+ statOrder = { 850 },
},
},
["Lesser Body Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 2% of Physical Damage as Life",
- statOrder = { 967 },
+ statOrder = { 968 },
},
["armour"] = {
type = "Rune",
"+20 to maximum Life",
- statOrder = { 872 },
+ statOrder = { 866 },
},
["caster"] = {
type = "Rune",
"+25 to maximum Energy Shield",
- statOrder = { 870 },
+ statOrder = { 864 },
},
},
["Lesser Mind Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 1.5% of Physical Damage as Mana",
- statOrder = { 973 },
+ statOrder = { 974 },
},
["armour"] = {
type = "Rune",
"+15 to maximum Mana",
- statOrder = { 874 },
+ statOrder = { 868 },
},
["caster"] = {
type = "Rune",
- "+25 to maximum Mana",
- statOrder = { 874 },
+ "+30 to maximum Mana",
+ statOrder = { 868 },
},
},
["Lesser Rebirth Rune"] = {
["weapon"] = {
type = "Rune",
"Gain 10 Life per Enemy Killed",
- statOrder = { 970 },
+ statOrder = { 971 },
},
["armour"] = {
type = "Rune",
"Regenerate 0.25% of maximum Life per second",
- statOrder = { 1635 },
+ statOrder = { 1614 },
},
["caster"] = {
type = "Rune",
@@ -602,165 +602,165 @@ return {
["weapon"] = {
type = "Rune",
"Gain 8 Mana per Enemy Killed",
- statOrder = { 975 },
+ statOrder = { 976 },
},
["armour"] = {
type = "Rune",
"12% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
["caster"] = {
type = "Rune",
"16% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
},
["Lesser Stone Rune"] = {
["weapon"] = {
type = "Rune",
"Causes 20% increased Stun Buildup",
- statOrder = { 980 },
+ statOrder = { 981 },
},
["armour"] = {
type = "Rune",
- "+30 to Stun Threshold",
+ "+40 to Stun Threshold",
statOrder = { 990 },
},
["caster"] = {
type = "Rune",
"Gain additional Stun Threshold equal to 10% of maximum Energy Shield",
- statOrder = { 9099 },
+ statOrder = { 9364 },
},
},
["Lesser Vision Rune"] = {
["weapon"] = {
type = "Rune",
"+50 to Accuracy Rating",
- statOrder = { 828 },
+ statOrder = { 824 },
},
["armour"] = {
type = "Rune",
"8% increased Life and Mana Recovery from Flasks",
- statOrder = { 6052 },
+ statOrder = { 6145 },
},
["caster"] = {
type = "Rune",
"16% increased Critical Hit Chance for Spells",
- statOrder = { 933 },
+ statOrder = { 931 },
},
},
["Greater Desert Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 13 to 16 Fire Damage",
- statOrder = { 825 },
+ statOrder = { 821 },
},
["armour"] = {
type = "Rune",
"+14% to Fire Resistance",
- statOrder = { 956 },
+ statOrder = { 954 },
},
["caster"] = {
type = "Rune",
- "Gain 12% of Damage as Extra Fire Damage",
- statOrder = { 849 },
+ "Gain 10% of Damage as Extra Fire Damage",
+ statOrder = { 844 },
},
},
["Greater Glacial Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 9 to 15 Cold Damage",
- statOrder = { 826 },
+ statOrder = { 822 },
},
["armour"] = {
type = "Rune",
"+14% to Cold Resistance",
- statOrder = { 957 },
+ statOrder = { 955 },
},
["caster"] = {
type = "Rune",
- "Gain 12% of Damage as Extra Cold Damage",
- statOrder = { 851 },
+ "Gain 10% of Damage as Extra Cold Damage",
+ statOrder = { 846 },
},
},
["Greater Storm Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 1 to 30 Lightning Damage",
- statOrder = { 827 },
+ statOrder = { 823 },
},
["armour"] = {
type = "Rune",
"+14% to Lightning Resistance",
- statOrder = { 958 },
+ statOrder = { 956 },
},
["caster"] = {
type = "Rune",
- "Gain 12% of Damage as Extra Lightning Damage",
- statOrder = { 853 },
+ "Gain 10% of Damage as Extra Lightning Damage",
+ statOrder = { 848 },
},
},
["Greater Iron Rune"] = {
["weapon"] = {
type = "Rune",
- "25% increased Physical Damage",
- statOrder = { 823 },
+ "18% increased Physical Damage",
+ statOrder = { 819 },
},
["armour"] = {
type = "Rune",
- "25% increased Armour, Evasion and Energy Shield",
- statOrder = { 1377 },
+ "18% increased Armour, Evasion and Energy Shield",
+ statOrder = { 1361 },
},
["caster"] = {
type = "Rune",
"30% increased Spell Damage",
- statOrder = { 855 },
+ statOrder = { 850 },
},
},
["Greater Body Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 3% of Physical Damage as Life",
- statOrder = { 967 },
+ statOrder = { 968 },
},
["armour"] = {
type = "Rune",
"+40 to maximum Life",
- statOrder = { 872 },
+ statOrder = { 866 },
},
["caster"] = {
type = "Rune",
"+35 to maximum Energy Shield",
- statOrder = { 870 },
+ statOrder = { 864 },
},
},
["Greater Mind Rune"] = {
["weapon"] = {
type = "Rune",
"Leeches 2.5% of Physical Damage as Mana",
- statOrder = { 973 },
+ statOrder = { 974 },
},
["armour"] = {
type = "Rune",
"+35 to maximum Mana",
- statOrder = { 874 },
+ statOrder = { 868 },
},
["caster"] = {
type = "Rune",
- "+35 to maximum Mana",
- statOrder = { 874 },
+ "+50 to maximum Mana",
+ statOrder = { 868 },
},
},
["Greater Rebirth Rune"] = {
["weapon"] = {
type = "Rune",
"Gain 30 Life per Enemy Killed",
- statOrder = { 970 },
+ statOrder = { 971 },
},
["armour"] = {
type = "Rune",
"Regenerate 0.35% of maximum Life per second",
- statOrder = { 1635 },
+ statOrder = { 1614 },
},
["caster"] = {
type = "Rune",
@@ -772,406 +772,361 @@ return {
["weapon"] = {
type = "Rune",
"Gain 24 Mana per Enemy Killed",
- statOrder = { 975 },
+ statOrder = { 976 },
},
["armour"] = {
type = "Rune",
"18% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
["caster"] = {
type = "Rune",
"24% increased Mana Regeneration Rate",
- statOrder = { 971 },
+ statOrder = { 972 },
},
},
["Greater Stone Rune"] = {
["weapon"] = {
type = "Rune",
"Causes 30% increased Stun Buildup",
- statOrder = { 980 },
+ statOrder = { 981 },
},
["armour"] = {
type = "Rune",
- "+50 to Stun Threshold",
+ "+80 to Stun Threshold",
statOrder = { 990 },
},
["caster"] = {
type = "Rune",
"Gain additional Stun Threshold equal to 14% of maximum Energy Shield",
- statOrder = { 9099 },
+ statOrder = { 9364 },
},
},
["Greater Vision Rune"] = {
["weapon"] = {
type = "Rune",
"+110 to Accuracy Rating",
- statOrder = { 828 },
+ statOrder = { 824 },
},
["armour"] = {
type = "Rune",
"12% increased Life and Mana Recovery from Flasks",
- statOrder = { 6052 },
+ statOrder = { 6145 },
},
["caster"] = {
type = "Rune",
"24% increased Critical Hit Chance for Spells",
- statOrder = { 933 },
+ statOrder = { 931 },
},
},
["Lesser Robust Rune"] = {
["weapon"] = {
type = "Rune",
"+6 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["armour"] = {
type = "Rune",
"+6 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["caster"] = {
type = "Rune",
"+6 to Strength",
- statOrder = { 945 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+6 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
},
["Robust Rune"] = {
["weapon"] = {
type = "Rune",
"+8 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["armour"] = {
type = "Rune",
"+8 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["caster"] = {
type = "Rune",
"+8 to Strength",
- statOrder = { 945 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+8 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
},
["Greater Robust Rune"] = {
["weapon"] = {
type = "Rune",
"+10 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["armour"] = {
type = "Rune",
"+10 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
["caster"] = {
type = "Rune",
"+10 to Strength",
- statOrder = { 945 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+10 to Strength",
- statOrder = { 945 },
+ statOrder = { 943 },
},
},
["Lesser Adept Rune"] = {
["weapon"] = {
type = "Rune",
"+6 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["armour"] = {
type = "Rune",
"+6 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["caster"] = {
type = "Rune",
"+6 to Dexterity",
- statOrder = { 946 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+6 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
},
["Adept Rune"] = {
["weapon"] = {
type = "Rune",
"+8 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["armour"] = {
type = "Rune",
"+8 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["caster"] = {
type = "Rune",
"+8 to Dexterity",
- statOrder = { 946 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+8 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
},
["Greater Adept Rune"] = {
["weapon"] = {
type = "Rune",
"+10 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["armour"] = {
type = "Rune",
"+10 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
["caster"] = {
type = "Rune",
"+10 to Dexterity",
- statOrder = { 946 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+10 to Dexterity",
- statOrder = { 946 },
+ statOrder = { 944 },
},
},
["Lesser Resolve Rune"] = {
["weapon"] = {
type = "Rune",
"+6 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["armour"] = {
type = "Rune",
"+6 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["caster"] = {
type = "Rune",
"+6 to Intelligence",
- statOrder = { 947 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+6 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
},
["Resolve Rune"] = {
["weapon"] = {
type = "Rune",
"+8 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["armour"] = {
type = "Rune",
"+8 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["caster"] = {
type = "Rune",
"+8 to Intelligence",
- statOrder = { 947 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+8 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
},
["Greater Resolve Rune"] = {
["weapon"] = {
type = "Rune",
"+10 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["armour"] = {
type = "Rune",
"+10 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
["caster"] = {
type = "Rune",
"+10 to Intelligence",
- statOrder = { 947 },
- },
- ["sceptre"] = {
- type = "Rune",
- "+10 to Intelligence",
- statOrder = { 947 },
+ statOrder = { 945 },
},
},
["Lesser Tempered Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 3 to 4 Physical Damage",
- statOrder = { 824 },
+ statOrder = { 820 },
},
["armour"] = {
type = "Rune",
"6 to 9 Physical Thorns damage",
- statOrder = { 9217 },
+ statOrder = { 9483 },
},
},
["Tempered Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 6 to 9 Physical Damage",
- statOrder = { 824 },
+ statOrder = { 820 },
},
["armour"] = {
type = "Rune",
"14 to 21 Physical Thorns damage",
- statOrder = { 9217 },
+ statOrder = { 9483 },
},
},
["Greater Tempered Rune"] = {
["weapon"] = {
type = "Rune",
"Adds 9 to 12 Physical Damage",
- statOrder = { 824 },
+ statOrder = { 820 },
},
["armour"] = {
type = "Rune",
"31 to 52 Physical Thorns damage",
- statOrder = { 9217 },
+ statOrder = { 9483 },
},
},
["Greater Rune of Leadership"] = {
["weapon"] = {
type = "Rune",
"Minions gain 10% of their Physical Damage as Extra Lightning Damage",
- statOrder = { 8188 },
+ statOrder = { 8391 },
},
["armour"] = {
type = "Rune",
"Minions take 10% of Physical Damage as Lightning Damage",
- statOrder = { 8189 },
+ statOrder = { 8392 },
},
},
["Greater Rune of Tithing"] = {
["weapon"] = {
type = "Rune",
"Meta Skills gain 10% increased Energy",
- statOrder = { 5847 },
+ statOrder = { 5919 },
},
["armour"] = {
type = "Rune",
"1 to 100 Lightning Thorns damage",
- statOrder = { 9216 },
+ statOrder = { 9482 },
},
},
["Greater Rune of Alacrity"] = {
["weapon"] = {
type = "Rune",
"8% increased Skill Speed",
- statOrder = { 830 },
+ statOrder = { 826 },
},
["armour"] = {
type = "Rune",
"Debuffs on you expire 8% faster",
- statOrder = { 5583 },
+ statOrder = { 5638 },
},
},
["Greater Rune of Nobility"] = {
["weapon"] = {
type = "Rune",
"Attacks with this Weapon have 10% chance to inflict Lightning Exposure",
- statOrder = { 6998 },
+ statOrder = { 7159 },
},
["armour"] = {
type = "Rune",
"10% reduced effect of Shock on you",
- statOrder = { 8842 },
+ statOrder = { 9107 },
},
},
["Hedgewitch Assandra's Rune of Wisdom"] = {
["caster"] = {
type = "Rune",
"+1 to Level of all Spell Skills",
- statOrder = { 922 },
+ statOrder = { 919 },
},
},
["Saqawal's Rune of the Sky"] = {
["weapon"] = {
type = "Rune",
- "Gain 6% of Damage as Extra Damage of all Elements",
- statOrder = { 8334 },
+ "Gain 5% of Damage as Extra Damage of all Elements",
+ statOrder = { 8552 },
},
["caster"] = {
type = "Rune",
- "Gain 6% of Damage as Extra Damage of all Elements",
- statOrder = { 8334 },
+ "Gain 5% of Damage as Extra Damage of all Elements",
+ statOrder = { 8552 },
},
},
["Fenumus' Rune of Agony"] = {
["weapon"] = {
type = "Rune",
"Gain 13% of Damage as Extra Chaos Damage",
- statOrder = { 1620 },
+ statOrder = { 1599 },
},
["caster"] = {
type = "Rune",
"Gain 13% of Damage as Extra Chaos Damage",
- statOrder = { 1620 },
+ statOrder = { 1599 },
},
},
["Farrul's Rune of Grace"] = {
["boots"] = {
type = "Rune",
"6% reduced Movement Speed Penalty from using Skills while moving",
- statOrder = { 8258 },
+ statOrder = { 8467 },
},
},
["Farrul's Rune of the Chase"] = {
["boots"] = {
type = "Rune",
"5% increased Movement Speed",
- statOrder = { 829 },
+ statOrder = { 825 },
},
},
["Craiceann's Rune of Warding"] = {
["body armour"] = {
type = "Rune",
"40% reduced effect of Curses on you",
- statOrder = { 1855 },
+ statOrder = { 1832 },
},
},
["Saqawal's Rune of Memory"] = {
["helmet"] = {
type = "Rune",
"2% increased Experience gain",
- statOrder = { 1411 },
+ statOrder = { 1394 },
},
},
["Saqawal's Rune of Erosion"] = {
["helmet"] = {
type = "Rune",
"20% increased Exposure Effect",
- statOrder = { 5943 },
+ statOrder = { 6032 },
},
},
["Farrul's Rune of the Hunt"] = {
["weapon"] = {
type = "Rune",
"50% increased Attack Damage against Rare or Unique Enemies",
- statOrder = { 4362 },
+ statOrder = { 4352 },
},
},
["Craiceann's Rune of Recovery"] = {
@@ -1185,84 +1140,84 @@ return {
["gloves"] = {
type = "Rune",
"15% increased Magnitude of Damaging Ailments you inflict",
- statOrder = { 5551 },
+ statOrder = { 5605 },
},
},
["Thane Grannell's Rune of Mastery"] = {
["gloves"] = {
type = "Rune",
"20% increased Magnitude of Non-Damaging Ailments you inflict",
- statOrder = { 8322 },
+ statOrder = { 8532 },
},
},
["Fenumus' Rune of Spinning"] = {
["gloves"] = {
type = "Rune",
"8% increased Cast Speed",
- statOrder = { 940 },
+ statOrder = { 938 },
},
},
["Countess Seske's Rune of Archery"] = {
["bow"] = {
type = "Rune",
"Bow Attacks fire an additional Arrow",
- statOrder = { 943 },
+ statOrder = { 941 },
},
},
["Thane Girt's Rune of Wildness"] = {
["caster"] = {
type = "Rune",
"25% chance for Spell Skills to fire 2 additional Projectiles",
- statOrder = { 8997 },
+ statOrder = { 9267 },
},
},
["Fenumus' Rune of Draining"] = {
["gloves"] = {
type = "Rune",
- "20% increased Effect of Withered",
- statOrder = { 9454 },
+ "20% increased Withered Magnitude",
+ statOrder = { 9734 },
},
},
["Thane Myrk's Rune of Summer"] = {
["weapon"] = {
type = "Rune",
"Adds 23 to 34 Fire Damage",
- statOrder = { 825 },
+ statOrder = { 821 },
},
},
["Lady Hestra's Rune of Winter"] = {
["weapon"] = {
type = "Rune",
"Adds 19 to 28 Cold Damage",
- statOrder = { 826 },
+ statOrder = { 822 },
},
},
["Thane Leld's Rune of Spring"] = {
["weapon"] = {
type = "Rune",
"Adds 1 to 60 Lightning Damage",
- statOrder = { 827 },
+ statOrder = { 823 },
},
},
["The Greatwolf's Rune of Claws"] = {
["gloves"] = {
type = "Rune",
"Adds 5 to 12 Physical Damage to Attacks",
- statOrder = { 845 },
+ statOrder = { 840 },
},
},
["The Greatwolf's Rune of Willpower"] = {
["body armour"] = {
type = "Rune",
"10% of Damage is taken from Mana before Life",
- statOrder = { 2384 },
+ statOrder = { 2352 },
},
},
["Talisman of Sirrius"] = {
["gloves"] = {
type = "Rune",
"8% increased Attack Speed",
- statOrder = { 939 },
+ statOrder = { 937 },
},
},
["Talisman of Thruldana"] = {
@@ -1270,119 +1225,119 @@ return {
type = "Rune",
"25% reduced Poison Duration",
"Targets can be affected by +1 of your Poisons at the same time",
- statOrder = { 2820, 8385 },
+ statOrder = { 2775, 8612 },
},
},
["Talisman of Grold"] = {
["gloves"] = {
type = "Rune",
- "Skills which Empower an Attack have 15% chance to not count that Attack",
- statOrder = { 4951 },
+ "15% increased total Power counted by Warcries",
+ statOrder = { 9708 },
},
},
["Talisman of Eeshta"] = {
["helmet"] = {
type = "Rune",
- "6% reduced Cost of Skills",
- statOrder = { 1572 },
+ "10% increased Cost Efficiency",
+ statOrder = { 4568 },
},
},
["Talisman of Egrin"] = {
["helmet"] = {
type = "Rune",
"Enemies you Curse take 5% increased Damage",
- statOrder = { 3370 },
+ statOrder = { 3316 },
},
},
["Talisman of Maxarius"] = {
["body armour"] = {
type = "Rune",
"+1 Charm Slot",
- statOrder = { 8377 },
+ statOrder = { 8602 },
},
},
["Talisman of Ralakesh"] = {
["helmet"] = {
type = "Rune",
- "Minions have 5% reduced Reservation",
- statOrder = { 8194 },
+ "6% increased Reservation Efficiency of Minion Skills",
+ statOrder = { 8397 },
},
},
["Serpent Talisman"] = {
["gloves"] = {
type = "Rune",
"5% increased Curse Magnitudes",
- statOrder = { 2288 },
+ statOrder = { 2256 },
},
},
["Primate Talisman"] = {
["helmet"] = {
type = "Rune",
"Minions have 12% increased maximum Life",
- statOrder = { 961 },
+ statOrder = { 958 },
},
},
["Owl Talisman"] = {
- ["boots"] = {
+ ["focus"] = {
type = "Rune",
- "5% increased Cooldown Recovery Rate",
- statOrder = { 4504 },
+ "10% increased Cooldown Recovery Rate",
+ statOrder = { 4507 },
},
},
["Cat Talisman"] = {
- ["boots"] = {
+ ["gloves"] = {
type = "Rune",
- "Hits against you have 15% reduced Critical Damage Bonus",
- statOrder = { 948 },
+ "15% increased Accuracy Rating",
+ statOrder = { 1264 },
},
},
["Wolf Talisman"] = {
["gloves"] = {
type = "Rune",
"10% increased Magnitude of Bleeding you inflict",
- statOrder = { 4598 },
+ statOrder = { 4626 },
},
},
["Stag Talisman"] = {
["helmet"] = {
type = "Rune",
- "8% increased Exposure Effect",
- statOrder = { 5943 },
+ "50% increased Thorns Critical Hit Chance",
+ statOrder = { 9472 },
},
},
["Boar Talisman"] = {
["gloves"] = {
type = "Rune",
"Gain 1 Rage on Melee Hit",
- statOrder = { 6240 },
+ statOrder = { 6339 },
},
},
["Bear Talisman"] = {
["helmet"] = {
type = "Rune",
"8% increased Area of Effect",
- statOrder = { 1571 },
+ statOrder = { 1554 },
},
},
["Ox Talisman"] = {
- ["boots"] = {
+ ["shield"] = {
type = "Rune",
- "20% increased Presence Area of Effect",
- statOrder = { 998 },
+ "10% increased Block chance",
+ statOrder = { 828 },
},
},
["Rabbit Talisman"] = {
["body armour"] = {
type = "Rune",
"8% increased Rarity of Items found",
- statOrder = { 916 },
+ statOrder = { 913 },
},
},
["Fox Talisman"] = {
["body armour"] = {
type = "Rune",
"+2% to Quality of all Skills",
- statOrder = { 4181 },
+ statOrder = { 4150 },
},
},
}
\ No newline at end of file
diff --git a/src/Data/ModScalability.lua b/src/Data/ModScalability.lua
index 78a0604218..b48f5c25ae 100644
--- a/src/Data/ModScalability.lua
+++ b/src/Data/ModScalability.lua
@@ -2,6 +2,7 @@
-- Item data (c) Grinding Gear Games
return {
+ [" All Elemental Damage from Hits Contributes to Flammability and Ignite Magnitudes"] = { },
["#"] = { { isScalable = false, formats = { "tree_expansion_jewel_passive" } } },
["# Accuracy Rating per 2 Intelligence"] = { { isScalable = true } },
["# Added Passive Skills are Jewel Sockets"] = { { isScalable = true } },
@@ -15,7 +16,9 @@ return {
["# Chaos Damage taken"] = { { isScalable = true } },
["# Chaos Damage taken per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["# Charm Slot"] = { { isScalable = true } },
+ ["# Charm Slot if you have at least 100 Tribute"] = { { isScalable = true } },
["# Charm Slots"] = { { isScalable = true } },
+ ["# Charm Slots if you have at least 100 Tribute"] = { { isScalable = true } },
["# Cold Damage taken from Hits"] = { { isScalable = true } },
["# Crucible slot"] = { { isScalable = true } },
["# Crucible slots"] = { { isScalable = true } },
@@ -84,9 +87,11 @@ return {
["# metre to Dodge Roll distance"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# metre to Dodge Roll distance if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# metre to Dodge Roll distance if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
+ ["# metre to Dodge Roll distance while Surrounded"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# metres to Dodge Roll distance"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# metres to Dodge Roll distance if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# metres to Dodge Roll distance if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
+ ["# metres to Dodge Roll distance while Surrounded"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["# reduced Level Requirement"] = { { isScalable = true } },
["# second to Flameblast and Incinerate Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["# second to Summon Skeleton Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
@@ -166,12 +171,14 @@ return {
["# to # Cold Thorns damage"] = { { isScalable = true }, { isScalable = true } },
["# to # Fire Damage per Endurance Charge"] = { { isScalable = true }, { isScalable = true } },
["# to # Fire Thorns damage"] = { { isScalable = true }, { isScalable = true } },
+ ["# to # Fire Thorns damage per 100 maximum Life"] = { { isScalable = true }, { isScalable = true } },
["# to # Lightning Damage per Power Charge"] = { { isScalable = true }, { isScalable = true } },
["# to # Lightning Thorns damage"] = { { isScalable = true }, { isScalable = true } },
["# to # Physical Thorns damage"] = { { isScalable = true }, { isScalable = true } },
["# to # added Fire Damage against Burning Enemies"] = { { isScalable = true }, { isScalable = true } },
["# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower"] = { { isScalable = true }, { isScalable = true } },
["# to Accuracy Rating"] = { { isScalable = true } },
+ ["# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet"] = { { isScalable = true } },
["# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius"] = { { isScalable = true } },
["# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"] = { { isScalable = true } },
["# to Accuracy Rating per Frenzy Charge"] = { { isScalable = true } },
@@ -190,7 +197,6 @@ return {
["# to Accuracy Rating with Swords"] = { { isScalable = true } },
["# to Accuracy Rating with Wands"] = { { isScalable = true } },
["# to Accuracy against Bleeding Enemies"] = { { isScalable = true } },
- ["# to Adaptation Rating"] = { { isScalable = true } },
["# to Agility Level for Heists"] = { { isScalable = true } },
["# to Ailment Threshold"] = { { isScalable = true } },
["# to Ailment Threshold per Dexterity"] = { { isScalable = true } },
@@ -199,7 +205,8 @@ return {
["# to Armour and Evasion Rating while Fortified"] = { { isScalable = true } },
["# to Armour during Soul Gain Prevention"] = { { isScalable = true } },
["# to Armour if you've Hit an Enemy Recently"] = { { isScalable = true } },
- ["# to Armour per 1 Energy Shield on Equipped Helmet"] = { { isScalable = true } },
+ ["# to Armour per 1 Item Energy Shield on Equipped Helmet"] = { { isScalable = true } },
+ ["# to Armour per 1 Spirit"] = { { isScalable = true } },
["# to Armour per 5 Evasion Rating on Equipped Shield"] = { { isScalable = true } },
["# to Armour per Endurance Charge"] = { { isScalable = true } },
["# to Armour per Level"] = { { isScalable = true } },
@@ -211,18 +218,20 @@ return {
["# to Brute Force Level for Heists"] = { { isScalable = true } },
["# to Counter-Thaumaturgy Level for Heists"] = { { isScalable = true } },
["# to Deception Level for Heists"] = { { isScalable = true } },
+ ["# to Deflection Rating"] = { { isScalable = true } },
["# to Demolition Level for Heists"] = { { isScalable = true } },
["# to Dexterity"] = { { isScalable = true } },
["# to Dexterity and Intelligence"] = { { isScalable = true } },
+ ["# to Dexterity per 25 Tribute"] = { { isScalable = true } },
["# to Dexterity per Allocated Mastery Passive Skill"] = { { isScalable = true } },
- ["# to Energy Shield per 8 Evasion on Equipped Boots"] = { { isScalable = true } },
+ ["# to Energy Shield per 8 Item Evasion Rating on Equipped Boots"] = { { isScalable = true } },
["# to Engineering Level for Heists"] = { { isScalable = true } },
["# to Evasion Rating"] = { { isScalable = true } },
["# to Evasion Rating and Energy Shield"] = { { isScalable = true } },
["# to Evasion Rating if Hit an Enemy Recently"] = { { isScalable = true } },
["# to Evasion Rating per 1 Armour on Equipped Gloves"] = { { isScalable = true } },
- ["# to Evasion Rating per 1 Energy Shield on Equipped Helmet"] = { { isScalable = true } },
- ["# to Evasion Rating per 5 Energy Shield on Equipped Shield"] = { { isScalable = true } },
+ ["# to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"] = { { isScalable = true } },
+ ["# to Evasion Rating per 5 Item Energy Shield on Equipped Shield"] = { { isScalable = true } },
["# to Evasion Rating while in Sand Stance"] = { { isScalable = true } },
["# to Evasion Rating while on Full Life"] = { { isScalable = true } },
["# to Evasion Rating while on Low Life"] = { { isScalable = true } },
@@ -231,12 +240,11 @@ return {
["# to Global Evasion Rating while moving"] = { { isScalable = true } },
["# to Heavy Stun Threshold"] = { { isScalable = true } },
["# to Intelligence"] = { { isScalable = true } },
+ ["# to Intelligence per 25 Tribute"] = { { isScalable = true } },
["# to Intelligence per Allocated Mastery Passive Skill"] = { { isScalable = true } },
- ["# to Level of Conductivity Skills"] = { { isScalable = true } },
["# to Level of Despair Skills"] = { { isScalable = true } },
+ ["# to Level of Elemental Weakness Skills"] = { { isScalable = true } },
["# to Level of Enfeeble Skills"] = { { isScalable = true } },
- ["# to Level of Flammability Skills"] = { { isScalable = true } },
- ["# to Level of Hypothermia Skills"] = { { isScalable = true } },
["# to Level of Skills"] = { { isScalable = true } },
["# to Level of Socketed AoE Gems"] = { { isScalable = true } },
["# to Level of Socketed Aura Gems"] = { { isScalable = true } },
@@ -275,6 +283,7 @@ return {
["# to Level of Temporal Chains Skills"] = { { isScalable = true } },
["# to Level of Vulnerability Skills"] = { { isScalable = true } },
["# to Level of all # Skills"] = { { isScalable = true }, { isScalable = true, formats = { "specific_skill" } } },
+ ["# to Level of all Attack Skills"] = { { isScalable = true } },
["# to Level of all Bow Skill Gems"] = { { isScalable = true } },
["# to Level of all Chaos Skills"] = { { isScalable = true } },
["# to Level of all Chaos Spell Skills"] = { { isScalable = true } },
@@ -316,13 +325,15 @@ return {
["# to Maximum Charges. -1 to this value when used"] = { { isScalable = true } },
["# to Maximum Darkness per Level"] = { { isScalable = true } },
["# to Maximum Endurance Charges"] = { { isScalable = true } },
+ ["# to Maximum Endurance Charges if you have at least 100 Tribute"] = { { isScalable = true } },
["# to Maximum Endurance Charges while affected by Determination"] = { { isScalable = true } },
["# to Maximum Endurance, Frenzy and Power Charges"] = { { isScalable = true } },
- ["# to Maximum Energy Shield per 5 Armour on Equipped Shield"] = { { isScalable = true } },
+ ["# to Maximum Energy Shield per 5 Item Armour on Equipped Shield"] = { { isScalable = true } },
["# to Maximum Energy Shield per Blue Socket"] = { { isScalable = true } },
["# to Maximum Fanatic Charges"] = { { isScalable = true } },
["# to Maximum Frenzy Charges"] = { { isScalable = true } },
["# to Maximum Frenzy Charges and Maximum Power Charges"] = { { isScalable = true } },
+ ["# to Maximum Frenzy Charges if you have at least 100 Tribute"] = { { isScalable = true } },
["# to Maximum Frenzy Charges while affected by Grace"] = { { isScalable = true } },
["# to Maximum Life per 10 Dexterity"] = { { isScalable = true } },
["# to Maximum Life per 10 Intelligence"] = { { isScalable = true } },
@@ -333,8 +344,10 @@ return {
["# to Maximum Mana per Green Socket"] = { { isScalable = true } },
["# to Maximum Power Charges"] = { { isScalable = true } },
["# to Maximum Power Charges and Maximum Endurance Charges"] = { { isScalable = true } },
+ ["# to Maximum Power Charges if you have at least 100 Tribute"] = { { isScalable = true } },
["# to Maximum Power Charges while affected by Discipline"] = { { isScalable = true } },
["# to Maximum Rage"] = { { isScalable = true } },
+ ["# to Maximum Rage per 50 Tribute"] = { { isScalable = true } },
["# to Maximum Rage while wielding a Sword"] = { { isScalable = true } },
["# to Maximum Rage while wielding an Axe"] = { { isScalable = true } },
["# to Maximum Spirit Charges per Abyss Jewel affecting you"] = { { isScalable = true } },
@@ -376,11 +389,17 @@ return {
["# to Spectre maximum Life"] = { { isScalable = true } },
["# to Spirit"] = { { isScalable = true } },
["# to Spirit per Socket filled"] = { { isScalable = true } },
+ ["# to Spirit while you have at least 200 Dexterity"] = { { isScalable = true } },
+ ["# to Spirit while you have at least 200 Intelligence"] = { { isScalable = true } },
+ ["# to Spirit while you have at least 200 Strength"] = { { isScalable = true } },
["# to Strength"] = { { isScalable = true } },
["# to Strength and Dexterity"] = { { isScalable = true } },
["# to Strength and Intelligence"] = { { isScalable = true } },
+ ["# to Strength per 25 Tribute"] = { { isScalable = true } },
["# to Strength per Allocated Mastery Passive Skill"] = { { isScalable = true } },
+ ["# to Strength, Dexterity or Intelligence"] = { { isScalable = true } },
["# to Stun Threshold"] = { { isScalable = true } },
+ ["# to Stun Threshold per Dexterity"] = { { isScalable = true } },
["# to Stun Threshold per Socket filled"] = { { isScalable = true } },
["# to Stun Threshold per Strength"] = { { isScalable = true } },
["# to Total Life Cost of Skills"] = { { isScalable = true } },
@@ -395,18 +414,16 @@ return {
["# to all Attributes per Level"] = { { isScalable = true, formats = { "negate" } } },
["# to all Attributes per Socket filled"] = { { isScalable = true } },
["# to maximum Adaptations"] = { { isScalable = true } },
- ["# to maximum Chaos Infusions"] = { { isScalable = true } },
["# to maximum Cold Infusions"] = { { isScalable = true } },
["# to maximum Divine Charges"] = { { isScalable = true } },
["# to maximum Energy Shield"] = { { isScalable = true } },
["# to maximum Energy Shield per 100 Reserved Life"] = { { isScalable = true } },
- ["# to maximum Energy Shield per 6 Evasion Rating on Equipped Body Armour"] = { { isScalable = true } },
+ ["# to maximum Energy Shield per 6 Item Evasion Rating on Equipped Body Armour"] = { { isScalable = true } },
["# to maximum Fire Infusions"] = { { isScalable = true } },
["# to maximum Fortification"] = { { isScalable = true } },
["# to maximum Fortification while Focused"] = { { isScalable = true, formats = { "divide_by_five" } } },
["# to maximum Fortification while affected by Glorious Madness"] = { { isScalable = true, formats = { "divide_by_four" } } },
["# to maximum Fortification while stationary"] = { { isScalable = true, formats = { "divide_by_five" } } },
- ["# to maximum Infusion on your weapons"] = { { isScalable = true } },
["# to maximum Life"] = { { isScalable = true } },
["# to maximum Life per 10 Levels"] = { { isScalable = true } },
["# to maximum Life per Socket filled"] = { { isScalable = true } },
@@ -418,6 +435,7 @@ return {
["# to maximum number of Animated Weapons"] = { { isScalable = true } },
["# to maximum number of Bladestorms"] = { { isScalable = true } },
["# to maximum number of Caltrops allowed"] = { { isScalable = true } },
+ ["# to maximum number of Elemental Infusions"] = { { isScalable = true } },
["# to maximum number of Raging Spirits"] = { { isScalable = true } },
["# to maximum number of Sentinels of Purity"] = { { isScalable = true } },
["# to maximum number of Skeletons"] = { { isScalable = true } },
@@ -430,6 +448,7 @@ return {
["# to maximum number of Summoned Phantasms"] = { { isScalable = true } },
["# to maximum number of Summoned Totems"] = { { isScalable = true } },
["# to maximum number of Summoned Totems if you or your Totems have Killed in the past 8 seconds"] = { { isScalable = true } },
+ ["# to maximum number of placed Banners"] = { { isScalable = true } },
["# to number of Summoned Arbalists"] = { { isScalable = true } },
["#% Chance for Puncture to Maim on hit"] = { { isScalable = true } },
["#% Chance for Traps to Trigger an additional time"] = { { isScalable = true } },
@@ -441,11 +460,8 @@ return {
["#% Chance to Block Attack Damage for 2 seconds every 5 seconds"] = { { isScalable = true } },
["#% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"] = { { isScalable = true } },
["#% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently"] = { { isScalable = true } },
- ["#% Chance to Block Attack Damage from Cursed Enemies"] = { { isScalable = true } },
- ["#% Chance to Block Attack Damage from Taunted Enemies"] = { { isScalable = true } },
["#% Chance to Block Attack Damage if there are at least 5 nearby Enemies"] = { { isScalable = true } },
["#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently"] = { { isScalable = true } },
- ["#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"] = { { isScalable = true } },
["#% Chance to Block Attack Damage if you have not Blocked Recently"] = { { isScalable = true } },
["#% Chance to Block Attack Damage if you were Damaged by a Hit Recently"] = { { isScalable = true } },
["#% Chance to Block Attack Damage if you've Stunned an Enemy Recently"] = { { isScalable = true } },
@@ -471,26 +487,9 @@ return {
["#% Chance to Block Attack Damage while wielding a Staff"] = { { isScalable = true } },
["#% Chance to Block Attack Damage while you have at least 10 Crab Barriers"] = { { isScalable = true } },
["#% Chance to Block Attack Damage while you have at least 5 Crab Barriers"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage during Effect"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage if you have not Blocked Recently"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage if you were Damaged by a Hit Recently"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage if you've Cast a Spell Recently"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage per Power Charge"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while Channelling"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while Cursed"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while Dual Wielding"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while affected by Discipline"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while at Maximum Power Charges"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while holding a Shield"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while on Low Life"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while wielding a Bow"] = { { isScalable = true } },
- ["#% Chance to Block Spell Damage while wielding a Staff"] = { { isScalable = true } },
["#% Chance to Cause Monster to Flee on Block"] = { { isScalable = true } },
- ["#% Chance to Deflect"] = { { isScalable = true } },
+ ["#% Chance to Inflict Exposure on Hit with Lightning Damage"] = { { isScalable = true } },
["#% Chance to Inflict Fire Exposure on Hit with Fire Damage"] = { { isScalable = true } },
- ["#% Chance to Inflict Lightning Exposure on Hit with Lightning Damage"] = { { isScalable = true } },
["#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill"] = { { isScalable = false } },
["#% Chance to cause Bleeding Enemies to Flee on hit"] = { { isScalable = true } },
["#% Chance to gain Elemental Conflux for 4 seconds when you Kill an Enemy"] = { { isScalable = true } },
@@ -567,6 +566,8 @@ return {
["#% chance for Charms you use to not consume Charges"] = { { isScalable = true } },
["#% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas"] = { { isScalable = true } },
["#% chance for Crossbow Attacks to not consume a bolt"] = { { isScalable = true } },
+ ["#% chance for Damage of Enemies Hitting you to be Lucky"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% chance for Damage of Enemies Hitting you to be Unlucky"] = { { isScalable = true } },
["#% chance for Discharge to deal Damage without removing Charges"] = { { isScalable = true } },
["#% chance for Elemental Hit and Wild Strike Hits to inflict Scorch, Brittle and Sapped"] = { { isScalable = true } },
["#% chance for Enemies to drop Burning Ground when Hitting you, no more than once every 2 seconds"] = { { isScalable = true } },
@@ -576,7 +577,7 @@ return {
["#% chance for Energy Shield Recharge to start when you Block"] = { { isScalable = true } },
["#% chance for Energy Shield Recharge to start when you Kill an Enemy"] = { { isScalable = true } },
["#% chance for Energy Shield Recharge to start when you Link to a target"] = { { isScalable = true } },
- ["#% chance for Energy Shield Recharge to start when you Suppress Spell Damage"] = { { isScalable = true } },
+ ["#% chance for Energy Shield Recharge to start when you gain an Infusion"] = { { isScalable = true } },
["#% chance for Energy Shield Recharge to start when you use a Skill"] = { { isScalable = true } },
["#% chance for Firestorm and Bladefall to affect the same area again when they finish"] = { { isScalable = true } },
["#% chance for Flasks to gain # Charges when you take a Critical Hit"] = { { isScalable = true }, { isScalable = true } },
@@ -586,7 +587,6 @@ return {
["#% chance for Hexes to affect Hexproof Enemies"] = { { isScalable = true } },
["#% chance for Immortal Call to increase Duration without removing Endurance Charges"] = { { isScalable = true } },
["#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies"] = { { isScalable = true } },
- ["#% chance for Infusions to Infuse your Projectiles without being Consumed"] = { { isScalable = true } },
["#% chance for Kills to count twice for Rampage"] = { { isScalable = true } },
["#% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration"] = { { isScalable = true } },
["#% chance for Lightning Damage with Hits to be Lucky"] = { { isScalable = true } },
@@ -601,14 +601,17 @@ return {
["#% chance for Phase Run to increase Duration without removing Frenzy Charges"] = { { isScalable = true } },
["#% chance for Projectiles to Pierce Enemies within 3m distance of you"] = { { isScalable = true } },
["#% chance for Rare Packs to have an additional Rare Monster"] = { { isScalable = true } },
+ ["#% chance for Remnants you pick up to count as picking up an additional Remnant"] = { { isScalable = true } },
["#% chance for Slain monsters to drop an additional Scroll of Wisdom"] = { { isScalable = true } },
["#% chance for Slam Skills you use yourself to cause Aftershocks"] = { { isScalable = true } },
["#% chance for Spectres to gain Soul Eater on Kill for 20 seconds"] = { { isScalable = true } },
["#% chance for Spell Hits against you to inflict Poison"] = { { isScalable = true } },
["#% chance for Spell Skills to fire 2 additional Projectiles"] = { { isScalable = true } },
+ ["#% chance for Surges to suffuse your Projectiles without being Consumed"] = { { isScalable = true } },
["#% chance for Synthesised Packs to be upgraded to Magic"] = { { isScalable = true } },
["#% chance for Synthesised Packs to be upgraded to Rare"] = { { isScalable = true } },
["#% chance for Synthesised Rare Packs to have an additional Rare Monster"] = { { isScalable = true } },
+ ["#% chance for Thorns to Retaliate against Non-Melee Hits if you have at least 200 Tribute"] = { { isScalable = true } },
["#% chance for Trigger skills to refund half of Energy Spent"] = { { isScalable = true } },
["#% chance for transforming to add a Link to the largest group of Linked Sockets"] = { { isScalable = true } },
["#% chance for transforming to add a Socket"] = { { isScalable = true } },
@@ -661,7 +664,7 @@ return {
["#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges"] = { { isScalable = true } },
["#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"] = { { isScalable = true } },
["#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers"] = { { isScalable = true } },
- ["#% chance that when Volatility on you detonates, you regain an equivalent amount of Volatility"] = { { isScalable = true } },
+ ["#% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"] = { { isScalable = true } },
["#% chance to Aggravate Bleeding on Hit"] = { { isScalable = true } },
["#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"] = { { isScalable = true } },
["#% chance to Aggravate Bleeding on targets you Hit with Attacks"] = { { isScalable = true } },
@@ -724,9 +727,6 @@ return {
["#% chance to Blind on Hit against Bleeding Enemies"] = { { isScalable = true } },
["#% chance to Block Projectile Attack Damage"] = { { isScalable = true } },
["#% chance to Block Projectile Spell Damage"] = { { isScalable = true } },
- ["#% chance to Block Spell Damage if you have Blocked Attack Damage Recently"] = { { isScalable = true } },
- ["#% chance to Block Spell Damage while holding a Shield"] = { { isScalable = true } },
- ["#% chance to Block Spell Damage while holding a Staff or Shield"] = { { isScalable = true } },
["#% chance to Cause Bleeding on Critical Hit"] = { { isScalable = true } },
["#% chance to Cause Monsters to Flee"] = { { isScalable = true } },
["#% chance to Cause Poison on Critical Hit"] = { { isScalable = true } },
@@ -755,22 +755,12 @@ return {
["#% chance to Curse non-Cursed Enemies with a random Hex on Hit"] = { { isScalable = true } },
["#% chance to Curse you with Punishment on Kill"] = { { isScalable = true } },
["#% chance to Curse you with Silence when Hit"] = { { isScalable = true } },
+ ["#% chance to Daze on Hit"] = { { isScalable = true } },
["#% chance to Debilitate Enemies for 1 second on Hit"] = { { isScalable = true } },
["#% chance to Defend with 150% of Armour per 5% missing Energy Shield"] = { { isScalable = true } },
["#% chance to Defend with 200% of Armour"] = { { isScalable = true } },
- ["#% chance to Deflect Attack Damage"] = { { isScalable = true } },
- ["#% chance to Evade Attack Hits"] = { { isScalable = true } },
- ["#% chance to Evade Attack Hits if you haven't been Hit Recently"] = { { isScalable = true } },
- ["#% chance to Evade Attack Hits if you've\ntaken a Savage Hit Recently"] = { { isScalable = true } },
- ["#% chance to Evade Attack Hits while affected by Grace"] = { { isScalable = true } },
["#% chance to Extinguish Enemies on Hit"] = { { isScalable = true } },
["#% chance to Freeze"] = { { isScalable = true, formats = { "canonical_stat" } } },
- ["#% chance to Freeze during any Flask Effect"] = { { isScalable = true } },
- ["#% chance to Freeze, Shock and Ignite"] = { { isScalable = true } },
- ["#% chance to Freeze, Shock and Ignite during Effect"] = { { isScalable = true } },
- ["#% chance to Freeze, Shock and Ignite during any Flask Effect"] = { { isScalable = true } },
- ["#% chance to Freeze, Shock and Ignite if you haven't Crit Recently"] = { { isScalable = true } },
- ["#% chance to Freeze, Shock and Ignite while affected by a Herald"] = { { isScalable = true } },
["#% chance to Gain 100% of Damage with Hits as Extra Chaos Damage"] = { { isScalable = true } },
["#% chance to Gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"] = { { isScalable = true } },
["#% chance to Gain 25% of Damage with Hits as Extra Chaos Damage"] = { { isScalable = true } },
@@ -784,10 +774,6 @@ return {
["#% chance to Gain a Power Charge on Hit while Poisoned"] = { { isScalable = true } },
["#% chance to Hinder Enemies on Hit with Spells"] = { { isScalable = true } },
["#% chance to Hinder Enemies you spread Poison to"] = { { isScalable = true } },
- ["#% chance to Ignite"] = { { isScalable = true } },
- ["#% chance to Ignite during any Flask Effect"] = { { isScalable = true } },
- ["#% chance to Ignite when in Main Hand"] = { { isScalable = true } },
- ["#% chance to Ignite while Ignited"] = { { isScalable = true } },
["#% chance to Ignore Stuns while Casting"] = { { isScalable = true } },
["#% chance to Ignore Stuns while Casting Storm Burst"] = { { isScalable = true } },
["#% chance to Ignore Stuns while using Socketed Attack Skills"] = { { isScalable = true } },
@@ -838,26 +824,6 @@ return {
["#% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"] = { { isScalable = true } },
["#% chance to Summon a Lesser Elemental Golem when\nyou Kill an Enemy using Elemental Damage"] = { { isScalable = true } },
["#% chance to Summon an additional Skeleton with Summon Skeletons"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage for each Dagger you're Wielding"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage if you've Hit an Enemy Recently"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage if you've\ntaken Spell Damage Recently"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage per Endurance Charge"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage per Fortification"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage per Frenzy Charge"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage per Hit Suppressed Recently"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage per Power Charge"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while Channelling"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while Phasing"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while affected by Grace"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while affected by Haste"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while holding a Shield"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while moving"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while on Full Energy Shield"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while on Full Life"] = { { isScalable = true } },
- ["#% chance to Suppress Spell Damage while your Off Hand is empty"] = { { isScalable = true } },
["#% chance to Taunt Enemies on Hit with Attacks"] = { { isScalable = true } },
["#% chance to Taunt Enemies on Projectile Hit"] = { { isScalable = true } },
["#% chance to Taunt on Hit"] = { { isScalable = true } },
@@ -973,6 +939,7 @@ return {
["#% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit"] = { { isScalable = true } },
["#% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit"] = { { isScalable = true } },
["#% chance to be targeted by a Meteor when you use a Flask"] = { { isScalable = true } },
+ ["#% chance to build an additional Combo on Hit"] = { { isScalable = true } },
["#% chance to cause Bleeding on Hit"] = { { isScalable = true } },
["#% chance to cause Enemies to Flee on use"] = { { isScalable = true } },
["#% chance to cause an Aftershock with Mace Slams"] = { { isScalable = true } },
@@ -1127,7 +1094,6 @@ return {
["#% chance to drop an additional Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["#% chance to drop an additional Unique Item"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["#% chance to drop an additional Vaal Orb"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
- ["#% chance to drop an additional Veiled Chaos Orb"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
["#% chance to find additional Heist Targets from Secret Reward Rooms"] = { { isScalable = false } },
["#% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"] = { { isScalable = true } },
["#% chance to gain 200 Life on Hit with Attacks"] = { { isScalable = true } },
@@ -1138,6 +1104,7 @@ return {
["#% chance to gain Elusive on Critical Hit"] = { { isScalable = true } },
["#% chance to gain Elusive on Kill"] = { { isScalable = true } },
["#% chance to gain Elusive when you Block while Dual Wielding"] = { { isScalable = true } },
+ ["#% chance to gain Flame Archon when you Ignite an Enemy"] = { { isScalable = true } },
["#% chance to gain Onslaught for # seconds on Kill"] = { { isScalable = true }, { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["#% chance to gain Onslaught for 10 Seconds when you Hit a Rare\nor Unique Enemy"] = { { isScalable = true } },
["#% chance to gain Onslaught for 10 seconds on Kill"] = { { isScalable = true } },
@@ -1146,6 +1113,7 @@ return {
["#% chance to gain Onslaught for 4 seconds on Hit"] = { { isScalable = true } },
["#% chance to gain Onslaught for 4 seconds on Kill"] = { { isScalable = true } },
["#% chance to gain Onslaught on Killing Blow with Axes"] = { { isScalable = true } },
+ ["#% chance to gain Onslaught on Killing Hits with this Weapon"] = { { isScalable = true } },
["#% chance to gain Onslaught when you use a Flask"] = { { isScalable = true } },
["#% chance to gain Phasing for # seconds when your Trap is triggered by an Enemy"] = { { isScalable = true, formats = { "canonical_stat" } }, { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["#% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy"] = { { isScalable = true } },
@@ -1196,7 +1164,6 @@ return {
["#% chance to gain a Power Charge on Non-Critical Hit with a Claw or Dagger"] = { { isScalable = true } },
["#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"] = { { isScalable = true } },
["#% chance to gain a Power Charge when you Block"] = { { isScalable = true } },
- ["#% chance to gain a Power Charge when you Block Spell Damage"] = { { isScalable = true } },
["#% chance to gain a Power Charge when you Cast a Curse Spell"] = { { isScalable = true } },
["#% chance to gain a Power Charge when you Hit a Frozen Enemy"] = { { isScalable = true } },
["#% chance to gain a Power Charge when you Hit a Rare or Unique Enemy"] = { { isScalable = true } },
@@ -1247,11 +1214,10 @@ return {
["#% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies"] = { { isScalable = true } },
["#% chance to inflict Brittle"] = { { isScalable = true } },
["#% chance to inflict Brittle on Enemies when you Block their Damage"] = { { isScalable = true } },
- ["#% chance to inflict Cold Exposure on Hit"] = { { isScalable = true } },
["#% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion"] = { { isScalable = true } },
- ["#% chance to inflict Fire Exposure on Hit"] = { { isScalable = true } },
+ ["#% chance to inflict Daze with Hits against Enemies further than 6m"] = { { isScalable = true } },
+ ["#% chance to inflict Exposure on Hit"] = { { isScalable = true } },
["#% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion"] = { { isScalable = true } },
- ["#% chance to inflict Lightning Exposure on Hit"] = { { isScalable = true } },
["#% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion"] = { { isScalable = true } },
["#% chance to inflict Withered for 2 seconds on Hit"] = { { isScalable = true } },
["#% chance to inflict Withered for 2 seconds on Hit with this Weapon"] = { { isScalable = true } },
@@ -1301,10 +1267,13 @@ return {
["#% chance to throw up to 4 additional Traps"] = { { isScalable = true } },
["#% chance to travel to Winding Pier instead while on a Ley Fishing Line"] = { { isScalable = true, formats = { "divide_by_one_hundred_2dp" } } },
["#% chance when a Charm is used to use another Charm without consuming Charges"] = { { isScalable = true } },
+ ["#% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type"] = { { isScalable = true } },
["#% chance when throwing Mines to throw up to 1 additional Mine"] = { { isScalable = true } },
["#% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds"] = { { isScalable = true } },
["#% chance when you Kill a Scorched Enemy to Burn Each surrounding\nEnemy for 4 seconds, dealing 8% of the Killed Enemy's maximum Life as Fire Damage per second"] = { { isScalable = true } },
+ ["#% chance when you Reload a Crossbow to be immediate"] = { { isScalable = true } },
["#% chance when you gain a Charge to gain an additional Charge"] = { { isScalable = true } },
+ ["#% chance when you gain a Charge to gain an additional Charge per 10 Tribute"] = { { isScalable = true } },
["#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"] = { { isScalable = true } },
["#% chance when you gain a Power Charge to gain an additional Power Charge"] = { { isScalable = true } },
["#% chance when you gain an Endurance Charge to gain an additional Endurance Charge"] = { { isScalable = true } },
@@ -1312,16 +1281,19 @@ return {
["#% chance when you pay a Skill's Cost to gain that much Mana"] = { { isScalable = true } },
["#% decreased Attack Speed per Enemy in Close Range"] = { { isScalable = true, formats = { "negate" } } },
["#% faster Curse Activation"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% faster Curse Activation per 20 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% faster Restoration of Ward"] = { { isScalable = true } },
["#% faster start of Energy Shield Recharge"] = { { isScalable = true } },
["#% faster start of Energy Shield Recharge during any Flask Effect"] = { { isScalable = true } },
["#% faster start of Energy Shield Recharge if you've been Stunned Recently"] = { { isScalable = true } },
["#% faster start of Energy Shield Recharge when not on Full Life"] = { { isScalable = true } },
["#% faster start of Energy Shield Recharge while affected by Discipline"] = { { isScalable = true } },
+ ["#% faster start of Energy Shield Recharge while affected by an Archon Buff"] = { { isScalable = true } },
["#% improved Rewards"] = { { isScalable = true } },
["#% increased Absolution Cast Speed"] = { { isScalable = true } },
["#% increased Abyssal Cry Duration"] = { { isScalable = true } },
["#% increased Accuracy Rating"] = { { isScalable = true } },
+ ["#% increased Accuracy Rating against Enemies affected by Abyssal Wasting"] = { { isScalable = true } },
["#% increased Accuracy Rating against Marked Enemy"] = { { isScalable = true } },
["#% increased Accuracy Rating against Rare or Unique Enemies"] = { { isScalable = true } },
["#% increased Accuracy Rating against Unique Enemies"] = { { isScalable = true } },
@@ -1329,9 +1301,13 @@ return {
["#% increased Accuracy Rating during Effect"] = { { isScalable = true } },
["#% increased Accuracy Rating if you haven't Killed Recently"] = { { isScalable = true } },
["#% increased Accuracy Rating if you've dealt a Critical Hit in the past 8 seconds"] = { { isScalable = true } },
+ ["#% increased Accuracy Rating per 10 Tribute"] = { { isScalable = true } },
+ ["#% increased Accuracy Rating per 25 Tribute"] = { { isScalable = true } },
["#% increased Accuracy Rating per Frenzy Charge"] = { { isScalable = true } },
["#% increased Accuracy Rating when on Low Life"] = { { isScalable = true } },
["#% increased Accuracy Rating while Dual Wielding"] = { { isScalable = true } },
+ ["#% increased Accuracy Rating while Surrounded"] = { { isScalable = true } },
+ ["#% increased Accuracy Rating while moving"] = { { isScalable = true } },
["#% increased Accuracy Rating while you have Onslaught"] = { { isScalable = true } },
["#% increased Accuracy Rating with Axes"] = { { isScalable = true } },
["#% increased Accuracy Rating with Bows"] = { { isScalable = true } },
@@ -1349,9 +1325,8 @@ return {
["#% increased Accuracy with Area Skills"] = { { isScalable = true } },
["#% increased Action Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% increased Adaptation Duration"] = { { isScalable = true } },
- ["#% increased Adaptation Rating"] = { { isScalable = true } },
- ["#% increased Adaptation Rating during Effect"] = { { isScalable = true } },
["#% increased Aftershock Area of Effect"] = { { isScalable = true } },
+ ["#% increased Ailment and Stun Threshold while Surrounded"] = { { isScalable = true } },
["#% increased Alchemist's Mark Curse Effect"] = { { isScalable = true } },
["#% increased Ambush Cooldown Recovery Rate"] = { { isScalable = true } },
["#% increased Amount Recovered"] = { { isScalable = true } },
@@ -1362,6 +1337,7 @@ return {
["#% increased Ancestral Warchief Totem Damage"] = { { isScalable = true } },
["#% increased Animate Weapon Duration"] = { { isScalable = true } },
["#% increased Arc Damage"] = { { isScalable = true } },
+ ["#% increased Archon Buff duration"] = { { isScalable = true } },
["#% increased Arctic Armour Buff Effect"] = { { isScalable = true } },
["#% increased Area Damage"] = { { isScalable = true } },
["#% increased Area Damage per 10 Devotion"] = { { isScalable = true } },
@@ -1384,6 +1360,7 @@ return {
["#% increased Area of Effect if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Area of Effect if you've dealt a Culling Strike Recently"] = { { isScalable = true } },
["#% increased Area of Effect of Aftershocks you create yourself"] = { { isScalable = true } },
+ ["#% increased Area of Effect of Ancestrally Boosted Attacks"] = { { isScalable = true } },
["#% increased Area of Effect of Aura Skills"] = { { isScalable = true } },
["#% increased Area of Effect of Buffs affecting Party members"] = { { isScalable = true } },
["#% increased Area of Effect of Curse Aura Skills"] = { { isScalable = true } },
@@ -1415,6 +1392,7 @@ return {
["#% increased Armour and Evasion Rating"] = { { isScalable = true } },
["#% increased Armour and Evasion Rating during Onslaught"] = { { isScalable = true } },
["#% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently"] = { { isScalable = true } },
+ ["#% increased Armour and Evasion Rating per Summoned Totem in your Presence"] = { { isScalable = true } },
["#% increased Armour and Evasion Rating when on Low Life"] = { { isScalable = true } },
["#% increased Armour and Evasion Rating while Fortified"] = { { isScalable = true } },
["#% increased Armour and Evasion Rating while Leeching"] = { { isScalable = true } },
@@ -1424,10 +1402,12 @@ return {
["#% increased Armour from Equipped Helmet and Gloves"] = { { isScalable = true } },
["#% increased Armour from Equipped Shield"] = { { isScalable = true } },
["#% increased Armour if you have been Hit Recently"] = { { isScalable = true } },
+ ["#% increased Armour if you haven't Dodge Rolled Recently"] = { { isScalable = true } },
["#% increased Armour if you haven't Killed Recently"] = { { isScalable = true } },
["#% increased Armour if you haven't been Hit Recently"] = { { isScalable = true } },
["#% increased Armour if you've Hit an Enemy with a Melee Attack Recently"] = { { isScalable = true } },
["#% increased Armour if you've consumed an Endurance Charge Recently"] = { { isScalable = true } },
+ ["#% increased Armour per 10 Tribute"] = { { isScalable = true } },
["#% increased Armour per 50 Reserved Mana"] = { { isScalable = false } },
["#% increased Armour per 50 Strength"] = { { isScalable = true } },
["#% increased Armour per Defiance"] = { { isScalable = true } },
@@ -1436,10 +1416,12 @@ return {
["#% increased Armour per second you've been stationary, up to a maximum of 100%"] = { { isScalable = true } },
["#% increased Armour while Bleeding"] = { { isScalable = true } },
["#% increased Armour while Chilled or Frozen"] = { { isScalable = true } },
+ ["#% increased Armour while Ignited"] = { { isScalable = true } },
["#% increased Armour while Surrounded"] = { { isScalable = true } },
["#% increased Armour while not Ignited, Frozen or Shocked"] = { { isScalable = true } },
["#% increased Armour while stationary"] = { { isScalable = true } },
["#% increased Armour, Evasion and Energy Shield"] = { { isScalable = true } },
+ ["#% increased Armour, Evasion or Energy Shield"] = { { isScalable = true } },
["#% increased Arrow Speed"] = { { isScalable = true } },
["#% increased Aspect of the Avian Buff Effect"] = { { isScalable = true } },
["#% increased Aspect of the Spider Area of Effect"] = { { isScalable = true } },
@@ -1450,6 +1432,7 @@ return {
["#% increased Attack Area of Effect while wielding a Quarterstaff"] = { { isScalable = true } },
["#% increased Attack Cold Damage"] = { { isScalable = true } },
["#% increased Attack Cold Damage while Dual Wielding"] = { { isScalable = true } },
+ ["#% increased Attack Critical Hit Chance per 10 Tribute"] = { { isScalable = true } },
["#% increased Attack Critical Hit Chance while Dual Wielding"] = { { isScalable = true } },
["#% increased Attack Damage"] = { { isScalable = true } },
["#% increased Attack Damage against Bleeding Enemies"] = { { isScalable = true } },
@@ -1458,16 +1441,19 @@ return {
["#% increased Attack Damage during Onslaught"] = { { isScalable = true } },
["#% increased Attack Damage for each Map Item Modifier affecting the Area"] = { { isScalable = true } },
["#% increased Attack Damage if Corrupted"] = { { isScalable = true } },
+ ["#% increased Attack Damage if you have been Heavy Stunned Recently"] = { { isScalable = true } },
["#% increased Attack Damage if you've Cast a Spell Recently"] = { { isScalable = true } },
["#% increased Attack Damage if your other Ring is a Shaper Item"] = { { isScalable = true } },
+ ["#% increased Attack Damage per 10 Tribute"] = { { isScalable = true } },
["#% increased Attack Damage per 16 Strength"] = { { isScalable = true } },
["#% increased Attack Damage per 450 Armour"] = { { isScalable = true } },
["#% increased Attack Damage per 450 Evasion Rating"] = { { isScalable = true } },
["#% increased Attack Damage per 5% Chance to Block Attack Damage"] = { { isScalable = true } },
["#% increased Attack Damage per 500 Maximum Mana"] = { { isScalable = true } },
- ["#% increased Attack Damage per 75 Armour or Evasion Rating on Shield"] = { { isScalable = true } },
+ ["#% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"] = { { isScalable = true } },
["#% increased Attack Damage per Frenzy Charge"] = { { isScalable = true } },
["#% increased Attack Damage per Level"] = { { isScalable = true } },
+ ["#% increased Attack Damage per Summoned Totem in your Presence"] = { { isScalable = true } },
["#% increased Attack Damage when on Full Life"] = { { isScalable = true } },
["#% increased Attack Damage when on Low Life"] = { { isScalable = true } },
["#% increased Attack Damage while Channelling"] = { { isScalable = true } },
@@ -1479,6 +1465,7 @@ return {
["#% increased Attack Damage while in Blood Stance"] = { { isScalable = true } },
["#% increased Attack Damage while not on Low Mana"] = { { isScalable = true } },
["#% increased Attack Damage while you have an Ally in your Presence"] = { { isScalable = true } },
+ ["#% increased Attack Damage while you have no Life Flask uses left"] = { { isScalable = true } },
["#% increased Attack Damage with Main Hand"] = { { isScalable = true } },
["#% increased Attack Damage with Main Hand while Dual Wielding"] = { { isScalable = true } },
["#% increased Attack Damage with Off Hand"] = { { isScalable = true } },
@@ -1498,13 +1485,15 @@ return {
["#% increased Attack Speed if you've Hit with your Main Hand Weapon Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've Killed Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've been Hit Recently"] = { { isScalable = true } },
- ["#% increased Attack Speed if you've cast a Mark Spell Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've changed Stance Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've successfully Parried Recently"] = { { isScalable = true } },
["#% increased Attack Speed if you've taken a Savage Hit Recently"] = { { isScalable = true } },
+ ["#% increased Attack Speed if you've used a Life Flask Recently"] = { { isScalable = true } },
+ ["#% increased Attack Speed if you've used a Mark Recently"] = { { isScalable = true } },
["#% increased Attack Speed per 10 Dexterity"] = { { isScalable = true } },
["#% increased Attack Speed per 20 Dexterity"] = { { isScalable = true } },
+ ["#% increased Attack Speed per 20 Spirit"] = { { isScalable = true } },
["#% increased Attack Speed per 25 Dexterity"] = { { isScalable = true } },
["#% increased Attack Speed per 250 Accuracy Rating"] = { { isScalable = true } },
["#% increased Attack Speed per 8% Quality"] = { { isScalable = true } },
@@ -1525,9 +1514,9 @@ return {
["#% increased Attack Speed while affected by Precision"] = { { isScalable = true } },
["#% increased Attack Speed while holding a Shield"] = { { isScalable = true } },
["#% increased Attack Speed while in Sand Stance"] = { { isScalable = true } },
- ["#% increased Attack Speed while in the Presence of your Companion"] = { { isScalable = true } },
["#% increased Attack Speed while not on Low Mana"] = { { isScalable = true } },
["#% increased Attack Speed while on Full Mana"] = { { isScalable = true } },
+ ["#% increased Attack Speed while your Companion is in your Presence"] = { { isScalable = true } },
["#% increased Attack Speed with Axes"] = { { isScalable = true } },
["#% increased Attack Speed with Bows"] = { { isScalable = true } },
["#% increased Attack Speed with Claws"] = { { isScalable = true } },
@@ -1547,6 +1536,7 @@ return {
["#% increased Attack Speed with Two Handed Melee Weapons"] = { { isScalable = true } },
["#% increased Attack Speed with Wands"] = { { isScalable = true } },
["#% increased Attack and Cast Speed"] = { { isScalable = true } },
+ ["#% increased Attack and Cast Speed during Effect of any Flask"] = { { isScalable = true } },
["#% increased Attack and Cast Speed during Effect of any Mana Flask"] = { { isScalable = true } },
["#% increased Attack and Cast Speed during Onslaught"] = { { isScalable = true } },
["#% increased Attack and Cast Speed during any Flask Effect"] = { { isScalable = true } },
@@ -1583,6 +1573,7 @@ return {
["#% increased Attack and Cast Speed with Physical Skills"] = { { isScalable = true } },
["#% increased Attack and Cast Speed with Shield Skills"] = { { isScalable = true } },
["#% increased Attack and Movement Speed while you have a Bestial Minion"] = { { isScalable = true } },
+ ["#% increased Attack damage while moving"] = { { isScalable = true } },
["#% increased Attack, Cast and Movement Speed during Effect"] = { { isScalable = true } },
["#% increased Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"] = { { isScalable = true } },
["#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes"] = { { isScalable = true } },
@@ -1591,9 +1582,14 @@ return {
["#% increased Attributes"] = { { isScalable = true } },
["#% increased Attributes per Socket filled"] = { { isScalable = true } },
["#% increased Attributes per allocated Keystone"] = { { isScalable = true } },
+ ["#% increased Aura Magnitudes if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Ball Lightning Area of Effect"] = { { isScalable = true } },
["#% increased Ball Lightning Damage"] = { { isScalable = true } },
["#% increased Ball Lightning Projectile Speed"] = { { isScalable = true } },
+ ["#% increased Ballista Critical Damage Bonus"] = { { isScalable = true } },
+ ["#% increased Ballista Critical Hit Chance"] = { { isScalable = true } },
+ ["#% increased Ballista Immobilisation buildup"] = { { isScalable = true } },
+ ["#% increased Ballista damage"] = { { isScalable = true } },
["#% increased Barrage Attack Speed"] = { { isScalable = true } },
["#% increased Barrage Damage"] = { { isScalable = true } },
["#% increased Battlemage's Cry Buff Effect"] = { { isScalable = true } },
@@ -1609,7 +1605,6 @@ return {
["#% increased Bladefall Critical Hit Chance"] = { { isScalable = true } },
["#% increased Bladefall Damage"] = { { isScalable = true } },
["#% increased Bleeding Duration"] = { { isScalable = true } },
- ["#% increased Bleeding Duration on you"] = { { isScalable = true } },
["#% increased Bleeding Duration on you during Effect"] = { { isScalable = true } },
["#% increased Bleeding Duration per 12 Intelligence"] = { { isScalable = true } },
["#% increased Blight Area of Effect"] = { { isScalable = true } },
@@ -1621,6 +1616,8 @@ return {
["#% increased Block Recovery"] = { { isScalable = true } },
["#% increased Block chance"] = { { isScalable = true } },
["#% increased Block chance against Projectiles"] = { { isScalable = true } },
+ ["#% increased Block chance if you have at least 100 Tribute"] = { { isScalable = true } },
+ ["#% increased Block chance while Surrounded"] = { { isScalable = true } },
["#% increased Blueprint Revealing Cost"] = { { isScalable = true } },
["#% increased Bodyswap Cast Speed"] = { { isScalable = true } },
["#% increased Bodyswap Damage"] = { { isScalable = true } },
@@ -1651,6 +1648,8 @@ return {
["#% increased Cast Speed if you've Attacked Recently"] = { { isScalable = true } },
["#% increased Cast Speed if you've Killed Recently"] = { { isScalable = true } },
["#% increased Cast Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
+ ["#% increased Cast Speed if you've used a Mana Flask Recently"] = { { isScalable = true } },
+ ["#% increased Cast Speed per 20 Spirit"] = { { isScalable = true } },
["#% increased Cast Speed per Frenzy Charge"] = { { isScalable = true } },
["#% increased Cast Speed per Power Charge"] = { { isScalable = true } },
["#% increased Cast Speed when on Full Life"] = { { isScalable = true } },
@@ -1660,6 +1659,7 @@ return {
["#% increased Cast Speed while Ignited"] = { { isScalable = true } },
["#% increased Cast Speed while affected by Zealotry"] = { { isScalable = true } },
["#% increased Cast Speed while holding a Shield"] = { { isScalable = true } },
+ ["#% increased Cast Speed while on Full Mana"] = { { isScalable = true } },
["#% increased Cast Speed while wielding a Bow"] = { { isScalable = true } },
["#% increased Cast Speed while wielding a Staff"] = { { isScalable = true } },
["#% increased Cast Speed with Brand Skills"] = { { isScalable = true } },
@@ -1684,6 +1684,7 @@ return {
["#% increased Chaos Damage taken"] = { { isScalable = true } },
["#% increased Chaos Damage taken over time"] = { { isScalable = true } },
["#% increased Chaos Damage while affected by Herald of Agony"] = { { isScalable = true } },
+ ["#% increased Chaos Damage while affected by Herald of Plague"] = { { isScalable = true } },
["#% increased Chaos Damage with Attack Skills"] = { { isScalable = true } },
["#% increased Chaos Damage with Spell Skills"] = { { isScalable = true } },
["#% increased Chaos Damage with Weapons"] = { { isScalable = true } },
@@ -1698,6 +1699,7 @@ return {
["#% increased Charm Charges gained"] = { { isScalable = true } },
["#% increased Charm Charges used"] = { { isScalable = true } },
["#% increased Charm Effect Duration"] = { { isScalable = true } },
+ ["#% increased Charm Effect Duration per 25 Tribute"] = { { isScalable = true } },
["#% increased Chill Duration on Enemies"] = { { isScalable = true } },
["#% increased Chill Duration on Enemies when in Off Hand"] = { { isScalable = true } },
["#% increased Chill Duration on you"] = { { isScalable = true, formats = { "negate" } } },
@@ -1756,9 +1758,13 @@ return {
["#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste"] = { { isScalable = true } },
["#% increased Cooldown Recovery Rate of Travel Skills"] = { { isScalable = true } },
["#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"] = { { isScalable = true } },
+ ["#% increased Cooldown Recovery Rate per 10 Tribute"] = { { isScalable = true } },
["#% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%"] = { { isScalable = true } },
["#% increased Cooldown Recovery Rate per Power Charge"] = { { isScalable = true } },
["#% increased Corrupting Fever Duration"] = { { isScalable = true } },
+ ["#% increased Cost Efficiency"] = { { isScalable = true } },
+ ["#% increased Cost Efficiency of Attacks"] = { { isScalable = true } },
+ ["#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently"] = { { isScalable = true } },
["#% increased Cost of Arc and Crackling Lance"] = { { isScalable = true } },
["#% increased Cost of Aura Skills that summon Totems"] = { { isScalable = true } },
["#% increased Cost of Building and Upgrading Towers"] = { { isScalable = true } },
@@ -1804,11 +1810,14 @@ return {
["#% increased Critical Hit Chance against Enemies on Full Life"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Enemies that are affected\nby no Elemental Ailments"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Enemies that have entered your Presence Recently"] = { { isScalable = true } },
+ ["#% increased Critical Hit Chance against Humanoids"] = { { isScalable = true } },
+ ["#% increased Critical Hit Chance against Immobilised enemies"] = { { isScalable = true } },
+ ["#% increased Critical Hit Chance against Marked Enemies"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Marked Enemy"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Poisoned Enemies"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Shocked Enemies"] = { { isScalable = true } },
["#% increased Critical Hit Chance against Taunted Enemies"] = { { isScalable = true } },
- ["#% increased Critical Hit Chance against enemies with Lightning Exposure"] = { { isScalable = true } },
+ ["#% increased Critical Hit Chance against enemies with Exposure"] = { { isScalable = true } },
["#% increased Critical Hit Chance during Effect"] = { { isScalable = true } },
["#% increased Critical Hit Chance during any Flask Effect"] = { { isScalable = true } },
["#% increased Critical Hit Chance for Attacks"] = { { isScalable = true } },
@@ -1824,6 +1833,7 @@ return {
["#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Critical Hit Chance if you haven't gained a Power Charge Recently"] = { { isScalable = true } },
["#% increased Critical Hit Chance if you've Killed Recently"] = { { isScalable = true } },
+ ["#% increased Critical Hit Chance if you've Triggered a Skill Recently"] = { { isScalable = true } },
["#% increased Critical Hit Chance if you've been Shocked Recently"] = { { isScalable = true } },
["#% increased Critical Hit Chance per 10 Strength"] = { { isScalable = true } },
["#% increased Critical Hit Chance per 25 Intelligence"] = { { isScalable = true } },
@@ -1872,7 +1882,11 @@ return {
["#% increased Critical Spell Damage Bonus"] = { { isScalable = true } },
["#% increased Crossbow Reload Speed"] = { { isScalable = true } },
["#% increased Culling Strike Threshold"] = { { isScalable = true } },
+ ["#% increased Culling Strike Threshold against Immobilised Enemies"] = { { isScalable = true } },
+ ["#% increased Culling Strike Threshold against Rare or Unique Enemies"] = { { isScalable = true } },
["#% increased Curse Duration"] = { { isScalable = true } },
+ ["#% increased Curse Duration if you have at least 100 Tribute"] = { { isScalable = true } },
+ ["#% increased Curse Duration per 10 Tribute"] = { { isScalable = true } },
["#% increased Curse Magnitudes"] = { { isScalable = true } },
["#% increased Curse Magnitudes if you've spent 200 total Mana Recently"] = { { isScalable = true } },
["#% increased Cyclone Attack Speed"] = { { isScalable = true } },
@@ -1884,6 +1898,7 @@ return {
["#% increased Damage Taken for 4 seconds after Spending a total of 200 Mana"] = { { isScalable = true } },
["#% increased Damage Taken from Hits from Labyrinth Traps\n#% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"] = { { isScalable = true }, { isScalable = true } },
["#% increased Damage against Dazed Enemies"] = { { isScalable = true } },
+ ["#% increased Damage against Demons"] = { { isScalable = true } },
["#% increased Damage against Enemies with Fully Broken Armour"] = { { isScalable = true } },
["#% increased Damage during any Flask Effect"] = { { isScalable = true } },
["#% increased Damage for each Hazard triggered Recently, up to 50%"] = { { isScalable = true } },
@@ -1909,6 +1924,7 @@ return {
["#% increased Damage if you've Shattered an Enemy Recently"] = { { isScalable = true } },
["#% increased Damage if you've Triggered a Skill Recently"] = { { isScalable = true } },
["#% increased Damage if you've been Ignited Recently"] = { { isScalable = true } },
+ ["#% increased Damage if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } },
["#% increased Damage if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Damage if you've dealt a Critical Hit in the past 8 seconds"] = { { isScalable = true } },
["#% increased Damage if you've killed a Bleeding Enemy Recently"] = { { isScalable = true } },
@@ -1962,6 +1978,7 @@ return {
["#% increased Damage taken from Skeletons"] = { { isScalable = true } },
["#% increased Damage taken from Taunted Enemies"] = { { isScalable = true } },
["#% increased Damage taken from Trap or Mine Hits"] = { { isScalable = true } },
+ ["#% increased Damage taken from Volatility if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Damage taken if Corrupted"] = { { isScalable = true } },
["#% increased Damage taken if you Killed a Taunted Enemy Recently"] = { { isScalable = true } },
["#% increased Damage taken if you haven't been Hit Recently"] = { { isScalable = true } },
@@ -1994,7 +2011,6 @@ return {
["#% increased Damage while Shocked"] = { { isScalable = true } },
["#% increased Damage while affected by a Herald"] = { { isScalable = true } },
["#% increased Damage while in Blood Stance"] = { { isScalable = true } },
- ["#% increased Damage while in the Presence of your Companion"] = { { isScalable = true } },
["#% increased Damage while not on full Energy Shield"] = { { isScalable = true } },
["#% increased Damage while on Consecrated Ground"] = { { isScalable = true } },
["#% increased Damage while on Full Energy Shield"] = { { isScalable = true } },
@@ -2007,6 +2023,7 @@ return {
["#% increased Damage while you have an active Charm"] = { { isScalable = true } },
["#% increased Damage while you have no Energy Shield"] = { { isScalable = true } },
["#% increased Damage while you have no Frenzy Charges"] = { { isScalable = true } },
+ ["#% increased Damage while your Companion is in your Presence"] = { { isScalable = true } },
["#% increased Damage with Attack Skills while Fortified"] = { { isScalable = true } },
["#% increased Damage with Attack Skills while you have at least 20 Fortification"] = { { isScalable = true } },
["#% increased Damage with Axes"] = { { isScalable = true } },
@@ -2030,7 +2047,6 @@ return {
["#% increased Damage with Hits against Burning Enemies"] = { { isScalable = true } },
["#% increased Damage with Hits against Chilled Enemies"] = { { isScalable = true } },
["#% increased Damage with Hits against Cursed Enemies"] = { { isScalable = true } },
- ["#% increased Damage with Hits against Demons"] = { { isScalable = true } },
["#% increased Damage with Hits against Demons during Effect"] = { { isScalable = true } },
["#% increased Damage with Hits against Enemies affected by Ailments"] = { { isScalable = true } },
["#% increased Damage with Hits against Enemies affected by Elemental Ailments"] = { { isScalable = true } },
@@ -2043,6 +2059,7 @@ return {
["#% increased Damage with Hits against Magic monsters"] = { { isScalable = true } },
["#% increased Damage with Hits against Marked Enemy"] = { { isScalable = true } },
["#% increased Damage with Hits against Rare and Unique Enemies"] = { { isScalable = true } },
+ ["#% increased Damage with Hits against Rare and Unique Enemies if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Damage with Hits against Rare monsters"] = { { isScalable = true } },
["#% increased Damage with Hits against Shocked Enemies"] = { { isScalable = true } },
["#% increased Damage with Hits against Taunted Enemies"] = { { isScalable = true } },
@@ -2083,13 +2100,18 @@ return {
["#% increased Decoy Totem Life"] = { { isScalable = true } },
["#% increased Defences from Equipped Shield"] = { { isScalable = true } },
["#% increased Defences from Equipped Shield per 10 Devotion"] = { { isScalable = true } },
+ ["#% increased Defences from Equipped Shield per 25 Tribute"] = { { isScalable = true } },
["#% increased Defences per Frenzy Charge"] = { { isScalable = true } },
+ ["#% increased Defences while on Low Life"] = { { isScalable = true } },
["#% increased Defences while wielding a Quarterstaff"] = { { isScalable = true } },
["#% increased Defences while you have at least four Linked targets"] = { { isScalable = true } },
["#% increased Defences while your Companion is in your Presence"] = { { isScalable = true } },
+ ["#% increased Deflection Rating"] = { { isScalable = true } },
+ ["#% increased Deflection Rating while Surrounded"] = { { isScalable = true } },
["#% increased Demolition speed"] = { { isScalable = true } },
["#% increased Desecrate Damage"] = { { isScalable = true } },
["#% increased Desecrate Duration"] = { { isScalable = true } },
+ ["#% increased Desecrated Modifier magnitudes"] = { { isScalable = false } },
["#% increased Despair Curse Effect"] = { { isScalable = true } },
["#% increased Despair Duration"] = { { isScalable = true } },
["#% increased Destructive Link Duration"] = { { isScalable = true } },
@@ -2109,17 +2131,21 @@ return {
["#% increased Dual Strike Critical Hit Chance"] = { { isScalable = true } },
["#% increased Dual Strike Damage"] = { { isScalable = true } },
["#% increased Duration"] = { { isScalable = true } },
+ ["#% increased Duration of Ailments against Enemies with Exposure"] = { { isScalable = true } },
["#% increased Duration of Ailments inflicted on you per Fortification"] = { { isScalable = true } },
["#% increased Duration of Ailments inflicted while wielding a Bow"] = { { isScalable = true } },
+ ["#% increased Duration of Ailments on Beasts"] = { { isScalable = true } },
["#% increased Duration of Ailments on Enemies"] = { { isScalable = true } },
["#% increased Duration of Ailments on You"] = { { isScalable = true } },
["#% increased Duration of Ailments you inflict while Focused"] = { { isScalable = true } },
+ ["#% increased Duration of Bleeding on You"] = { { isScalable = true } },
["#% increased Duration of Buffs and Debuffs you create from skills"] = { { isScalable = true } },
["#% increased Duration of Buffs granted by Shrines in your Maps"] = { { isScalable = true } },
["#% increased Duration of Cold Ailments"] = { { isScalable = true } },
["#% increased Duration of Curses on you"] = { { isScalable = true } },
["#% increased Duration of Curses on you per 10 Devotion"] = { { isScalable = true } },
["#% increased Duration of Damaging Ailments on Enemies"] = { { isScalable = true } },
+ ["#% increased Duration of Damaging Ailments per 10 Tribute"] = { { isScalable = true } },
["#% increased Duration of Elemental Ailments on Enemies"] = { { isScalable = true } },
["#% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel"] = { { isScalable = true } },
["#% increased Duration of Fire Ailments"] = { { isScalable = true } },
@@ -2177,7 +2203,6 @@ return {
["#% increased Effect of Small Passive Skills in Radius"] = { { isScalable = false } },
["#% increased Effect of Socketed Abyss Jewels"] = { { isScalable = true } },
["#% increased Effect of Tailwind on you"] = { { isScalable = true } },
- ["#% increased Effect of Withered"] = { { isScalable = true } },
["#% increased Effect of non-Keystone Passive Skills in Radius"] = { { isScalable = false } },
["#% increased Effect of the Buff granted by your Carrion Golems"] = { { isScalable = true } },
["#% increased Effect of the Buff granted by your Chaos Golems"] = { { isScalable = true } },
@@ -2236,6 +2261,7 @@ return {
["#% increased Elemental Damage with Weapons during any Flask Effect"] = { { isScalable = true } },
["#% increased Elemental Damage with Weapons per Power Charge"] = { { isScalable = true } },
["#% increased Elemental Hit Attack Speed"] = { { isScalable = true } },
+ ["#% increased Elemental Infusion duration"] = { { isScalable = true } },
["#% increased Elemental Resistances"] = { { isScalable = true } },
["#% increased Elemental Weakness Curse Effect"] = { { isScalable = true } },
["#% increased Elemental Weakness Duration"] = { { isScalable = true } },
@@ -2250,6 +2276,11 @@ return {
["#% increased Energy Shield Recharge Rate"] = { { isScalable = true } },
["#% increased Energy Shield Recharge Rate during any Flask Effect"] = { { isScalable = true } },
["#% increased Energy Shield Recharge Rate if Equipped Amulet has an Evasion Modifier"] = { { isScalable = true } },
+ ["#% increased Energy Shield Recharge Rate if you haven't Dodge Rolled Recently"] = { { isScalable = true } },
+ ["#% increased Energy Shield Recharge Rate if you've Blocked Recently"] = { { isScalable = true } },
+ ["#% increased Energy Shield Recharge Rate per 25 Tribute"] = { { isScalable = true } },
+ ["#% increased Energy Shield Recharge Rate per 4 Dexterity"] = { { isScalable = true } },
+ ["#% increased Energy Shield Recharge Rate while affected by an Archon Buff"] = { { isScalable = true } },
["#% increased Energy Shield Recovery Rate if you haven't Killed Recently"] = { { isScalable = true } },
["#% increased Energy Shield Recovery Rate if you haven't been Hit Recently"] = { { isScalable = true } },
["#% increased Energy Shield Recovery Rate while affected by Discipline"] = { { isScalable = true } },
@@ -2276,12 +2307,15 @@ return {
["#% increased Evasion Rating from Equipped Body Armour"] = { { isScalable = true } },
["#% increased Evasion Rating from Equipped Helmet and Boots"] = { { isScalable = true } },
["#% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds"] = { { isScalable = true } },
+ ["#% increased Evasion Rating if you have Hit an Enemy Recently"] = { { isScalable = true } },
["#% increased Evasion Rating if you have been Hit Recently"] = { { isScalable = true } },
+ ["#% increased Evasion Rating if you haven't Dodge Rolled Recently"] = { { isScalable = true } },
["#% increased Evasion Rating if you haven't been Hit Recently"] = { { isScalable = true } },
["#% increased Evasion Rating if you've Cast Dash recently"] = { { isScalable = true } },
["#% increased Evasion Rating if you've Dodge Rolled Recently"] = { { isScalable = true } },
["#% increased Evasion Rating if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } },
["#% increased Evasion Rating per 10 Intelligence"] = { { isScalable = true } },
+ ["#% increased Evasion Rating per 10 Tribute"] = { { isScalable = true } },
["#% increased Evasion Rating per 5 Intelligence"] = { { isScalable = true } },
["#% increased Evasion Rating per 500 Maximum Mana, up to 100%"] = { { isScalable = true } },
["#% increased Evasion Rating per Frenzy Charge"] = { { isScalable = true } },
@@ -2290,12 +2324,12 @@ return {
["#% increased Evasion Rating while Focused"] = { { isScalable = true } },
["#% increased Evasion Rating while Parrying"] = { { isScalable = true } },
["#% increased Evasion Rating while Phasing"] = { { isScalable = true } },
+ ["#% increased Evasion Rating while Sprinting"] = { { isScalable = true } },
["#% increased Evasion Rating while Surrounded"] = { { isScalable = true } },
["#% increased Evasion Rating while moving"] = { { isScalable = true } },
["#% increased Evasion Rating while you have Energy Shield"] = { { isScalable = true } },
["#% increased Evasion and Energy Shield"] = { { isScalable = true } },
["#% increased Evasion from Equipped Shield"] = { { isScalable = true } },
- ["#% increased Evasion if you have Hit an Enemy Recently"] = { { isScalable = true } },
["#% increased Evasion while Leeching"] = { { isScalable = true } },
["#% increased Experience Gain for Corrupted Gems"] = { { isScalable = true } },
["#% increased Experience Gain of Gems"] = { { isScalable = true } },
@@ -2338,10 +2372,12 @@ return {
["#% increased Fire Damage if you have used a Cold Skill Recently"] = { { isScalable = true } },
["#% increased Fire Damage over Time"] = { { isScalable = true } },
["#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%"] = { { isScalable = true } },
+ ["#% increased Fire Damage per 10% of target's Armour that is Broken"] = { { isScalable = true } },
["#% increased Fire Damage per 20 Strength"] = { { isScalable = true } },
["#% increased Fire Damage per Endurance Charge"] = { { isScalable = true } },
["#% increased Fire Damage taken"] = { { isScalable = true } },
["#% increased Fire Damage taken while moving"] = { { isScalable = true } },
+ ["#% increased Fire Damage while Ignited"] = { { isScalable = true } },
["#% increased Fire Damage while affected by Anger"] = { { isScalable = true } },
["#% increased Fire Damage while affected by Herald of Ash"] = { { isScalable = true } },
["#% increased Fire Damage with Attack Skills"] = { { isScalable = true } },
@@ -2387,12 +2423,14 @@ return {
["#% increased Flamethrower Trap Throwing Speed"] = { { isScalable = true } },
["#% increased Flammability Curse Effect"] = { { isScalable = true } },
["#% increased Flammability Duration"] = { { isScalable = true } },
+ ["#% increased Flammability Magnitude"] = { { isScalable = true } },
["#% increased Flask Charges gained"] = { { isScalable = true } },
["#% increased Flask Charges gained during any Flask Effect"] = { { isScalable = true } },
["#% increased Flask Charges gained if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Flask Charges used"] = { { isScalable = true } },
["#% increased Flask Charges used from Mana Flasks"] = { { isScalable = true } },
["#% increased Flask Effect Duration"] = { { isScalable = true } },
+ ["#% increased Flask Effect Duration per 25 Tribute"] = { { isScalable = true } },
["#% increased Flask Life Recovery rate"] = { { isScalable = true } },
["#% increased Flask Mana Recovery rate"] = { { isScalable = true } },
["#% increased Flask Recovery rate"] = { { isScalable = true } },
@@ -2406,6 +2444,7 @@ return {
["#% increased Fortification Duration per 10 Strength"] = { { isScalable = true } },
["#% increased Freeze Buildup"] = { { isScalable = true } },
["#% increased Freeze Buildup against Ignited enemies"] = { { isScalable = true } },
+ ["#% increased Freeze Buildup if you've consumed an Power Charge Recently"] = { { isScalable = true } },
["#% increased Freeze Buildup with Quarterstaves"] = { { isScalable = true } },
["#% increased Freeze Duration on Enemies"] = { { isScalable = true } },
["#% increased Freeze Duration on you"] = { { isScalable = true, formats = { "negate" } } },
@@ -2453,6 +2492,9 @@ return {
["#% increased Global Physical Damage while Frozen"] = { { isScalable = true } },
["#% increased Global Physical Damage with Weapons per Red Socket"] = { { isScalable = true } },
["#% increased Global maximum Energy Shield and reduced Lightning Resistance"] = { { isScalable = true } },
+ ["#% increased Glory generation"] = { { isScalable = true } },
+ ["#% increased Glory generation for Banner Skills"] = { { isScalable = true } },
+ ["#% increased Glory generation if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Gold found in this Area"] = { { isScalable = true } },
["#% increased Golem Damage for each Type of Golem you have Summoned"] = { { isScalable = true } },
["#% increased Golem Damage per Summoned Golem"] = { { isScalable = true } },
@@ -2461,10 +2503,14 @@ return {
["#% increased Grenade Damage"] = { { isScalable = true } },
["#% increased Grenade Detonation Time"] = { { isScalable = true } },
["#% increased Grenade Duration"] = { { isScalable = true } },
+ ["#% increased Grenade Projectile Speed"] = { { isScalable = true } },
["#% increased Ground Slam Area of Effect"] = { { isScalable = true } },
["#% increased Ground Slam Damage"] = { { isScalable = true } },
+ ["#% increased Guard gained"] = { { isScalable = true } },
+ ["#% increased Hazard Area of Effect"] = { { isScalable = true } },
["#% increased Hazard Damage"] = { { isScalable = true } },
["#% increased Hazard Duration"] = { { isScalable = true } },
+ ["#% increased Hazard Immobilisation buildup"] = { { isScalable = true } },
["#% increased Heavy Strike Attack Speed"] = { { isScalable = true } },
["#% increased Heavy Strike Damage"] = { { isScalable = true } },
["#% increased Herald of Ash Damage"] = { { isScalable = true } },
@@ -2488,6 +2534,9 @@ return {
["#% increased Ignite Duration on Enemies"] = { { isScalable = true } },
["#% increased Ignite Duration on you"] = { { isScalable = true, formats = { "negate" } } },
["#% increased Ignite Duration on you during Effect"] = { { isScalable = true } },
+ ["#% increased Ignite Magnitude"] = { { isScalable = true } },
+ ["#% increased Immobilisation buildup"] = { { isScalable = true } },
+ ["#% increased Immobilisation buildup against Constructs"] = { { isScalable = true } },
["#% increased Immortal Call Duration"] = { { isScalable = true } },
["#% increased Impale Magnitude"] = { { isScalable = true } },
["#% increased Implicit Modifier magnitudes"] = { { isScalable = false } },
@@ -2499,7 +2548,6 @@ return {
["#% increased Infernal Cry Damage"] = { { isScalable = true } },
["#% increased Infused Blast Area of Effect"] = { { isScalable = true } },
["#% increased Infused Blast Damage"] = { { isScalable = true } },
- ["#% increased Infusion Duration"] = { { isScalable = true } },
["#% increased Inspiration Charge Duration"] = { { isScalable = true } },
["#% increased Intelligence"] = { { isScalable = true } },
["#% increased Intelligence Requirement"] = { { isScalable = true } },
@@ -2520,6 +2568,7 @@ return {
["#% increased Leap Slam Area of Effect"] = { { isScalable = true } },
["#% increased Leap Slam Attack Speed"] = { { isScalable = true } },
["#% increased Leap Slam Damage"] = { { isScalable = true } },
+ ["#% increased Life Cost Efficiency"] = { { isScalable = true } },
["#% increased Life Cost of Skills"] = { { isScalable = true } },
["#% increased Life Flask Charges gained"] = { { isScalable = true } },
["#% increased Life Recovered"] = { { isScalable = true } },
@@ -2528,11 +2577,12 @@ return {
["#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius"] = { { isScalable = true } },
["#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius"] = { { isScalable = true } },
["#% increased Life Recovery Rate while affected by Vitality"] = { { isScalable = true } },
- ["#% increased Life Recovery Rate while in the Presence of your Companion"] = { { isScalable = true } },
+ ["#% increased Life Recovery Rate while your Companion is in your Presence"] = { { isScalable = true } },
["#% increased Life Recovery from Flasks"] = { { isScalable = true } },
["#% increased Life Recovery from Flasks used when on Low Life"] = { { isScalable = true } },
["#% increased Life Recovery from Flasks while affected by Vitality"] = { { isScalable = true } },
["#% increased Life Recovery rate"] = { { isScalable = true } },
+ ["#% increased Life Recovery rate per 10 Tribute"] = { { isScalable = true } },
["#% increased Life Recovery rate per 5% missing Unreserved Life"] = { { isScalable = true } },
["#% increased Life Regeneration Rate while moving"] = { { isScalable = true } },
["#% increased Life Regeneration Rate while on Low Life"] = { { isScalable = true } },
@@ -2540,14 +2590,17 @@ return {
["#% increased Life Regeneration rate"] = { { isScalable = true } },
["#% increased Life Regeneration rate during Effect of any Life Flask"] = { { isScalable = true } },
["#% increased Life Regeneration rate when on Full Energy Shield"] = { { isScalable = true } },
+ ["#% increased Life Regeneration rate while Surrounded"] = { { isScalable = true } },
["#% increased Life Reservation Efficiency of Skills"] = { { isScalable = true } },
["#% increased Life Reservation of Skills"] = { { isScalable = true } },
["#% increased Life and Mana Recovery from Flasks"] = { { isScalable = true } },
+ ["#% increased Life and Mana Recovery from Flasks per 10 Tribute"] = { { isScalable = true } },
["#% increased Life and Mana Recovery from Flasks while you have an active Charm"] = { { isScalable = true } },
["#% increased Life of Fish caught with this Fishing Rod"] = { { isScalable = true } },
["#% increased Lifeforce"] = { { isScalable = true } },
["#% increased Light Radius"] = { { isScalable = true } },
["#% increased Light Radius during Effect"] = { { isScalable = true } },
+ ["#% increased Light Radius per 10 Tribute"] = { { isScalable = true } },
["#% increased Light Radius while Phasing"] = { { isScalable = true } },
["#% increased Lightning Arrow Area of Effect"] = { { isScalable = true } },
["#% increased Lightning Arrow Damage"] = { { isScalable = true } },
@@ -2575,13 +2628,15 @@ return {
["#% increased Lightning Warp Damage"] = { { isScalable = true } },
["#% increased Lightning Warp Duration"] = { { isScalable = true } },
["#% increased Lockpicking speed"] = { { isScalable = true } },
- ["#% increased Magic Monsters"] = { { isScalable = true } },
["#% increased Magic Pack Size"] = { { isScalable = true } },
+ ["#% increased Magnitude of Abyssal Wasting you inflict"] = { { isScalable = true } },
["#% increased Magnitude of Ailments you inflict"] = { { isScalable = true } },
+ ["#% increased Magnitude of Ailments you inflict against Marked Enemies"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding inflicted with this Weapon"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding per Rage while wielding an Axe"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding you inflict"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"] = { { isScalable = true } },
+ ["#% increased Magnitude of Bleeding you inflict against Pinned Enemies"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding you inflict on Poisoned targets"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding you inflict per Endurance Charge"] = { { isScalable = true } },
["#% increased Magnitude of Bleeding you inflict per Frenzy Charge"] = { { isScalable = true } },
@@ -2591,9 +2646,12 @@ return {
["#% increased Magnitude of Chill you inflict with Critical Hits"] = { { isScalable = true } },
["#% increased Magnitude of Chills you inflict while Leeching Mana"] = { { isScalable = true } },
["#% increased Magnitude of Damaging Ailments you inflict"] = { { isScalable = true } },
+ ["#% increased Magnitude of Damaging Ailments you inflict per 10 Tribute"] = { { isScalable = true } },
["#% increased Magnitude of Damaging Ailments you inflict with Critical Hits"] = { { isScalable = true } },
+ ["#% increased Magnitude of Daze"] = { { isScalable = true } },
["#% increased Magnitude of Ignite against Frozen enemies"] = { { isScalable = true } },
- ["#% increased Magnitude of Ignite you inflict"] = { { isScalable = true } },
+ ["#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently"] = { { isScalable = true } },
+ ["#% increased Magnitude of Ignite on you"] = { { isScalable = true } },
["#% increased Magnitude of Ignite you inflict with Critical Hits"] = { { isScalable = true } },
["#% increased Magnitude of Impales inflicted with Spells"] = { { isScalable = true } },
["#% increased Magnitude of Impales you inflict on Non-Impaled Enemies"] = { { isScalable = true } },
@@ -2606,9 +2664,9 @@ return {
["#% increased Magnitude of Poison you inflict"] = { { isScalable = true } },
["#% increased Magnitude of Poison you inflict on Bleeding Enemies"] = { { isScalable = true } },
["#% increased Magnitude of Poison you inflict per Frenzy Charge"] = { { isScalable = true } },
- ["#% increased Magnitude of Poison you inflict while wielding a Claw or Dagger"] = { { isScalable = true } },
["#% increased Magnitude of Poison you inflict with Critical Hits"] = { { isScalable = true } },
["#% increased Magnitude of Poison you inflict with Spell Skills"] = { { isScalable = true } },
+ ["#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } },
["#% increased Magnitude of Shock inflicted by Monsters"] = { { isScalable = true } },
["#% increased Magnitude of Shock you inflict"] = { { isScalable = true } },
["#% increased Magnitude of Shock you inflict with Critical Hits"] = { { isScalable = true } },
@@ -2617,6 +2675,14 @@ return {
["#% increased Magnitudes of Non-Curse Auras from your Skills"] = { { isScalable = true } },
["#% increased Main Hand Attack Damage while wielding two different Weapon Types"] = { { isScalable = true } },
["#% increased Main Hand Critical Hit Chance per\nMurderous Eye Jewel affecting you, up to a maximum of 200%"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency if you have Dodge Rolled Recently"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency of Curses"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency of Marks"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency per 10 Tribute"] = { { isScalable = true } },
+ ["#% increased Mana Cost Efficiency while on Low Mana"] = { { isScalable = true } },
["#% increased Mana Cost of Attacks"] = { { isScalable = true } },
["#% increased Mana Cost of Curse Skills"] = { { isScalable = true } },
["#% increased Mana Cost of Link Skills"] = { { isScalable = true } },
@@ -2640,6 +2706,7 @@ return {
["#% increased Mana Recovery Rate while affected by Clarity"] = { { isScalable = true } },
["#% increased Mana Recovery from Flasks"] = { { isScalable = true } },
["#% increased Mana Recovery rate"] = { { isScalable = true } },
+ ["#% increased Mana Recovery rate per 10 Tribute"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate during any Flask Effect"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate if you have Frozen an Enemy Recently"] = { { isScalable = true } },
@@ -2647,12 +2714,12 @@ return {
["#% increased Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate if you've cast a Spell Recently"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
- ["#% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate per Fragile Regrowth"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate per Power Charge"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate per Raised Spectre"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate while Phasing"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate while Shocked"] = { { isScalable = true } },
+ ["#% increased Mana Regeneration Rate while Surrounded"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate while moving"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate while not on Low Mana"] = { { isScalable = true } },
["#% increased Mana Regeneration Rate while stationary"] = { { isScalable = true } },
@@ -2673,10 +2740,12 @@ return {
["#% increased Maximum Energy Shield if both Equipped Rings have Evasion Modifiers"] = { { isScalable = true } },
["#% increased Maximum Life for each Corrupted Item Equipped"] = { { isScalable = true } },
["#% increased Maximum Life if no Equipped Items are Corrupted"] = { { isScalable = true } },
+ ["#% increased Maximum Life if you have at least 10 Red Support Gems Socketed"] = { { isScalable = true } },
["#% increased Maximum Life per Abyss Jewel affecting you"] = { { isScalable = true } },
["#% increased Maximum Life per Socket filled"] = { { isScalable = true } },
["#% increased Maximum Life per socketed Grand Spectrum"] = { { isScalable = true } },
- ["#% increased Maximum Mana per 2% Chance to Block Spell Damage"] = { { isScalable = true } },
+ ["#% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed"] = { { isScalable = true } },
+ ["#% increased Maximum Mana if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Maximum Mana per Abyss Jewel affecting you"] = { { isScalable = true } },
["#% increased Maximum Mana per Socket filled"] = { { isScalable = true } },
["#% increased Maximum number of Summoned Raging Spirits"] = { { isScalable = true } },
@@ -2751,6 +2820,7 @@ return {
["#% increased Movement Speed if Corrupted"] = { { isScalable = true } },
["#% increased Movement Speed if Dexterity is below 100"] = { { isScalable = true } },
["#% increased Movement Speed if you have Pierced Recently"] = { { isScalable = true } },
+ ["#% increased Movement Speed if you have at least 10 Green Support Gems Socketed"] = { { isScalable = true } },
["#% increased Movement Speed if you have used a Vaal Skill Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you haven't been Hit Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you haven't taken Damage Recently"] = { { isScalable = true } },
@@ -2759,14 +2829,15 @@ return {
["#% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've Killed Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've Pinned an Enemy Recently"] = { { isScalable = true } },
- ["#% increased Movement Speed if you've cast a Mark Spell Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've successfully Parried Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've thrown a Trap or Mine Recently"] = { { isScalable = true } },
+ ["#% increased Movement Speed if you've used a Mark Recently"] = { { isScalable = true } },
["#% increased Movement Speed if you've used a Warcry Recently"] = { { isScalable = true } },
["#% increased Movement Speed on Shocked Ground"] = { { isScalable = true } },
["#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"] = { { isScalable = true } },
["#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius"] = { { isScalable = true } },
+ ["#% increased Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed do not apply"] = { { isScalable = true } },
["#% increased Movement Speed per Chest opened Recently"] = { { isScalable = true } },
["#% increased Movement Speed per Endurance Charge"] = { { isScalable = true } },
["#% increased Movement Speed per Frenzy Charge"] = { { isScalable = true } },
@@ -2783,6 +2854,8 @@ return {
["#% increased Movement Speed while Phasing"] = { { isScalable = true } },
["#% increased Movement Speed while Poisoned"] = { { isScalable = true } },
["#% increased Movement Speed while Shocked"] = { { isScalable = true } },
+ ["#% increased Movement Speed while Sprinting"] = { { isScalable = true } },
+ ["#% increased Movement Speed while Surrounded"] = { { isScalable = true } },
["#% increased Movement Speed while affected by Grace"] = { { isScalable = true } },
["#% increased Movement Speed while affected by a Magic Abyss Jewel"] = { { isScalable = true } },
["#% increased Movement Speed while affected by an Ailment"] = { { isScalable = true } },
@@ -2803,11 +2876,12 @@ return {
["#% increased Off Hand Attack Speed while wielding two different Weapon Types"] = { { isScalable = true } },
["#% increased Orb of Storms Area of Effect"] = { { isScalable = true } },
["#% increased Orb of Storms Critical Hit Chance"] = { { isScalable = true } },
- ["#% increased Pack size"] = { { isScalable = true } },
["#% increased Pack size in Nightmare"] = { { isScalable = false } },
["#% increased Parried Debuff Duration"] = { { isScalable = true } },
+ ["#% increased Parried Debuff Duration per 10 Tribute"] = { { isScalable = true } },
["#% increased Parried Debuff Magnitude"] = { { isScalable = true } },
["#% increased Parry Damage"] = { { isScalable = true } },
+ ["#% increased Parry Range"] = { { isScalable = true } },
["#% increased Phase Run Duration"] = { { isScalable = true } },
["#% increased Physical Attack Damage while Dual Wielding"] = { { isScalable = true } },
["#% increased Physical Attack Damage while holding a Shield"] = { { isScalable = true } },
@@ -2826,6 +2900,7 @@ return {
["#% increased Physical Damage taken while at maximum Endurance Charges"] = { { isScalable = true } },
["#% increased Physical Damage taken while moving"] = { { isScalable = true } },
["#% increased Physical Damage while Leeching Life"] = { { isScalable = true } },
+ ["#% increased Physical Damage while affected by Herald of Blood"] = { { isScalable = true } },
["#% increased Physical Damage while affected by Herald of Purity"] = { { isScalable = true } },
["#% increased Physical Damage while using Pride"] = { { isScalable = true } },
["#% increased Physical Damage while you have Resolute Technique"] = { { isScalable = true } },
@@ -2851,6 +2926,7 @@ return {
["#% increased Physical Weapon Damage per 10 Strength"] = { { isScalable = true } },
["#% increased Physical damage taken from Hits"] = { { isScalable = true } },
["#% increased Pin Buildup"] = { { isScalable = true } },
+ ["#% increased Pin duration"] = { { isScalable = true } },
["#% increased Player and Monster Movement Speed"] = { { isScalable = true } },
["#% increased Poacher's Mark Curse Effect"] = { { isScalable = true } },
["#% increased Poacher's Mark Duration"] = { { isScalable = true } },
@@ -2867,6 +2943,7 @@ return {
["#% increased Power Siphon Damage"] = { { isScalable = true } },
["#% increased Precursor Tablets found in Area"] = { { isScalable = true } },
["#% increased Presence Area of Effect"] = { { isScalable = true } },
+ ["#% increased Presence Area of Effect per 10 Tribute"] = { { isScalable = true } },
["#% increased Projectile Attack Damage"] = { { isScalable = true } },
["#% increased Projectile Attack Damage during any Flask Effect"] = { { isScalable = true } },
["#% increased Projectile Attack Damage per 200 Accuracy Rating"] = { { isScalable = true } },
@@ -2879,7 +2956,6 @@ return {
["#% increased Projectile Damage while in Blood Stance"] = { { isScalable = true } },
["#% increased Projectile Damage with Spears while there are no Enemies within 3m"] = { { isScalable = true } },
["#% increased Projectile Fork angle"] = { { isScalable = true } },
- ["#% increased Projectile Parry Range"] = { { isScalable = true } },
["#% increased Projectile Range"] = { { isScalable = true } },
["#% increased Projectile Speed"] = { { isScalable = true } },
["#% increased Projectile Speed for Spell Skills"] = { { isScalable = true } },
@@ -2913,7 +2989,6 @@ return {
["#% increased Quantity of Items found"] = { { isScalable = true } },
["#% increased Quantity of Items found during Effect"] = { { isScalable = true } },
["#% increased Quantity of Items found in Nightmare"] = { { isScalable = false } },
- ["#% increased Quantity of Items found in this Area"] = { { isScalable = true } },
["#% increased Quantity of Items found per Chest opened Recently"] = { { isScalable = true } },
["#% increased Quantity of Items found when on Low Life"] = { { isScalable = true } },
["#% increased Quantity of Items found with a Magic Item Equipped"] = { { isScalable = true } },
@@ -2952,7 +3027,6 @@ return {
["#% increased Rarity of Items found during any Flask Effect"] = { { isScalable = true } },
["#% increased Rarity of Items found from Slain Unique Enemies"] = { { isScalable = true } },
["#% increased Rarity of Items found in Nightmare"] = { { isScalable = false } },
- ["#% increased Rarity of Items found in this Area"] = { { isScalable = true } },
["#% increased Rarity of Items found per Socket filled"] = { { isScalable = true } },
["#% increased Rarity of Items found when on Low Life"] = { { isScalable = true } },
["#% increased Rarity of Items found while Phasing"] = { { isScalable = true } },
@@ -2981,8 +3055,13 @@ return {
["#% increased Rejuvenation Totem Aura Effect"] = { { isScalable = true } },
["#% increased Relevancy of Items Found"] = { { isScalable = true } },
["#% increased Reload Speed"] = { { isScalable = true } },
+ ["#% increased Reservation Efficiency of Companion Skills"] = { { isScalable = true } },
["#% increased Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true } },
+ ["#% increased Reservation Efficiency of Herald Skills"] = { { isScalable = true } },
+ ["#% increased Reservation Efficiency of Minion Skills"] = { { isScalable = true } },
["#% increased Reservation Efficiency of Skills"] = { { isScalable = true } },
+ ["#% increased Reservation Efficiency of Skills which create Undead Minions"] = { { isScalable = true } },
+ ["#% increased Reservation Efficiency of Skills which summon Skeletons"] = { { isScalable = true } },
["#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"] = { { isScalable = true } },
["#% increased Reservation of Banner Skills"] = { { isScalable = true } },
["#% increased Reservation of Curse Aura Skills"] = { { isScalable = true } },
@@ -3034,8 +3113,10 @@ return {
["#% increased Skill Effect Duration while affected by Malevolence"] = { { isScalable = true } },
["#% increased Skill Range"] = { { isScalable = true } },
["#% increased Skill Speed"] = { { isScalable = true } },
+ ["#% increased Skill Speed if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } },
["#% increased Skill Speed while an enemy with an Open Weakness is in your Presence"] = { { isScalable = true } },
["#% increased Slowing Potency of Debuffs on You"] = { { isScalable = true } },
+ ["#% increased Slowing Potency of Debuffs on You if you've used a Charm Recently"] = { { isScalable = true } },
["#% increased Smoke Mine Duration"] = { { isScalable = true } },
["#% increased Socket Connectivity"] = { { isScalable = true } },
["#% increased Soul Gain Prevention Duration"] = { { isScalable = true } },
@@ -3058,6 +3139,8 @@ return {
["#% increased Spell Damage"] = { { isScalable = true } },
["#% increased Spell Damage during any Flask Effect"] = { { isScalable = true } },
["#% increased Spell Damage if Corrupted"] = { { isScalable = true } },
+ ["#% increased Spell Damage if one of your Minions has died Recently"] = { { isScalable = true } },
+ ["#% increased Spell Damage if you have consumed an Elemental Infusion Recently"] = { { isScalable = true } },
["#% increased Spell Damage if you or your Totems have Killed in the past 2 seconds"] = { { isScalable = true } },
["#% increased Spell Damage if you've Blocked Recently"] = { { isScalable = true } },
["#% increased Spell Damage if you've Cast a Spell Recently"] = { { isScalable = true } },
@@ -3067,13 +3150,12 @@ return {
["#% increased Spell Damage per 10 Intelligence"] = { { isScalable = true } },
["#% increased Spell Damage per 10 Spirit"] = { { isScalable = true } },
["#% increased Spell Damage per 10 Strength"] = { { isScalable = true } },
- ["#% increased Spell Damage per 100 Player Maximum Life"] = { { isScalable = true } },
+ ["#% increased Spell Damage per 100 Maximum Life"] = { { isScalable = true } },
["#% increased Spell Damage per 100 maximum Mana"] = { { isScalable = true } },
["#% increased Spell Damage per 16 Dexterity"] = { { isScalable = true } },
["#% increased Spell Damage per 16 Intelligence"] = { { isScalable = true } },
["#% increased Spell Damage per 16 Strength"] = { { isScalable = true } },
["#% increased Spell Damage per 5% Chance to Block Attack Damage"] = { { isScalable = true } },
- ["#% increased Spell Damage per 5% Chance to Block Spell Damage"] = { { isScalable = true } },
["#% increased Spell Damage per 500 Maximum Mana"] = { { isScalable = true } },
["#% increased Spell Damage per Level"] = { { isScalable = true } },
["#% increased Spell Damage per Power Charge"] = { { isScalable = true } },
@@ -3089,12 +3171,16 @@ return {
["#% increased Spell Damage while wielding a Melee Weapon"] = { { isScalable = true } },
["#% increased Spell Damage while wielding a Staff"] = { { isScalable = true } },
["#% increased Spell Damage while you have Arcane Surge"] = { { isScalable = true } },
+ ["#% increased Spell Damage with Spells that cost Life"] = { { isScalable = true } },
["#% increased Spell Elemental Damage"] = { { isScalable = true } },
["#% increased Spell Fire Damage"] = { { isScalable = true } },
["#% increased Spell Physical Damage"] = { { isScalable = true } },
["#% increased Spell damage for each 200 total Mana you have Spent Recently"] = { { isScalable = true } },
["#% increased Spirit"] = { { isScalable = true } },
["#% increased Spirit Offering Duration"] = { { isScalable = true } },
+ ["#% increased Spirit Reservation Efficiency of Skills"] = { { isScalable = true } },
+ ["#% increased Spirit Reservation Efficiency of Skills per 20 Tribute"] = { { isScalable = true } },
+ ["#% increased Spirit if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased Spirit per socketed Grand Spectrum"] = { { isScalable = true } },
["#% increased Split Arrow Critical Hit Chance"] = { { isScalable = true } },
["#% increased Split Arrow Damage"] = { { isScalable = true } },
@@ -3112,9 +3198,11 @@ return {
["#% increased Storm Rain Damage"] = { { isScalable = true } },
["#% increased Strength"] = { { isScalable = true } },
["#% increased Strength Requirement"] = { { isScalable = true } },
+ ["#% increased Strength, Dexterity or Intelligence"] = { { isScalable = true } },
["#% increased Stun Buildup"] = { { isScalable = true } },
["#% increased Stun Buildup against Enemies that are on Low Life"] = { { isScalable = true } },
["#% increased Stun Buildup against enemies within 2 metres"] = { { isScalable = true } },
+ ["#% increased Stun Buildup per 10 Tribute"] = { { isScalable = true } },
["#% increased Stun Buildup with Maces"] = { { isScalable = true } },
["#% increased Stun Buildup with Melee Damage"] = { { isScalable = true } },
["#% increased Stun Buildup with Quarterstaves"] = { { isScalable = true } },
@@ -3133,12 +3221,15 @@ return {
["#% increased Stun Recovery per Frenzy Charge"] = { { isScalable = true } },
["#% increased Stun Threshold"] = { { isScalable = true } },
["#% increased Stun Threshold during Empowered Attacks"] = { { isScalable = true } },
+ ["#% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%"] = { { isScalable = true } },
["#% increased Stun Threshold for each time you've been Stunned Recently"] = { { isScalable = true } },
["#% increased Stun Threshold if you haven't been Stunned Recently"] = { { isScalable = true } },
+ ["#% increased Stun Threshold per 25 Tribute"] = { { isScalable = true } },
["#% increased Stun Threshold while Parrying"] = { { isScalable = true } },
["#% increased Stun Threshold while on Full Life"] = { { isScalable = true } },
["#% increased Stun and Block Recovery per Fortification"] = { { isScalable = true } },
["#% increased Summon Reaper Cooldown Recovery Rate"] = { { isScalable = true } },
+ ["#% increased Surrounded Area of Effect"] = { { isScalable = true } },
["#% increased Sweep Area of Effect"] = { { isScalable = true } },
["#% increased Sweep Damage"] = { { isScalable = true } },
["#% increased Tasalio's Ire per Fish caught"] = { { isScalable = true } },
@@ -3150,6 +3241,8 @@ return {
["#% increased Thorns Critical Hit Chance"] = { { isScalable = true } },
["#% increased Thorns damage"] = { { isScalable = true } },
["#% increased Thorns damage if you've Blocked Recently"] = { { isScalable = true } },
+ ["#% increased Thorns damage if you've consumed an Endurance Charge Recently"] = { { isScalable = true } },
+ ["#% increased Thorns damage per 10 Tribute"] = { { isScalable = true } },
["#% increased Tornado Area of Effect"] = { { isScalable = true } },
["#% increased Tornado Damage"] = { { isScalable = true } },
["#% increased Tornado Shot Critical Hit Chance"] = { { isScalable = true } },
@@ -3180,11 +3273,9 @@ return {
["#% increased Unarmed Attack Speed with Melee Skills"] = { { isScalable = true } },
["#% increased Unearth Cast Speed"] = { { isScalable = true } },
["#% increased Unearth Damage"] = { { isScalable = true } },
- ["#% increased Unveiled Modifier magnitudes"] = { { isScalable = false } },
["#% increased Vaal Skill Critical Hit Chance"] = { { isScalable = true } },
["#% increased Vaal Skill Effect Duration"] = { { isScalable = true } },
["#% increased Valako's Aid per Stormy Day"] = { { isScalable = true } },
- ["#% increased Valour gained"] = { { isScalable = true } },
["#% increased Vampiric Link Duration"] = { { isScalable = true } },
["#% increased Vengeance Damage"] = { { isScalable = true } },
["#% increased Vigilant Strike Damage"] = { { isScalable = true } },
@@ -3194,6 +3285,7 @@ return {
["#% increased Visibility to Enemies"] = { { isScalable = true } },
["#% increased Volatile Dead Cast Speed"] = { { isScalable = true } },
["#% increased Volatile Dead Damage"] = { { isScalable = true } },
+ ["#% increased Volatility Explosion delay"] = { { isScalable = true } },
["#% increased Voltaxic Burst Area of Effect"] = { { isScalable = true } },
["#% increased Voltaxic Burst Damage"] = { { isScalable = true } },
["#% increased Vortex Area of Effect"] = { { isScalable = true } },
@@ -3206,6 +3298,7 @@ return {
["#% increased Warcry Cooldown Recovery Rate"] = { { isScalable = true } },
["#% increased Warcry Duration"] = { { isScalable = true } },
["#% increased Warcry Speed"] = { { isScalable = true } },
+ ["#% increased Warcry Speed per 25 Tribute"] = { { isScalable = true } },
["#% increased Ward"] = { { isScalable = true } },
["#% increased Ward during Effect"] = { { isScalable = true } },
["#% increased Warlord's Mark Curse Effect"] = { { isScalable = true } },
@@ -3216,9 +3309,11 @@ return {
["#% increased Whirling Blades Damage"] = { { isScalable = true } },
["#% increased Wild Strike Area of Effect"] = { { isScalable = true } },
["#% increased Wild Strike Damage"] = { { isScalable = true } },
+ ["#% increased Withered Magnitude"] = { { isScalable = true } },
["#% increased amount Leeched"] = { { isScalable = true } },
["#% increased amount of Chests"] = { { isScalable = true } },
["#% increased amount of Life Leeched"] = { { isScalable = true } },
+ ["#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } },
["#% increased amount of Magic Chests"] = { { isScalable = true } },
["#% increased amount of Mana Leeched"] = { { isScalable = true } },
["#% increased amount of Rare Chests"] = { { isScalable = true } },
@@ -3229,8 +3324,6 @@ return {
["#% increased bonuses gained from right Equipped Ring"] = { { isScalable = true } },
["#% increased chance of Ritual Altars with Special Rewards"] = { { isScalable = true } },
["#% increased chance to Blind"] = { { isScalable = true } },
- ["#% increased chance to Deflect"] = { { isScalable = true } },
- ["#% increased chance to Ignite"] = { { isScalable = true } },
["#% increased chance to Maim"] = { { isScalable = true } },
["#% increased chance to Poison"] = { { isScalable = true } },
["#% increased chance to Poison on Hit against Enemies that are not Poisoned"] = { { isScalable = true } },
@@ -3239,15 +3332,22 @@ return {
["#% increased chance to catch Boots"] = { { isScalable = true } },
["#% increased chance to catch a Divine Orb"] = { { isScalable = true } },
["#% increased chance to inflict Ailments"] = { { isScalable = true } },
+ ["#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting"] = { { isScalable = true } },
+ ["#% increased chance to inflict Ailments against Enemies with Exposure"] = { { isScalable = true } },
["#% increased chance to inflict Ailments against Rare or Unique Enemies"] = { { isScalable = true } },
["#% increased chance to inflict Ailments with Projectiles"] = { { isScalable = true } },
["#% increased chance to inflict Bleeding"] = { { isScalable = true } },
+ ["#% increased damage against Immobilised Enemies"] = { { isScalable = true } },
+ ["#% increased damage against Undead Enemies"] = { { isScalable = true } },
+ ["#% increased damage taken per 10 Tribute"] = { { isScalable = true } },
+ ["#% increased duration of Ailments you inflict against Cursed Enemies"] = { { isScalable = true } },
["#% increased duration of Ground Surfaces created by Supported Skills"] = { { isScalable = true } },
["#% increased effect"] = { { isScalable = true } },
["#% increased effect of Arcane Surge on you"] = { { isScalable = true } },
["#% increased effect of Arcane Surge on you per\n200 Mana spent Recently, up to 50%"] = { { isScalable = true } },
["#% increased effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you, up to a maximum of 40%"] = { { isScalable = true } },
["#% increased effect of Arcane Surge on you while affected by Clarity"] = { { isScalable = true } },
+ ["#% increased effect of Archon Buffs on you"] = { { isScalable = true } },
["#% increased effect of Buffs on you"] = { { isScalable = true } },
["#% increased effect of Chill and Shock on you"] = { { isScalable = true } },
["#% increased effect of Curses on Monsters"] = { { isScalable = true } },
@@ -3258,12 +3358,10 @@ return {
["#% increased effect of Fully Broken Armour"] = { { isScalable = true } },
["#% increased effect of Herald Buffs on you"] = { { isScalable = true } },
["#% increased effect of Hinder on you"] = { { isScalable = true } },
- ["#% increased effect of Ignite on you"] = { { isScalable = true } },
["#% increased effect of Incision"] = { { isScalable = true } },
["#% increased effect of Non-Curse Auras from your Skills on your Minions"] = { { isScalable = true } },
["#% increased effect of Non-Curse Auras per 10 Devotion"] = { { isScalable = true } },
["#% increased effect of Non-Damaging Ailments on you during Effect of any Life Flask"] = { { isScalable = true } },
- ["#% increased effect of Offerings"] = { { isScalable = true } },
["#% increased effect of Onslaught on Players and Monsters"] = { { isScalable = true } },
["#% increased effect of Shock on you"] = { { isScalable = true } },
["#% increased effect of Shrine Buffs on you"] = { { isScalable = true } },
@@ -3281,10 +3379,12 @@ return {
["#% increased maximum Dash Distance with Unarmed Attack Skills"] = { { isScalable = true } },
["#% increased maximum Energy Shield"] = { { isScalable = true } },
["#% increased maximum Energy Shield if Corrupted"] = { { isScalable = true } },
+ ["#% increased maximum Energy Shield per 10 Tribute"] = { { isScalable = true } },
["#% increased maximum Life"] = { { isScalable = true } },
["#% increased maximum Life and reduced Fire Resistance"] = { { isScalable = true } },
["#% increased maximum Life if Corrupted"] = { { isScalable = true } },
["#% increased maximum Life if there are no Life Modifiers on Equipped Body Armour"] = { { isScalable = true } },
+ ["#% increased maximum Life if you have at least 100 Tribute"] = { { isScalable = true } },
["#% increased maximum Life, Mana and Energy Shield"] = { { isScalable = true } },
["#% increased maximum Mana"] = { { isScalable = true } },
["#% increased maximum Mana and reduced Cold Resistance"] = { { isScalable = true } },
@@ -3292,7 +3392,6 @@ return {
["#% increased number of Explosives"] = { { isScalable = true } },
["#% increased number of Monster Packs"] = { { isScalable = true } },
["#% increased number of Rare Expedition Monsters in Area"] = { { isScalable = true } },
- ["#% increased number of Rare Monsters"] = { { isScalable = true } },
["#% increased penalty to Accuracy Rating at range"] = { { isScalable = true } },
["#% increased quantity of Artifacts dropped by Monsters"] = { { isScalable = true } },
["#% increased raising of Alert Level"] = { { isScalable = true } },
@@ -3359,10 +3458,10 @@ return {
["#% less Effect of your Curses"] = { { isScalable = true, formats = { "negate" } } },
["#% less Elemental Ailment Buildup while Unbound"] = { { isScalable = true, formats = { "negate" } } },
["#% less Elemental Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less Elemental Damage per 30 Resonance of any type"] = { { isScalable = true, formats = { "negate" } } },
["#% less Elemental Damage per Inspiration Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% less Elemental Damage taken per Raised Zombie"] = { { isScalable = true, formats = { "negate" } } },
["#% less Elemental Damage while Unbound"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less Elemental Damage with Attacks per 30\nResonance of any type"] = { { isScalable = true, formats = { "negate" } } },
["#% less Energy Shield Recharge Rate"] = { { isScalable = true, formats = { "negate" } } },
["#% less Evasion Rating"] = { { isScalable = true, formats = { "negate" } } },
["#% less Evasion Rating while on full Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
@@ -3377,12 +3476,14 @@ return {
["#% less Knockback Distance against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% less Knockback Distance for Blocked Hits"] = { { isScalable = true, formats = { "negate" } } },
["#% less Life"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less Life Recovered"] = { { isScalable = true, formats = { "negate" } } },
["#% less Life Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } },
["#% less Lightning Damage taken"] = { { isScalable = true, formats = { "negate" } } },
["#% less Magnitude of Chill you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% less Magnitude of Ignite you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% less Magnitude of Ignites inflicted with this Weapon"] = { { isScalable = true, formats = { "negate" } } },
["#% less Magnitude of Non-Damaging Ailments you inflict"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less Magnitude of Poison inflicted"] = { { isScalable = true, formats = { "negate" } } },
["#% less Magnitude of Shock you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% less Main Hand attack speed"] = { { isScalable = true, formats = { "negate" } } },
["#% less Mana Cost of Skills"] = { { isScalable = true, formats = { "negate" } } },
@@ -3411,17 +3512,16 @@ return {
["#% less Spell Damage if you've been Stunned while Casting Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% less Stun Buildup against Enemies on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% less Stun Buildup with Critical Hits"] = { { isScalable = true } },
+ ["#% less Stun Buildup with Lightning Damage"] = { { isScalable = true } },
["#% less Stun Buildup with Melee Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less Stun Duration with Two Handed Weapons"] = { { isScalable = true, formats = { "negate" } } },
["#% less Totem Damage per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } },
["#% less Ward during Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less chance to Evade Attack Hits while not on full Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less chance to Evade Attacks during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less chance to Evade Melee Attacks"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less chance to Evade Melee Attacks during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
- ["#% less chance to Evade Projectile Attacks during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
["#% less chance to inflict Elemental Ailments while Unbound"] = { { isScalable = true, formats = { "negate" } } },
["#% less damage against enemies with an Open Weakness"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less damage with Hits for Shockwaves originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less damage with Hits for blasts originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less damage with Hits for explosions originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% less damage with Hits for pulses originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } },
["#% less effect of Curses on Monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% less maximum Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% less maximum Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -3499,10 +3599,10 @@ return {
["#% more Effect of your Curses"] = { { isScalable = true } },
["#% more Elemental Ailment Buildup while Unbound"] = { { isScalable = true } },
["#% more Elemental Damage"] = { { isScalable = true } },
+ ["#% more Elemental Damage per 30 Resonance of any type"] = { { isScalable = true } },
["#% more Elemental Damage per Inspiration Charge"] = { { isScalable = true } },
["#% more Elemental Damage taken per Raised Zombie"] = { { isScalable = true } },
["#% more Elemental Damage while Unbound"] = { { isScalable = true } },
- ["#% more Elemental Damage with Attacks per 30\nResonance of any type"] = { { isScalable = true } },
["#% more Energy Shield Recharge Rate"] = { { isScalable = true } },
["#% more Evasion Rating"] = { { isScalable = true } },
["#% more Evasion Rating while on full Energy Shield"] = { { isScalable = true } },
@@ -3517,12 +3617,14 @@ return {
["#% more Knockback Distance against Unique Enemies"] = { { isScalable = true } },
["#% more Knockback Distance for Blocked Hits"] = { { isScalable = true } },
["#% more Life"] = { { isScalable = true } },
+ ["#% more Life Recovered"] = { { isScalable = true } },
["#% more Life Recovery from Flasks"] = { { isScalable = true } },
["#% more Lightning Damage taken"] = { { isScalable = true } },
["#% more Magnitude of Chill you inflict"] = { { isScalable = true } },
["#% more Magnitude of Ignite you inflict"] = { { isScalable = true } },
["#% more Magnitude of Ignites inflicted with this Weapon"] = { { isScalable = true } },
["#% more Magnitude of Non-Damaging Ailments you inflict"] = { { isScalable = true } },
+ ["#% more Magnitude of Poison inflicted"] = { { isScalable = true } },
["#% more Magnitude of Shock you inflict"] = { { isScalable = true } },
["#% more Main Hand attack speed"] = { { isScalable = true } },
["#% more Mana Cost of Skills"] = { { isScalable = true } },
@@ -3560,18 +3662,17 @@ return {
["#% more Spell Damage if you've been Stunned while Casting Recently"] = { { isScalable = true } },
["#% more Stun Buildup against Enemies on Full Life"] = { { isScalable = true } },
["#% more Stun Buildup with Critical Hits"] = { { isScalable = true } },
+ ["#% more Stun Buildup with Lightning Damage"] = { { isScalable = true } },
["#% more Stun Buildup with Melee Damage"] = { { isScalable = true } },
- ["#% more Stun Duration with Two Handed Weapons"] = { { isScalable = true } },
["#% more Totem Damage per Summoned Totem"] = { { isScalable = true } },
["#% more Unique Items found in Area"] = { { isScalable = true } },
["#% more Ward during Effect"] = { { isScalable = true } },
- ["#% more chance to Evade Attack Hits while not on full Energy Shield"] = { { isScalable = true } },
- ["#% more chance to Evade Attacks during Onslaught"] = { { isScalable = true } },
- ["#% more chance to Evade Melee Attacks"] = { { isScalable = true } },
- ["#% more chance to Evade Melee Attacks during Onslaught"] = { { isScalable = true } },
- ["#% more chance to Evade Projectile Attacks during Onslaught"] = { { isScalable = true } },
["#% more chance to inflict Elemental Ailments while Unbound"] = { { isScalable = true } },
["#% more damage against enemies with an Open Weakness"] = { { isScalable = true } },
+ ["#% more damage with Hits for Shockwaves originating from a Unique enemy"] = { { isScalable = true } },
+ ["#% more damage with Hits for blasts originating from a Unique enemy"] = { { isScalable = true } },
+ ["#% more damage with Hits for explosions originating from a Unique enemy"] = { { isScalable = true } },
+ ["#% more damage with Hits for pulses originating from a Unique enemy"] = { { isScalable = true } },
["#% more effect of Curses on Monsters"] = { { isScalable = true } },
["#% more maximum Energy Shield"] = { { isScalable = true } },
["#% more maximum Life"] = { { isScalable = true } },
@@ -3581,11 +3682,12 @@ return {
["#% more minimum Physical Attack damage with Critical Hits"] = { { isScalable = true } },
["#% more raising of Alert Level"] = { { isScalable = true } },
["#% more raising of Alert Level from opening Reward Chests"] = { { isScalable = true } },
- ["#% of Armour also applies to Chaos Damage taken from Hits"] = { { isScalable = true } },
- ["#% of Armour also applies to Cold Damage taken from Hits"] = { { isScalable = true } },
- ["#% of Armour also applies to Fire Damage taken from Hits"] = { { isScalable = true } },
- ["#% of Armour also applies to Lightning Damage taken from Hits"] = { { isScalable = true } },
- ["#% of Armour applies to Elemental Damage"] = { { isScalable = true } },
+ ["#% of Armour also applies to Chaos Damage"] = { { isScalable = true } },
+ ["#% of Armour also applies to Cold Damage"] = { { isScalable = true } },
+ ["#% of Armour also applies to Elemental Damage"] = { { isScalable = true } },
+ ["#% of Armour also applies to Elemental Damage if you have at least 100 Tribute"] = { { isScalable = true } },
+ ["#% of Armour also applies to Fire Damage"] = { { isScalable = true } },
+ ["#% of Armour also applies to Lightning Damage"] = { { isScalable = true } },
["#% of Burning Arrow Physical Damage gained as Extra Fire Damage"] = { { isScalable = true } },
["#% of Chaos Damage is taken from Mana before Life"] = { { isScalable = true } },
["#% of Chaos Damage taken as Fire Damage"] = { { isScalable = true } },
@@ -3617,6 +3719,8 @@ return {
["#% of Damage taken Recouped as Mana if you've Warcried Recently"] = { { isScalable = true } },
["#% of Damage taken bypasses Energy Shield"] = { { isScalable = true } },
["#% of Damage taken bypasses Ward"] = { { isScalable = true } },
+ ["#% of Damage taken during effect Recouped as Life"] = { { isScalable = true } },
+ ["#% of Damage taken from Deflected Hits Recouped as Life"] = { { isScalable = true } },
["#% of Damage taken from Mana before Life while affected by Clarity"] = { { isScalable = true } },
["#% of Damage taken from Stunning Hits is Recovered as Energy Shield"] = { { isScalable = true } },
["#% of Damage taken from Stunning Hits is Recovered as Life"] = { { isScalable = true } },
@@ -3653,7 +3757,9 @@ return {
["#% of Infernal Blow Physical Damage gained as Extra Fire Damage"] = { { isScalable = true } },
["#% of Infernal Flame lost per second if none was gained in the past 2 seconds"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["#% of Leech is Instant"] = { { isScalable = true } },
+ ["#% of Life Leech is Instant if you have at least 200 Tribute"] = { { isScalable = true } },
["#% of Life Leech is Instant per Defiance"] = { { isScalable = true } },
+ ["#% of Life Leeched from targets affected by Abyssal Wasting is Instant"] = { { isScalable = true } },
["#% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"] = { { isScalable = true } },
["#% of Life Recovery from Flasks is applied to nearby Allies instead of You"] = { { isScalable = true } },
["#% of Lightning Damage Converted to Chaos Damage"] = { { isScalable = true } },
@@ -3665,8 +3771,10 @@ return {
["#% of Lightning Damage taken Recouped as Life"] = { { isScalable = true } },
["#% of Lightning Damage taken as Fire Damage"] = { { isScalable = true } },
["#% of Lightning Damage with Attack Skills Converted to Chaos Damage"] = { { isScalable = true } },
+ ["#% of Mana Leeched from targets affected by Abyssal Wasting is Instant"] = { { isScalable = true } },
["#% of Maximum Energy Shield taken as Physical Damage on Minion Death"] = { { isScalable = true } },
["#% of Maximum Life Converted to Energy Shield"] = { { isScalable = true } },
+ ["#% of Maximum Life Converted to Energy Shield per 20 Tribute"] = { { isScalable = true } },
["#% of Maximum Life taken as Chaos Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["#% of Maximum Life taken as Physical Damage on Minion Death"] = { { isScalable = true } },
["#% of Maximum Life taken per second as Chaos Damage"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
@@ -3676,6 +3784,7 @@ return {
["#% of Monster Physical Damage is Converted to Fire"] = { { isScalable = true } },
["#% of Monster Physical Damage is Converted to Lightning"] = { { isScalable = true } },
["#% of Non Chaos Damage is taken as Chaos damage"] = { { isScalable = true } },
+ ["#% of Parry Physical Damage Converted to Cold Damage"] = { { isScalable = true } },
["#% of Physical Attack Damage Leeched as Life per Red Socket"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% of Physical Attack Damage Leeched as Mana per Blue Socket"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% of Physical Damage Converted to Chaos Damage"] = { { isScalable = true } },
@@ -3707,22 +3816,28 @@ return {
["#% of Physical Damage from Hits with this Weapon is Converted to a random Element"] = { { isScalable = true } },
["#% of Physical Damage is taken from Mana before Life"] = { { isScalable = true } },
["#% of Physical Damage prevented Recouped as Life"] = { { isScalable = true } },
+ ["#% of Physical Damage prevented Recouped as Life if you have at least 100 Tribute"] = { { isScalable = true } },
["#% of Physical Damage prevented from Hits in the past\n10 seconds is Regenerated as Life per second"] = { { isScalable = true, formats = { "deciseconds_to_seconds" } } },
["#% of Physical Damage taken Recouped as Life"] = { { isScalable = true } },
["#% of Physical Damage taken as Chaos Damage"] = { { isScalable = true } },
["#% of Physical Damage taken as Fire Damage"] = { { isScalable = true } },
["#% of Physical Damage taken as Lightning Damage"] = { { isScalable = true } },
+ ["#% of Physical Damage taken as Lightning while Active Blocking"] = { { isScalable = true } },
["#% of Physical Damage taken bypasses Energy Shield"] = { { isScalable = true } },
["#% of Physical damage from Hits taken as Lightning damage"] = { { isScalable = true } },
["#% of Recovery applied Instantly"] = { { isScalable = true } },
["#% of Skill Mana Costs Converted to Life Costs"] = { { isScalable = true } },
+ ["#% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"] = { { isScalable = true } },
["#% of Spell Damage Leeched as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% of Spell Mana Cost Converted to Life Cost"] = { { isScalable = true } },
["#% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"] = { { isScalable = true } },
["#% of Thorns Damage Leeched as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
+ ["#% of Thorns Damage Leeched as Life if you have at least 100 Tribute"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% of Toxic Rain Physical Damage gained as Extra Chaos Damage"] = { { isScalable = true } },
["#% of charges used by Charms granted to your Life Flasks"] = { { isScalable = true } },
["#% of damage Blocked is Recouped as Mana"] = { { isScalable = true } },
+ ["#% of damage taken Recouped as Life per 10 Tribute"] = { { isScalable = true } },
+ ["#% of damage taken Recouped as Mana per 10 Tribute"] = { { isScalable = true } },
["#% of maximum Energy Shield Lost per minute"] = { { isScalable = true, formats = { "negate" } } },
["#% of maximum Energy Shield Recharged per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["#% of maximum Life Regenerated per Second if you've dealt a Critical Hit in the past 8 seconds"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
@@ -3733,15 +3848,20 @@ return {
["#% reduced Absolution Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Abyssal Cry Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Accuracy Rating against Enemies affected by Abyssal Wasting"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating against Marked Enemy"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating against Rare or Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating at Close Range"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating if you haven't Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating if you've dealt a Critical Hit in the past 8 seconds"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Accuracy Rating per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Accuracy Rating per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Accuracy Rating while Surrounded"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Accuracy Rating while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating while you have Onslaught"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating with Axes"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Accuracy Rating with Bows"] = { { isScalable = true, formats = { "negate" } } },
@@ -3759,9 +3879,8 @@ return {
["#% reduced Accuracy with Area Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Action Speed"] = { { isScalable = true } },
["#% reduced Adaptation Duration"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Adaptation Rating"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Adaptation Rating during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Aftershock Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ailment and Stun Threshold while Surrounded"] = { { isScalable = true } },
["#% reduced Alchemist's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ambush Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Amount Recovered"] = { { isScalable = true, formats = { "negate" } } },
@@ -3772,6 +3891,7 @@ return {
["#% reduced Ancestral Warchief Totem Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Animate Weapon Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Arc Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Archon Buff duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Arctic Armour Buff Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Area Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Area Damage per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } },
@@ -3820,6 +3940,7 @@ return {
["#% reduced Armour and Evasion Rating"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour and Evasion Rating during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Armour and Evasion Rating per Summoned Totem in your Presence"] = { { isScalable = true } },
["#% reduced Armour and Evasion Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour and Evasion Rating while Fortified"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour and Evasion Rating while Leeching"] = { { isScalable = true, formats = { "negate" } } },
@@ -3828,10 +3949,12 @@ return {
["#% reduced Armour from Equipped Helmet and Gloves"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour if you have been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Armour if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour if you haven't Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour if you've Hit an Enemy with a Melee Attack Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour if you've consumed an Endurance Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Armour per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour per 50 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour per Defiance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour per Red Socket on Main Hand Weapon"] = { { isScalable = true, formats = { "negate" } } },
@@ -3841,6 +3964,7 @@ return {
["#% reduced Armour while not Ignited, Frozen or Shocked"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour while stationary"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Armour, Evasion or Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Arrow Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Aspect of the Avian Buff Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Aspect of the Spider Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -3851,6 +3975,7 @@ return {
["#% reduced Attack Area of Effect while wielding a Quarterstaff"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Cold Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Cold Damage while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Critical Hit Chance per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Critical Hit Chance while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage against Bleeding Enemies"] = { { isScalable = true, formats = { "negate" } } },
@@ -3858,15 +3983,18 @@ return {
["#% reduced Attack Damage against Rare or Unique"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage if Corrupted"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Damage if you have been Heavy Stunned Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage if you've Cast a Spell Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage if your other Ring is a Shaper Item"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Damage per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per 16 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per 450 Evasion Rating"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per 5% Chance to Block Attack Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per 500 Maximum Mana"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Attack Damage per 75 Armour or Evasion Rating on Shield"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage per Level"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Damage per Summoned Totem in your Presence"] = { { isScalable = true } },
["#% reduced Attack Damage when on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage while Channelling"] = { { isScalable = true, formats = { "negate" } } },
@@ -3878,6 +4006,7 @@ return {
["#% reduced Attack Damage while in Blood Stance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage while not on Low Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage while you have an Ally in your Presence"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Damage while you have no Life Flask uses left"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage with Main Hand"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage with Main Hand while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Damage with Off Hand"] = { { isScalable = true, formats = { "negate" } } },
@@ -3896,12 +4025,14 @@ return {
["#% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed if you've Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed if you've been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Attack Speed if you've cast a Mark Spell Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed if you've changed Stance Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed if you've successfully Parried Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Speed if you've used a Life Flask Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Speed if you've used a Mark Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed per 10 Dexterity"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed per 20 Dexterity"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Speed per 20 Spirit"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed per 250 Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed per Overcapped Block chance"] = { { isScalable = true, formats = { "negate" } } },
@@ -3919,9 +4050,9 @@ return {
["#% reduced Attack Speed while affected by Precision"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed while holding a Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed while in Sand Stance"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Attack Speed while in the Presence of your Companion"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed while not on Low Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed while on Full Mana"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack Speed while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed with Axes"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed with Bows"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed with Claws"] = { { isScalable = true, formats = { "negate" } } },
@@ -3940,6 +4071,7 @@ return {
["#% reduced Attack Speed with Two Handed Melee Weapons"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack Speed with Wands"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack and Cast Speed during Effect of any Flask"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed during Effect of any Mana Flask"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed during Onslaught"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -3974,6 +4106,7 @@ return {
["#% reduced Attack and Cast Speed with Lightning Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed with Physical Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack and Cast Speed with Shield Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Attack damage while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack, Cast and Movement Speed during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attack, Cast and Movement Speed while you do not have Iron Reflexes"] = { { isScalable = true, formats = { "negate" } } },
@@ -3982,9 +4115,14 @@ return {
["#% reduced Attributes"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attributes per Socket filled"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Attributes per allocated Keystone"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Aura Magnitudes if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ball Lightning Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ball Lightning Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ball Lightning Projectile"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ballista Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ballista Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ballista Immobilisation buildup"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ballista damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Barrage Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Barrage Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Battlemage's Cry Buff Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -4000,7 +4138,6 @@ return {
["#% reduced Bladefall Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bladefall Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bleeding Duration"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Bleeding Duration on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bleeding Duration on you during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bleeding Duration per 12 Intelligence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Blight Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -4011,6 +4148,8 @@ return {
["#% reduced Blind duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Block Recovery"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Block chance"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Block chance if you have at least 100 Tribute"] = { { isScalable = true } },
+ ["#% reduced Block chance while Surrounded"] = { { isScalable = true } },
["#% reduced Blueprint Revealing Cost"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bodyswap Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Bodyswap Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -4041,6 +4180,8 @@ return {
["#% reduced Cast Speed if you've Attacked Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed if you've Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
+ ["#% reduced Cast Speed if you've used a Mana Flask Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cast Speed per 20 Spirit"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed when on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -4048,6 +4189,7 @@ return {
["#% reduced Cast Speed while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed while Ignited"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed while holding a Shield"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cast Speed while on Full Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed while wielding a Bow"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cast Speed with Brand Skills"] = { { isScalable = true, formats = { "negate" } } },
@@ -4071,6 +4213,7 @@ return {
["#% reduced Chaos Damage taken"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chaos Damage taken over time"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chaos Damage while affected by Herald of Agony"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Chaos Damage while affected by Herald of Plague"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chaos Damage with Attack Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chaos Damage with Spell Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chaos Damage with Weapons"] = { { isScalable = true, formats = { "negate" } } },
@@ -4083,6 +4226,7 @@ return {
["#% reduced Charm Charges gained"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Charm Charges used"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Charm Effect Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Charm Effect Duration per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chill Duration on Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chill Duration on Enemies when in Off Hand"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Chill Duration on you"] = { { isScalable = true } },
@@ -4136,9 +4280,13 @@ return {
["#% reduced Cooldown Recovery Rate of Movement Skills used while affected by Haste"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cooldown Recovery Rate of Travel Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cooldown Recovery Rate of Travel Skills per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cooldown Recovery Rate per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cooldown Recovery Rate per Brand"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cooldown Recovery Rate per Power Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Corrupting Fever Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cost Efficiency of Attacks"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Cost Efficiency of Skills if you've consumed a Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cost of Arc and Crackling Lance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cost of Aura Skills that summon Totems"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cost of Building and Upgrading Towers"] = { { isScalable = true, formats = { "negate" } } },
@@ -4170,11 +4318,14 @@ return {
["#% reduced Critical Hit Chance against Enemies on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Enemies that are affected\nby no Elemental Ailments"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Enemies that have entered your Presence Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Critical Hit Chance against Humanoids"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Critical Hit Chance against Immobilised enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Critical Hit Chance against Marked Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Marked Enemy"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Poisoned Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Shocked Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance against Taunted Enemies"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Critical Hit Chance against enemies with Lightning Exposure"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Critical Hit Chance against enemies with Exposure"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance for Attacks"] = { { isScalable = true, formats = { "negate" } } },
@@ -4189,6 +4340,7 @@ return {
["#% reduced Critical Hit Chance if you haven't Crit Recently"] = { { isScalable = false, formats = { "negate" } } },
["#% reduced Critical Hit Chance if you haven't dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance if you haven't gained a Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Critical Hit Chance if you've Triggered a Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance if you've been Shocked Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance per 10 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Critical Hit Chance per Adaptation to Lightning"] = { { isScalable = true, formats = { "negate" } } },
@@ -4233,7 +4385,11 @@ return {
["#% reduced Critical Spell Damage Bonus"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Crossbow Reload Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Culling Strike Threshold"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Culling Strike Threshold against Immobilised Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Culling Strike Threshold against Rare or Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Curse Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Curse Duration if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Curse Duration per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Curse Magnitudes"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Curse Magnitudes if you've spent 200 total Mana Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Cyclone Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
@@ -4245,6 +4401,7 @@ return {
["#% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage Taken from Hits from Labyrinth Traps\n#% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"] = { { isScalable = true, formats = { "negate" } }, { isScalable = true, formats = { "negate" } } },
["#% reduced Damage against Dazed Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Damage against Demons"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage against Enemies with Fully Broken Armour"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage for each Hazard triggered Recently, up to 50%"] = { { isScalable = true, formats = { "negate" } } },
@@ -4266,6 +4423,7 @@ return {
["#% reduced Damage if you've Shattered an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage if you've Triggered a Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage if you've been Ignited Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Damage if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage if you've dealt a Critical Hit in the past 8 seconds"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage if you've killed a Bleeding Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
@@ -4306,6 +4464,7 @@ return {
["#% reduced Damage taken from Skeletons"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage taken from Taunted Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage taken from Trap or Mine Hits"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Damage taken from Volatility if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage taken if Corrupted"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage taken if you Killed a Taunted Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage taken if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
@@ -4338,7 +4497,6 @@ return {
["#% reduced Damage while Shocked"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while affected by a Herald"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while in Blood Stance"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Damage while in the Presence of your Companion"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while not on full Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while on Consecrated Ground"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while on Full Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
@@ -4350,6 +4508,7 @@ return {
["#% reduced Damage while you have a Totem"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while you have an active Charm"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage while you have no Frenzy Charges"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Damage while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Attack Skills while Fortified"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Attack Skills while you have at least 20 Fortification"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Axes"] = { { isScalable = true, formats = { "negate" } } },
@@ -4371,7 +4530,6 @@ return {
["#% reduced Damage with Hits against Burning Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Chilled Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Cursed Enemies"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Damage with Hits against Demons"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Demons during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Enemies affected by Ailments"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Enemies that are on Full Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -4382,6 +4540,7 @@ return {
["#% reduced Damage with Hits against Magic monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Marked Enemy"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Rare and Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Damage with Hits against Rare and Unique Enemies if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Rare monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Shocked Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Damage with Hits against Taunted Enemies"] = { { isScalable = true, formats = { "negate" } } },
@@ -4423,10 +4582,14 @@ return {
["#% reduced Decoy Totem Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences from Equipped Shield per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Defences from Equipped Shield per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Defences while on [LowLife|Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences while wielding a Quarterstaff"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences while you have at least four Linked targets"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Defences while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Deflection Rating"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Deflection Rating while Surrounded"] = { { isScalable = true } },
["#% reduced Demolition speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Desecrate Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Desecrate Duration"] = { { isScalable = true, formats = { "negate" } } },
@@ -4449,17 +4612,21 @@ return {
["#% reduced Dual Strike Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Dual Strike Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Duration of Ailments against Enemies with Exposure"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Ailments inflicted on you per Fortification"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Ailments inflicted while wielding a Bow"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Duration of Ailments on Beasts"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Ailments on Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Ailments on You"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Ailments you inflict while Focused"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Duration of Bleeding on You"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Buffs and Debuffs you create from skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Buffs granted by Shrines in your Maps"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Cold Ailments"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Curses on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Curses on you per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Damaging Ailments on Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Duration of Damaging Ailments per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Elemental Ailments on Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Duration of Fire Ailments"] = { { isScalable = true, formats = { "negate" } } },
@@ -4512,7 +4679,6 @@ return {
["#% reduced Effect of Small Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } },
["#% reduced Effect of Socketed Abyss Jewels"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Effect of Tailwind on you"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Effect of Withered"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Effect of non-Keystone Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } },
["#% reduced Effect of the Buff granted by your Carrion Golems"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Effect of the Buff granted by your Chaos Golems"] = { { isScalable = true, formats = { "negate" } } },
@@ -4568,6 +4734,7 @@ return {
["#% reduced Elemental Damage with Weapons during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Elemental Damage with Weapons per Power Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Elemental Hit Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Elemental Infusion duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Elemental Resistances"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Elemental Weakness Curse Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Elemental Weakness Duration"] = { { isScalable = true, formats = { "negate" } } },
@@ -4576,9 +4743,6 @@ return {
["#% reduced Endurance Charge Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Endurance, Frenzy and Power Charge Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Enduring Cry Buff Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Enemy Block Chance"] = { { isScalable = true } },
- ["#% reduced Enemy Chance to Block Bow Attacks"] = { { isScalable = true } },
- ["#% reduced Enemy Chance to Block Sword Attacks"] = { { isScalable = true } },
["#% reduced Enemy Stun Threshold"] = { { isScalable = true } },
["#% reduced Enemy Stun Threshold during any Flask Effect"] = { { isScalable = true } },
["#% reduced Enemy Stun Threshold while you have at least 500 Strength"] = { { isScalable = true } },
@@ -4589,6 +4753,11 @@ return {
["#% reduced Energy Shield Recharge Rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Energy Shield Recharge Rate during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Energy Shield Recharge Rate if Equipped Amulet has an Evasion Modifier"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Energy Shield Recharge Rate if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Energy Shield Recharge Rate if you've Blocked Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Energy Shield Recharge Rate per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Energy Shield Recharge Rate per 4 Dexterity"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Energy Shield Recharge Rate while affected by an Archon Buff"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Energy Shield Recovery Rate if you haven't Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Energy Shield Recovery Rate if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Energy Shield Recovery Rate while affected by Discipline"] = { { isScalable = true, formats = { "negate" } } },
@@ -4610,22 +4779,25 @@ return {
["#% reduced Evasion Rating from Equipped Body Armour"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating from Equipped Helmet and Boots"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if Energy Shield Recharge has started in the past 2 seconds"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Evasion Rating if you have Hit an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if you have been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Evasion Rating if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if you've Cast Dash recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Evasion Rating per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating per 5 Intelligence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating per Green Socket on Main Hand Weapon"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating when on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating while Parrying"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Evasion Rating while Sprinting"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating while Surrounded"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion Rating while you have Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Evasion if you have Hit an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Evasion while Leeching"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Experience Gain for Corrupted Gems"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Experience Gain of Gems"] = { { isScalable = true, formats = { "negate" } } },
@@ -4667,6 +4839,7 @@ return {
["#% reduced Fire Damage if you have used a Cold Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Fire Damage over Time"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Fire Damage per 10% of target's Armour that is Broken"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Fire Damage per 20 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Fire Damage per Endurance Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Fire Damage taken"] = { { isScalable = true, formats = { "negate" } } },
@@ -4714,12 +4887,14 @@ return {
["#% reduced Flamethrower Trap Throwing Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flammability Curse Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flammability Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Flammability Magnitude"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Charges gained"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Charges gained during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Charges gained if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Charges used"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Charges used from Mana Flasks"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Effect Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Flask Effect Duration per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Life Recovery rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask Mana Recovery rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Flask and Charm Charges gained"] = { { isScalable = true, formats = { "negate" } } },
@@ -4732,6 +4907,7 @@ return {
["#% reduced Fortification Duration per 10 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Freeze Buildup"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Freeze Buildup against Ignited enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Freeze Buildup if you've consumed an Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Freeze Buildup with Quarterstaves"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Freeze Duration on Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Freeze Duration on you"] = { { isScalable = true } },
@@ -4776,6 +4952,7 @@ return {
["#% reduced Global Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Global Physical Damage while Frozen"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Global maximum Energy Shield and increased Lightning Resistance"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Glory generation"] = { { isScalable = true } },
["#% reduced Gold found in this Area"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Golem Damage for each Type of Golem you have Summoned"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Golem Damage per Summoned Golem"] = { { isScalable = true, formats = { "negate" } } },
@@ -4784,10 +4961,14 @@ return {
["#% reduced Grenade Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Grenade Detonation Time"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Grenade Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Grenade Projectile Speed"] = { { isScalable = true } },
["#% reduced Ground Slam Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ground Slam Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Guard gained"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Hazard Area of Effect"] = { { isScalable = true } },
["#% reduced Hazard Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Hazard Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Hazard Immobilisation buildup"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Heavy Strike Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Heavy Strike Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Herald of Ash Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -4811,6 +4992,9 @@ return {
["#% reduced Ignite Duration on Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ignite Duration on you"] = { { isScalable = true } },
["#% reduced Ignite Duration on you during Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Ignite Magnitude"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Immobilisation buildup"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Immobilisation buildup against Constructs"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Immortal Call Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Impale Magnitude"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Implicit Modifier magnitudes"] = { { isScalable = false, formats = { "negate" } } },
@@ -4822,7 +5006,6 @@ return {
["#% reduced Infernal Cry Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Infused Blast Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Infused Blast Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Infusion Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Inspiration Charge Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Intelligence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Intelligence Requirement"] = { { isScalable = true, formats = { "negate" } } },
@@ -4840,6 +5023,7 @@ return {
["#% reduced Leap Slam Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Leap Slam Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Leap Slam Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Life Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Cost of Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Flask Charges gained"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovered"] = { { isScalable = true, formats = { "negate" } } },
@@ -4848,11 +5032,12 @@ return {
["#% reduced Life Recovery Rate per 10 Strength on Allocated Passives in Radius"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery Rate while affected by Vitality"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Life Recovery Rate while in the Presence of your Companion"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Life Recovery Rate while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery from Flasks used when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery from Flasks while affected by Vitality"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Life Recovery rate per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Recovery rate per 5% missing Unreserved Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Regeneration Rate while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Regeneration Rate while on Low Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -4860,12 +5045,15 @@ return {
["#% reduced Life Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Regeneration rate during Effect of any Life Flask"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Regeneration rate when on Full Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Life Regeneration rate while Surrounded"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life Reservation of Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life and Mana Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Life and Mana Recovery from Flasks per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life and Mana Recovery from Flasks while you have an active Charm"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Life of Fish caught with this Fishing Rod"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Light Radius"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Light Radius per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Light Radius while Phasing"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Lightning Arrow Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Lightning Arrow Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -4893,7 +5081,9 @@ return {
["#% reduced Lightning Warp Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Lockpicking speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magic Pack Size"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Abyssal Wasting you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Ailments you inflict"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Ailments you inflict against Marked Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Bleeding inflicted with this Weapon"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Bleeding per Rage while wielding an Axe"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Bleeding you inflict"] = { { isScalable = true, formats = { "negate" } } },
@@ -4907,9 +5097,12 @@ return {
["#% reduced Magnitude of Chill you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Chills you inflict while Leeching Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Damaging Ailments you inflict"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Damaging Ailments you inflict per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Damaging Ailments you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Daze"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Ignite against Frozen enemies"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Magnitude of Ignite you inflict"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Ignite if you've consumed an Endurance Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Ignite on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Ignite you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Impales inflicted with Spells"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Impales you inflict on Non-Impaled Enemies"] = { { isScalable = true, formats = { "negate" } } },
@@ -4922,9 +5115,9 @@ return {
["#% reduced Magnitude of Poison you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Poison you inflict on Bleeding Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Poison you inflict per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Magnitude of Poison you inflict while wielding a Claw or Dagger"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Poison you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Poison you inflict with Spell Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Magnitude of Shock if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Shock inflicted by Monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Shock you inflict"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Magnitude of Shock you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } },
@@ -4934,6 +5127,13 @@ return {
["#% reduced Main Hand Attack Damage while wielding two different Weapon Types"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Main Hand Critical Hit Chance per\nMurderous Eye Jewel affecting you"] = { { isScalable = true } },
["#% reduced Mana Cost"] = { { isScalable = true } },
+ ["#% reduced Mana Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency if you have Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency of Curses"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency of Marks"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Cost Efficiency while on Low Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Cost of Attacks"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Cost of Curse Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Cost of Link Skills"] = { { isScalable = true, formats = { "negate" } } },
@@ -4958,6 +5158,7 @@ return {
["#% reduced Mana Recovery Rate while affected by Clarity"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Recovery rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Recovery rate per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate if you have Frozen an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
@@ -4965,18 +5166,18 @@ return {
["#% reduced Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate if you've cast a Spell Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Mana Regeneration Rate per 1% Chance to Block Spell Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate per Fragile Regrowth"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate per Power Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate per Raised Spectre"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate while Phasing"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate while Shocked"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Mana Regeneration Rate while Surrounded"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate while not on Low Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration Rate while stationary"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Regeneration if you've used a Movement Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Reservation Efficiency of Banner Skills"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Mana Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true, formats = { "double" } } },
+ ["#% reduced Mana Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Reservation Efficiency of Herald Skills"] = { { isScalable = true, formats = { "double" } } },
["#% reduced Mana Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Mana Reservation Efficiency of Skills Supported by Spellslinger"] = { { isScalable = true, formats = { "double" } } },
@@ -4993,7 +5194,7 @@ return {
["#% reduced Maximum Life per Abyss Jewel affecting you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Maximum Life per Socket filled"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Maximum Life per socketed Grand Spectrum"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Maximum Mana per 2% Chance to Block Spell Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Maximum Mana if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Maximum Mana per Abyss Jewel affecting you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Maximum Mana per Socket filled"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Maximum number of Summoned Raging Spirits"] = { { isScalable = true, formats = { "negate" } } },
@@ -5065,12 +5266,13 @@ return {
["#% reduced Movement Speed if you've Hit with your Off Hand Weapon Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed if you've Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed if you've Pinned an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Movement Speed if you've cast a Mark Spell Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed if you've successfully Parried Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed if you've thrown a Trap or Mine Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Movement Speed if you've used a Mark Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed per 10 Dexterity on Allocated Passives in Radius"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed do not apply"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed per Chest opened Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed per Endurance Charge"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed per Power Charge"] = { { isScalable = true, formats = { "negate" } } },
@@ -5086,6 +5288,8 @@ return {
["#% reduced Movement Speed while Phasing"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed while Poisoned"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed while Shocked"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Movement Speed while Sprinting"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Movement Speed while Surrounded"] = { { isScalable = true } },
["#% reduced Movement Speed while affected by Grace"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed while affected by a Magic Abyss Jewel"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Movement Speed while affected by an Ailment"] = { { isScalable = true, formats = { "negate" } } },
@@ -5104,11 +5308,12 @@ return {
["#% reduced Off Hand Attack Speed while wielding two different Weapon Types"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Orb of Storms Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Orb of Storms Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Pack size"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Pack size in Nightmare"] = { { isScalable = false, formats = { "negate" } } },
["#% reduced Parried Debuff Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Parried Debuff Duration per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Parried Debuff Magnitude"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Parry Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Parry Range"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Phase Run Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Attack Damage while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Attack Damage while holding a Shield"] = { { isScalable = true, formats = { "negate" } } },
@@ -5126,6 +5331,7 @@ return {
["#% reduced Physical Damage taken while at maximum Endurance Charges"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Damage taken while moving"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Damage while Leeching Life"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Physical Damage while affected by Herald of Blood"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Damage while affected by Herald of Purity"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Damage while using Pride"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical Damage while you have Resolute Technique"] = { { isScalable = true, formats = { "negate" } } },
@@ -5151,6 +5357,7 @@ return {
["#% reduced Physical Weapon Damage per 10 Strength"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Physical damage taken from Hits"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Pin Buildup"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Pin duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Poacher's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Poacher's Mark Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Poison Duration"] = { { isScalable = true, formats = { "negate" } } },
@@ -5166,6 +5373,7 @@ return {
["#% reduced Power Siphon Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Precursor Tablets found in Area"] = { { isScalable = true } },
["#% reduced Presence Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Presence Area of Effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Attack Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Attack Damage during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Attack Damage per 200 Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } },
@@ -5176,7 +5384,6 @@ return {
["#% reduced Projectile Damage while in Blood Stance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Damage with Spears while there are no Enemies within 3m"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Fork angle"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Projectile Parry Range"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Range"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Projectile Speed for Spell Skills"] = { { isScalable = true, formats = { "negate" } } },
@@ -5205,7 +5412,6 @@ return {
["#% reduced Quantity of Items dropped in Heists"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Quantity of Items found"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Quantity of Items found in Nightmare"] = { { isScalable = false, formats = { "negate" } } },
- ["#% reduced Quantity of Items found in this Area"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Quantity of Items found per Chest opened Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Quantity of Items found when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Quantity of Items found with a Magic Item Equipped"] = { { isScalable = true, formats = { "negate" } } },
@@ -5238,7 +5444,6 @@ return {
["#% reduced Rarity of Items found during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Rarity of Items found from Slain Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Rarity of Items found in Nightmare"] = { { isScalable = false, formats = { "negate" } } },
- ["#% reduced Rarity of Items found in this Area"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Rarity of Items found per Socket filled"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Rarity of Items found when on Low Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Rarity of Items found with a Normal Item Equipped"] = { { isScalable = true, formats = { "negate" } } },
@@ -5266,8 +5471,13 @@ return {
["#% reduced Rejuvenation Totem Aura Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Relevancy of Items Found"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reload Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Reservation Efficiency of Companion Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Reservation Efficiency of Herald Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Reservation Efficiency of Minion Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "double" } } },
+ ["#% reduced Reservation Efficiency of Skills which create Undead Minions"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Reservation Efficiency of Skills which summon Skeletons"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reservation of Banner Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Reservation of Curse Aura Skills"] = { { isScalable = true, formats = { "negate" } } },
@@ -5318,8 +5528,10 @@ return {
["#% reduced Skill Effect Duration while affected by Malevolence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Skill Range"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Skill Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Skill Speed if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Skill Speed while an enemy with an Open Weakness is in your Presence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Slowing Potency of Debuffs on You"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Smoke Mine Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Socket Connectivity"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Soul Gain Prevention Duration"] = { { isScalable = true, formats = { "negate" } } },
@@ -5342,6 +5554,8 @@ return {
["#% reduced Spell Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage if Corrupted"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spell Damage if one of your Minions has died Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spell Damage if you have consumed an Elemental Infusion Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage if you've Blocked Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage if you've Cast a Spell Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
@@ -5349,7 +5563,7 @@ return {
["#% reduced Spell Damage if your other Ring is an Elder Item"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage per 10 Intelligence"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage per 10 Strength"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Spell Damage per 100 Player Maximum Life"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spell Damage per 100 Maximum Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage per 100 maximum Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage per 16 Dexterity"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage per 16 Intelligence"] = { { isScalable = true, formats = { "negate" } } },
@@ -5367,11 +5581,15 @@ return {
["#% reduced Spell Damage while wielding a Melee Weapon"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Damage while you have Arcane Surge"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spell Damage with Spells that cost Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Fire Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spell damage for each 200 total Mana you have Spent Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spirit"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Spirit Offering Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spirit Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spirit Reservation Efficiency of Skills per 20 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Spirit if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Split Arrow Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Split Arrow Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stack size of Simulacrum Splinters found in Area"] = { { isScalable = true } },
@@ -5391,6 +5609,7 @@ return {
["#% reduced Stun Buildup"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Buildup against Enemies that are on Low Life"] = { { isScalable = true } },
["#% reduced Stun Buildup against enemies within 2 metres"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Stun Buildup per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Buildup with Maces"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Buildup with Melee Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Buildup with Quarterstaves"] = { { isScalable = true, formats = { "negate" } } },
@@ -5410,10 +5629,12 @@ return {
["#% reduced Stun Threshold during Empowered Attacks"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Threshold for each time you've been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Threshold if you haven't been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Stun Threshold per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Threshold while Parrying"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun Threshold while on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Stun and Block Recovery per Fortification"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Summon Reaper Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Surrounded Area of Effect"] = { { isScalable = true } },
["#% reduced Sweep Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Sweep Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Tasalio's Ire per Fish caught"] = { { isScalable = true, formats = { "negate" } } },
@@ -5425,6 +5646,8 @@ return {
["#% reduced Thorns Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Thorns damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Thorns damage if you've Blocked Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Thorns damage if you've consumed an Endurance Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Thorns damage per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Tornado Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Tornado Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Tornado Shot Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
@@ -5458,7 +5681,6 @@ return {
["#% reduced Vaal Skill Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Vaal Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Valako's Aid per Stormy Day"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced Valour gained"] = { { isScalable = true } },
["#% reduced Vampiric Link Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Vengeance Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Vigilant Strike Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -5468,6 +5690,7 @@ return {
["#% reduced Visibility to Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Volatile Dead Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Volatile Dead Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Volatility Explosion delay"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Voltaxic Burst Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Voltaxic Burst Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Vortex Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -5479,6 +5702,7 @@ return {
["#% reduced Warcry Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Warcry Duration"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Warcry Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Warcry Speed per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ward"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Ward during Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Warlord's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -5489,9 +5713,11 @@ return {
["#% reduced Whirling Blades Damage"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Wild Strike Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced Wild Strike Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced Withered Magnitude"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount Leeched"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount of Chests"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount of Life Leeched"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced amount of Life Leeched if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount of Magic Chests"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount of Mana Leeched"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced amount of Rare Chests"] = { { isScalable = true, formats = { "negate" } } },
@@ -5502,8 +5728,6 @@ return {
["#% reduced bonuses gained from right Equipped Ring"] = { { isScalable = true } },
["#% reduced chance of Ritual Altars with Special Rewards"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to Blind"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced chance to Deflect"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced chance to Ignite"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to Maim"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to Poison"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to Poison on Hit against Enemies that are not Poisoned"] = { { isScalable = true, formats = { "negate" } } },
@@ -5512,15 +5736,22 @@ return {
["#% reduced chance to catch Boots"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to catch a Divine Orb"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to inflict Ailments"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced chance to inflict Ailments against Enemies affected by Abyssal Wasting"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced chance to inflict Ailments against Enemies with Exposure"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to inflict Ailments against Rare or Unique Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to inflict Ailments with Projectiles"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced chance to inflict Bleeding"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced damage against Immobilised Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced damage against Undead Enemies"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced damage taken per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced duration of Ailments you inflict against Cursed Enemies"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced duration of Ground Surfaces created by Supported Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Arcane Surge on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Arcane Surge on you per\n200 Mana spent Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Arcane Surge on you while affected by Clarity"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced effect of Archon Buffs on you"] = { { isScalable = true } },
["#% reduced effect of Chill and Shock on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Curses on Monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Curses on Players"] = { { isScalable = true, formats = { "negate" } } },
@@ -5529,12 +5760,10 @@ return {
["#% reduced effect of Curses on you while on Consecrated Ground"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Herald Buffs on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Hinder on you"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced effect of Ignite on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Incision"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Non-Curse Auras from your Skills on your Minions"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Non-Curse Auras per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Non-Damaging Ailments on you during Effect of any Life Flask"] = { { isScalable = true, formats = { "negate" } } },
- ["#% reduced effect of Offerings"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Onslaught on Players and Monsters"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Shock on you"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced effect of Shrine Buffs on you"] = { { isScalable = true, formats = { "negate" } } },
@@ -5551,9 +5780,11 @@ return {
["#% reduced maximum Dash Distance with Unarmed Attack Skills"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Energy Shield if Corrupted"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced maximum Energy Shield per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Life and increased Fire Resistance"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Life if Corrupted"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% reduced maximum Life if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Life, Mana and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Mana"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced maximum Mana and increased Cold Resistance"] = { { isScalable = true, formats = { "negate" } } },
@@ -5569,20 +5800,22 @@ return {
["#% reduced time before Lockdown"] = { { isScalable = true, formats = { "negate" } } },
["#% reduced total Power counted by Warcries"] = { { isScalable = true, formats = { "negate" } } },
["#% slower Curse Activation"] = { { isScalable = true } },
+ ["#% slower Curse Activation per 20 Tribute"] = { { isScalable = true } },
["#% slower Restoration of Ward"] = { { isScalable = true, formats = { "negate" } } },
["#% slower start of Energy Shield Recharge"] = { { isScalable = true, formats = { "negate" } } },
["#% slower start of Energy Shield Recharge during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } },
["#% slower start of Energy Shield Recharge if you've been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } },
["#% slower start of Energy Shield Recharge when not on Full Life"] = { { isScalable = true, formats = { "negate" } } },
["#% slower start of Energy Shield Recharge while affected by Discipline"] = { { isScalable = true, formats = { "negate" } } },
+ ["#% slower start of Energy Shield Recharge while affected by an Archon Buff"] = { { isScalable = true, formats = { "negate" } } },
["#% to All Resistances"] = { { isScalable = true } },
["#% to Ancestral Protector Totem Elemental Resistances"] = { { isScalable = true } },
["#% to Animated Guardian Elemental Resistances"] = { { isScalable = true } },
["#% to Attack Critical Damage Bonus while Dual Wielding"] = { { isScalable = true } },
+ ["#% to Attack Critical Hit Chance per 1% missing Enemy Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% to Block Chance while holding a Focus"] = { { isScalable = true } },
["#% to Block chance"] = { { isScalable = true } },
["#% to Brand Critical Damage Bonus"] = { { isScalable = true } },
- ["#% to Chance to Evade while you have Energy Shield"] = { { isScalable = true } },
["#% to Chaos Damage over Time Multiplier"] = { { isScalable = true } },
["#% to Chaos Damage over Time Multiplier per 4% Chaos Resistance"] = { { isScalable = true } },
["#% to Chaos Damage over Time Multiplier while affected by Malevolence"] = { { isScalable = true } },
@@ -5680,10 +5913,14 @@ return {
["#% to Lightning and Chaos Resistances"] = { { isScalable = true } },
["#% to Maximum Chaos Resistance"] = { { isScalable = true } },
["#% to Maximum Cold Resistance"] = { { isScalable = true } },
+ ["#% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"] = { { isScalable = true } },
["#% to Maximum Effect of Shock"] = { { isScalable = true } },
["#% to Maximum Fire Resistance"] = { { isScalable = true } },
["#% to Maximum Fire Resistance for each 40% Uncapped Fire Resistance"] = { { isScalable = true } },
+ ["#% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed"] = { { isScalable = true } },
+ ["#% to Maximum Fire Resistance while Ignited"] = { { isScalable = true } },
["#% to Maximum Lightning Resistance"] = { { isScalable = true } },
+ ["#% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed"] = { { isScalable = true } },
["#% to Maximum Quality"] = { { isScalable = false } },
["#% to Melee Critical Damage Bonus"] = { { isScalable = true } },
["#% to Melee Critical Damage Bonus if you've Warcried Recently"] = { { isScalable = true } },
@@ -5722,6 +5959,7 @@ return {
["#% to Spell Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% to Stone Golem Elemental Resistances"] = { { isScalable = true } },
["#% to Thorns Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
+ ["#% to Thorns Critical Hit Chance per 50 Tribute"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% to Unarmed Melee Attack Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["#% to Vaal Skill Critical Damage Bonus"] = { { isScalable = true } },
["#% to Vortex Critical Hit Chance when Cast on Frostbolt"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
@@ -5738,36 +5976,34 @@ return {
["#% to all Elemental Resistances while on Low Life"] = { { isScalable = true } },
["#% to all Elemental Resistances while you have at least 200 Strength"] = { { isScalable = true } },
["#% to all Maximum Elemental Resistances"] = { { isScalable = true } },
+ ["#% to all Maximum Elemental Resistances if you have at\nleast 5 Red, Green and Blue Support Gems Socketed"] = { { isScalable = true } },
["#% to all Resistances for each Corrupted Item Equipped"] = { { isScalable = true } },
["#% to all maximum Elemental Resistances during Effect"] = { { isScalable = true } },
["#% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour"] = { { isScalable = true } },
["#% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently"] = { { isScalable = true } },
["#% to all maximum Elemental Resistances if you have Reserved Life and Mana"] = { { isScalable = true } },
- ["#% to all maximum Elemental Resistances if you've Suppressed Spell Damage Recently"] = { { isScalable = true } },
["#% to all maximum Elemental Resistances while affected by Purity of Elements"] = { { isScalable = true } },
["#% to all maximum Resistances"] = { { isScalable = true } },
+ ["#% to all maximum Resistances if you have at least 100 Tribute"] = { { isScalable = true } },
["#% to all maximum Resistances if you have at least 150 Devotion"] = { { isScalable = true } },
["#% to all maximum Resistances while Poisoned"] = { { isScalable = true } },
["#% to all maximum Resistances while you have no Endurance Charges"] = { { isScalable = true } },
- ["#% to amount of Deflected Attack Damage Prevented"] = { { isScalable = true } },
- ["#% to amount of Suppressed Spell Damage Prevented"] = { { isScalable = true } },
- ["#% to amount of Suppressed Spell Damage Prevented while on Full Energy Shield"] = { { isScalable = true } },
+ ["#% to amount of Damage Prevented by Deflection"] = { { isScalable = true } },
+ ["#% to amount of Damage Prevented from Deflecting Critical Hits"] = { { isScalable = true } },
["#% to maximum Armour"] = { { isScalable = true } },
["#% to maximum Block chance"] = { { isScalable = true } },
- ["#% to maximum Chance to Block Spell Damage"] = { { isScalable = true } },
- ["#% to maximum Chance to Block Spell Damage per 50 Strength"] = { { isScalable = true } },
["#% to maximum Cold Resistance while affected by Herald of Ice"] = { { isScalable = true } },
["#% to maximum Fire Resistance while affected by Herald of Ash"] = { { isScalable = true } },
["#% to maximum Lightning Resistance while affected by Herald of Thunder"] = { { isScalable = true } },
["%1$+d to Melee range with Spears"] = { },
["+1 Ring Slot"] = { },
["+1 to Level of Socketed Skill Gems per # Player Levels"] = { { isScalable = true } },
- ["+1 to Maximum Energy Shield per # Evasion Rating on Equipped Body Armour"] = { { isScalable = true } },
+ ["+1 to Maximum Energy Shield per # Item Evasion Rating on Equipped Body Armour"] = { { isScalable = true } },
["+1 to Maximum Energy Shield per # Maximum Life"] = { { isScalable = true } },
["+1 to Maximum Mana per # Maximum Life"] = { { isScalable = true } },
["+1 to Maximum Spirit per # Maximum Life"] = { { isScalable = true } },
- ["+1 to Spirit for every # Energy Shield on Equipped Body Armour"] = { { isScalable = true } },
["+1 to Spirit for every # Evasion Rating on Equipped Body Armour"] = { { isScalable = true } },
+ ["+1 to Spirit for every # Item Energy Shield on Equipped Body Armour"] = { { isScalable = true } },
["+1 to maximum Blade Flurry stages"] = { },
["+1 to maximum number of Raised Zombies per # Strength"] = { { isScalable = true } },
["+1% to Maximum Cold Resistance per # Blue Support Gems Socketed"] = { { isScalable = true } },
@@ -5777,6 +6013,8 @@ return {
["+1% to Maximum Lightning Resistance per # Green Support Gems Socketed"] = { { isScalable = true } },
["+1% to Maximum Lightning Resistance per Green Support Gem Socketed"] = { },
["+10% to Maximum Effect of Shock"] = { },
+ ["+100% of Armour also applies to Chaos Damage"] = { },
+ ["+100% of Armour also applies to Lightning Damage"] = { },
["+40% to Maximum Effect of Shock"] = { },
["+5 to any Attribute"] = { },
["1 Added Passive Skill is a Jewel Socket"] = { },
@@ -5820,12 +6058,27 @@ return {
["A Monster in this Area will summon Abaxoth when Slain"] = { },
["A Monster in this Area will summon a Unique Monster from Beyond when Slain"] = { },
["A Strongbox in this Area is Corrupted"] = { },
+ ["Abyss Cracks have #% chance to spawn all Monsters as at least Magic"] = { { isScalable = true } },
+ ["Abyss Cracks spawn all Monsters as at least Magic"] = { },
["Abyss Jewels found are Corrupted and have 5 or 6 random Modifiers"] = { },
["Abyss Jewels found have #% chance to be Corrupted and have 5 or 6 random Modifiers"] = { { isScalable = true } },
+ ["Abyss Pits have #% chance to spawn all Monsters as at least Magic"] = { { isScalable = true } },
+ ["Abyss Pits in Area always have Rewards"] = { },
+ ["Abyss Pits spawn all Monsters as at least Magic"] = { },
+ ["Abyssal Monsters grant #% increased Experience"] = { { isScalable = true } },
+ ["Abyssal Monsters grant #% reduced Experience"] = { { isScalable = true, formats = { "negate" } } },
+ ["Abyssal Wasting also applies #% to Cold Resistance"] = { { isScalable = true } },
+ ["Abyssal Wasting also applies #% to Fire Resistance"] = { { isScalable = true } },
+ ["Abyssal Wasting also applies #% to Lightning Resistance"] = { { isScalable = true } },
+ ["Abyssal Wasting you inflict has Infinite Duration"] = { },
+ ["Abysses have # additional Pits"] = { { isScalable = true } },
+ ["Abysses have an additional Pit"] = { },
["Abysses in Area have #% increased chance to lead to an Abyssal Depths"] = { { isScalable = true } },
["Abysses in Area have #% reduced chance to lead to an Abyssal Depths"] = { { isScalable = true } },
["Abysses in Area spawn #% increased Monsters"] = { { isScalable = true } },
["Abysses in Area spawn #% reduced Monsters"] = { { isScalable = true, formats = { "negate" } } },
+ ["Abysses lead to an Abyssal Boss"] = { },
+ ["Abysses lead to an Abyssal Depths"] = { },
["Accuracy Rating is Doubled"] = { },
["Acrobatics"] = { },
["Action Speed cannot be Slowed below Base Value if you've cast Temporal Chains in the past 10 seconds"] = { },
@@ -5960,8 +6213,8 @@ return {
["All Damage Taken from Hits can Ignite you"] = { },
["All Damage from Freezing Pulse and Eye of Winter Hits Contributes to Poison Magnitude"] = { },
["All Damage from Hits Contributes to Chill Magnitude"] = { },
+ ["All Damage from Hits Contributes to Flammability and Ignite Magnitudes"] = { },
["All Damage from Hits Contributes to Freeze Buildup"] = { },
- ["All Damage from Hits Contributes to Ignite Chance and Magnitude"] = { },
["All Damage from Hits Contributes to Poison Magnitude"] = { },
["All Damage from Hits Contributes to Poison Magnitude while affected by Glorious Madness"] = { },
["All Damage from Hits Contributes to Shock Chance"] = { },
@@ -5971,13 +6224,13 @@ return {
["All Damage from Hits with this Weapon Contributes to Chill Magnitude"] = { },
["All Damage from Hits with this Weapon Contributes to Freeze Buildup"] = { },
["All Damage from Hits with this Weapon Contributes to Pin Buildup"] = { },
- ["All Damage from Lightning Strike and Frost Blades Hits Contributes to Ignite Chance and Magnitude"] = { },
+ ["All Damage from Lightning Strike and Frost Blades Hits Contributes to Flammability and Ignite Magnitudes"] = { },
["All Damage from Monsters' Hits Contributes to Chill Magnitude"] = { },
+ ["All Damage from Monsters' Hits Contributes to Flammability and Ignite Magnitudes"] = { },
["All Damage from Monsters' Hits Contributes to Freeze Buildup"] = { },
- ["All Damage from Monsters' Hits Contributes to Ignite Chance and Magnitude"] = { },
["All Damage from Monsters' Hits Contributes to Poison Magnitude"] = { },
["All Damage from Monsters' Hits Contributes to Shock Chance"] = { },
- ["All Damage from you and Allies in your Presence\ncontributes to Ignite Chance and Magnitude"] = { },
+ ["All Damage from you and Allies in your Presence\ncontributes to Flammability and Ignite Magnitudes"] = { },
["All Damage inflicts Poison against Enemies affected by at least # Grasping Vine"] = { { isScalable = true } },
["All Damage inflicts Poison against Enemies affected by at least # Grasping Vines"] = { { isScalable = true } },
["All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you"] = { },
@@ -5985,15 +6238,11 @@ return {
["All Damage taken from Hits can Scorch you"] = { },
["All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you"] = { },
["All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you"] = { },
+ ["All Elemental Damage from Hits Contributes to Freeze Buildup"] = { },
["All Elemental Damage from Hits Contributes to Shock Chance"] = { },
["All Maps in Range can be accessed"] = { },
["All Metamorph Monsters have Rewards"] = { },
["All Monster Damage from Hits always Ignites"] = { },
- ["All Sockets Linked"] = { },
- ["All Sockets are Blue"] = { },
- ["All Sockets are Green"] = { },
- ["All Sockets are Red"] = { },
- ["All Sockets are White"] = { },
["All Towers in range of your Empowering Towers deal Double Damage"] = { },
["All Towers in range of your Empowering Towers have #% chance to deal Double Damage"] = { { isScalable = true } },
["All bonuses from Equipped Amulet apply to your Minions instead of you"] = { },
@@ -6010,14 +6259,21 @@ return {
["Allies in your Presence deal # to # added Attack Fire Damage"] = { { isScalable = true }, { isScalable = true } },
["Allies in your Presence deal # to # added Attack Lightning Damage"] = { { isScalable = true }, { isScalable = true } },
["Allies in your Presence deal # to # added Attack Physical Damage"] = { { isScalable = true }, { isScalable = true } },
+ ["Allies in your Presence deal #% increased Chaos Damage"] = { { isScalable = true } },
["Allies in your Presence deal #% increased Damage"] = { { isScalable = true } },
+ ["Allies in your Presence deal #% increased Elemental Damage"] = { { isScalable = true } },
+ ["Allies in your Presence deal #% increased Physical Damage"] = { { isScalable = true } },
+ ["Allies in your Presence deal #% reduced Chaos Damage"] = { { isScalable = true, formats = { "negate" } } },
["Allies in your Presence deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Allies in your Presence deal #% reduced Elemental Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Allies in your Presence deal #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["Allies in your Presence gain added Attack Damage equal\nto #% of your main hand Weapon's Damage"] = { { isScalable = true } },
["Allies in your Presence have # to Accuracy Rating"] = { { isScalable = true } },
["Allies in your Presence have #% increased Attack Speed"] = { { isScalable = true } },
["Allies in your Presence have #% increased Cast Speed"] = { { isScalable = true } },
["Allies in your Presence have #% increased Critical Damage Bonus"] = { { isScalable = true } },
["Allies in your Presence have #% increased Critical Hit Chance"] = { { isScalable = true } },
+ ["Allies in your Presence have #% increased Glory generation"] = { { isScalable = true } },
["Allies in your Presence have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
["Allies in your Presence have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["Allies in your Presence have #% reduced Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } },
@@ -6031,17 +6287,13 @@ return {
["Allocates # if you have the matching modifier on Forbidden Flame"] = { { isScalable = false, formats = { "passive_hash" } } },
["Allocates # if you have the matching modifier on Forbidden Flesh"] = { { isScalable = false, formats = { "passive_hash" } } },
["Allow for memories at or adjacent to this location have BONUS"] = { },
+ ["Also grants # Guard"] = { { isScalable = true } },
["Alternating every 5 seconds:\nTake #% less Damage from Hits\nTake #% less Damage over time"] = { { isScalable = true, formats = { "negate" } }, { isScalable = true, formats = { "negate" } } },
["Alternating every 5 seconds:\nTake #% more Damage from Hits\nTake #% more Damage over time"] = { { isScalable = true }, { isScalable = true } },
["Always Critical Hit Shocked Enemies"] = { },
["Always Freeze"] = { },
- ["Always Freeze, Shock and Ignite"] = { },
- ["Always Freeze, Shock and Ignite during any Flask Effect"] = { },
["Always Freezes Enemies on Hit"] = { },
["Always Hits"] = { },
- ["Always Ignite"] = { },
- ["Always Ignite when in Main Hand"] = { },
- ["Always Ignite while Ignited"] = { },
["Always Poison on Hit"] = { },
["Always Poison on Hit against Bleeding Enemies"] = { },
["Always Poison on Hit against Cursed Enemies"] = { },
@@ -6080,6 +6332,8 @@ return {
["Ancestral Protector Totems gain #% to all Elemental Resistances"] = { { isScalable = true } },
["Ancestral Warchief Totem grants #% increased Melee Damage while Active"] = { { isScalable = true } },
["Ancestral Warchief Totem grants #% reduced Melee Damage while Active"] = { { isScalable = true, formats = { "negate" } } },
+ ["Ancestrally Boosted Attacks deal #% increased Damage"] = { { isScalable = true } },
+ ["Ancestrally Boosted Attacks have #% increased Stun Buildup"] = { { isScalable = true } },
["Ancient Talismans possess monsters throughout Wraeclast"] = { },
["Anger has #% increased Aura Effect"] = { { isScalable = true } },
["Anger has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
@@ -6106,9 +6360,10 @@ return {
["Animated Weapons deal #% increased Damage"] = { { isScalable = true } },
["Animated Weapons deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Any number of Poisons from this Weapon can affect a target at the same time"] = { },
+ ["Applies # Critical Weakness on Hit"] = { { isScalable = true } },
["Applies # Memory Modifiers to Memories placed on or next to this location"] = { { isScalable = true } },
["Applies a Memory Modifier to Memories placed on or next to this location"] = { },
- ["Apply Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds while Shield is raised"] = { },
+ ["Apply Debilitate to Enemies 3 Metres in front of you while actively Blocking"] = { },
["Arc Always Shocks"] = { },
["Arc Chains an additional # times"] = { { isScalable = true } },
["Arc Chains an additional time"] = { },
@@ -6119,8 +6374,13 @@ return {
["Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Arcane Surge grants #% less Spell Damage to you"] = { { isScalable = true, formats = { "negate" } } },
["Arcane Surge grants #% more Spell Damage to you"] = { { isScalable = true } },
+ ["Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"] = { },
["Arcanist Brand has #% increased Cast Speed"] = { { isScalable = true } },
["Arcanist Brand has #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["Archon Buffs also grant #% increased Movement Speed"] = { { isScalable = true } },
+ ["Archon Buffs also grant #% to all Elemental Resistances"] = { { isScalable = true } },
+ ["Archon recovery period expires #% faster"] = { { isScalable = true } },
+ ["Archon recovery period expires #% slower"] = { { isScalable = true, formats = { "negate" } } },
["Arctic Armour has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
["Arctic Armour has #% increased Reservation"] = { { isScalable = true } },
["Arctic Armour has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
@@ -6162,6 +6422,7 @@ return {
["Area contains # additional Fungal Chest Clusters"] = { { isScalable = true } },
["Area contains # additional Gloom Shrines"] = { { isScalable = true } },
["Area contains # additional Harbingers"] = { { isScalable = true } },
+ ["Area contains # additional Incubator Queens"] = { { isScalable = true } },
["Area contains # additional Leaguestones"] = { { isScalable = false } },
["Area contains # additional Legion Encounters"] = { { isScalable = true } },
["Area contains # additional Magic Chests"] = { { isScalable = true } },
@@ -6322,6 +6583,7 @@ return {
["Area contains an additional Fangjaw Talisman"] = { },
["Area contains an additional Gloom Shrine"] = { },
["Area contains an additional Harbinger"] = { },
+ ["Area contains an additional Incubator Queen"] = { },
["Area contains an additional Leaguestone"] = { },
["Area contains an additional Legion Encounter"] = { },
["Area contains an additional Magic Chest"] = { },
@@ -6394,6 +6656,7 @@ return {
["Area has patches of Chilled Ground"] = { },
["Area has patches of Consecrated Ground"] = { },
["Area has patches of Ignited Ground"] = { },
+ ["Area has patches of Mana Siphoning Ground"] = { },
["Area has patches of Shocked Ground"] = { },
["Area has patches of Shocked Ground which increase Damage taken by #%"] = { { isScalable = true } },
["Area has patches of desecrated ground"] = { },
@@ -6401,9 +6664,6 @@ return {
["Area is #% larger"] = { { isScalable = true } },
["Area is Alluring"] = { },
["Area is Breached"] = { },
- ["Area is Cursed with Elemental Weakness"] = { },
- ["Area is Cursed with Enfeeble"] = { },
- ["Area is Cursed with Temporal Chains"] = { },
["Area is Overgrown with Caustic Plants"] = { },
["Area is Overgrown with Large Caustic Plants"] = { },
["Area is Overgrown with Parasitic Caustic Plants"] = { },
@@ -6459,12 +6719,12 @@ return {
["Area is inhabited by ranged monsters"] = { },
["Area is inhabited by the Vaal"] = { },
["Area is inhabited by wild Animals"] = { },
+ ["Area is overrun by the Abyssal"] = { },
["Area is very Alluring"] = { },
["Area is very Repulsive"] = { },
["Area's inhabitants are lying in ambush"] = { },
["Areas Have the Same Layout for all Players"] = { },
["Areas are Breached\nAreas contain additional Large Breach Hands\nBreach Bosses have a chance to drop a Breachstone"] = { },
- ["Areas can contain Abysses"] = { },
["Areas can contain Essences"] = { },
["Areas contain # additional Shrines guarded by Pantheon Monsters"] = { { isScalable = true } },
["Areas contain Beasts to hunt"] = { },
@@ -6505,13 +6765,9 @@ return {
["Armageddon Brand has #% increased Activation Frequency"] = { { isScalable = true } },
["Armageddon Brand has #% reduced Activation Frequency"] = { { isScalable = true, formats = { "negate" } } },
["Armour Items absorb #% more Corruption"] = { { isScalable = true } },
- ["Armour also applies to Chaos Damage taken from Hits"] = { },
- ["Armour also applies to Lightning damage taken from Hits"] = { },
- ["Armour applies to Elemental Damage"] = { },
["Armour from Equipped Body Armour is doubled"] = { },
["Armour is increased by Overcapped Fire Resistance"] = { },
["Armour is zero"] = { },
- ["Arrow Dancing"] = { },
["Arrows Chain # times"] = { { isScalable = true } },
["Arrows Fork"] = { },
["Arrows Pierce # additional Targets"] = { { isScalable = true } },
@@ -6562,13 +6818,12 @@ return {
["Attack Hits apply Incision"] = { },
["Attack Hits apply ten Incision"] = { },
["Attack Hits have #% chance to Maim you for 4 seconds"] = { { isScalable = true } },
+ ["Attack Hits inflict Spectral Fire for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Attack Projectiles Return to you"] = { },
["Attack Skills deal #% increased Damage while Dual Wielding"] = { { isScalable = true } },
["Attack Skills deal #% increased Damage while holding a Shield"] = { { isScalable = true } },
["Attack Skills deal #% reduced Damage while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } },
["Attack Skills deal #% reduced Damage while holding a Shield"] = { { isScalable = true, formats = { "negate" } } },
- ["Attack Skills fire # additional Projectiles while wielding a Claw or Dagger"] = { { isScalable = true } },
- ["Attack Skills fire an additional Projectile while wielding a Claw or Dagger"] = { },
["Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem"] = { { isScalable = true } },
["Attack Skills have # to maximum number of Summoned Ballista Totems"] = { { isScalable = true } },
["Attack Skills have # to maximum number of Summoned Totems"] = { { isScalable = true } },
@@ -6582,12 +6837,15 @@ return {
["Attacks Exerted by Ambush have #% to Critical Damage Bonus"] = { { isScalable = true } },
["Attacks Exerted by Ancestral Cry deal #% increased Damage"] = { { isScalable = true } },
["Attacks Exerted by Seismic Cry deal #% increased Damage"] = { { isScalable = true } },
+ ["Attacks Gain #% of Damage as Extra Chaos Damage while Unarmed"] = { { isScalable = true } },
["Attacks Gain #% of Damage as Extra Cold Damage"] = { { isScalable = true } },
+ ["Attacks Gain #% of Damage as Extra Cold Damage while Unarmed"] = { { isScalable = true } },
["Attacks Gain #% of Damage as Extra Fire Damage"] = { { isScalable = true } },
+ ["Attacks Gain #% of Damage as Extra Fire Damage while Unarmed"] = { { isScalable = true } },
["Attacks Gain #% of Damage as Extra Lightning Damage"] = { { isScalable = true } },
+ ["Attacks Gain #% of Damage as Extra Lightning Damage while Unarmed"] = { { isScalable = true } },
["Attacks Gain #% of Physical Damage as extra Chaos Damage"] = { { isScalable = true } },
["Attacks Maim on Hit against Bleeding Enemies"] = { },
- ["Attacks always Ignite"] = { },
["Attacks always Maim on Hit"] = { },
["Attacks always Maim on Hit against Poisoned Enemies"] = { },
["Attacks always Poison while at maximum Frenzy Charges"] = { },
@@ -6605,12 +6863,12 @@ return {
["Attacks gain increased Accuracy Rating equal to #% of their Critical Hit Chance"] = { { isScalable = true } },
["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"] = { },
["Attacks have #% chance to Blind with Hits against Bleeding enemies"] = { { isScalable = true } },
- ["Attacks have #% chance to Ignite"] = { { isScalable = true } },
["Attacks have #% chance to Maim on Hit"] = { { isScalable = true } },
["Attacks have #% chance to Maim on Hit against Blinded Enemies"] = { { isScalable = true } },
["Attacks have #% chance to Poison while at maximum Frenzy Charges"] = { { isScalable = true } },
["Attacks have #% chance to cause Bleeding"] = { { isScalable = true } },
["Attacks have #% to Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
+ ["Attacks have #% to Critical Hit Chance against Parried enemies if you have at least 100 Tribute"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies"] = { },
["Attacks have Added maximum Lightning Damage equal to #% of maximum Mana"] = { { isScalable = true } },
["Attacks have Added minimum Lightning Damage equal to #% of maximum Mana"] = { { isScalable = true } },
@@ -6618,6 +6876,8 @@ return {
["Attacks have added Physical damage equal to #% of maximum Life"] = { { isScalable = true } },
["Attacks that Fire Projectiles Consume up to # additional Steel Shard"] = { { isScalable = true } },
["Attacks that Fire Projectiles Consume up to # additional Steel Shards"] = { { isScalable = true } },
+ ["Attacks used by Ballista have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["Attacks used by Ballistas have #% increased Attack Speed"] = { { isScalable = true } },
["Attacks used by Totems have #% increased Attack Speed"] = { { isScalable = true } },
["Attacks used by Totems have #% increased Attack Speed per Summoned Totem"] = { { isScalable = true } },
["Attacks used by Totems have #% reduced Attack Speed per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } },
@@ -6701,6 +6961,7 @@ return {
["Banner Skills have no Reservation"] = { },
["Banners also grant #% to all Elemental Resistances to you and Allies"] = { { isScalable = true } },
["Banners always have maximum Valour"] = { },
+ ["Banners gain # Glory per second"] = { { isScalable = true } },
["Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"] = { },
["Barrage and Frenzy have #% increased Critical Hit Chance per Endurance Charge"] = { { isScalable = true } },
["Barrage and Frenzy have #% reduced Critical Hit Chance per Endurance Charge"] = { { isScalable = true, formats = { "negate" } } },
@@ -6727,6 +6988,7 @@ return {
["Bear Trap and Siphoning Trap Debuffs also apply #% reduced Cooldown Recovery Rate to affected Enemies"] = { { isScalable = true } },
["Bear Trap has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Bear Trap has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Bears the Mark of the Abyssal Lord"] = { },
["Beasts in Area deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
["Beasts in Area deal #% more Damage"] = { { isScalable = true } },
["Beasts in Area have #% less Maximum Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -6740,7 +7002,9 @@ return {
["Berserk has #% reduced Rage loss per second"] = { { isScalable = true, formats = { "negate" } } },
["Beyond Portals have a #% chance to spawn an additional Beyond Demon"] = { { isScalable = true } },
["Beyond Portals spawn an additional Beyond Demon"] = { },
+ ["Bifurcates Critical Hits"] = { },
["Black Scythe Training"] = { },
+ ["Blackflame Covenant"] = { },
["Blade Blast deals #% increased Damage"] = { { isScalable = true } },
["Blade Blast deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Blade Blast detonates other Lingering Blades within an #% increased Area"] = { { isScalable = true } },
@@ -6781,6 +7045,7 @@ return {
["Bleeding you inflict is Aggravated"] = { },
["Bleeding you inflict is Reflected to you"] = { },
["Bleeding you inflict on Cursed targets is Aggravated"] = { },
+ ["Bleeding you inflict on Pinned Enemies is Aggravated"] = { },
["Blight Chests contain an additional Reward"] = { },
["Blight Chests drop an additional Reward"] = { },
["Blight Encounters contain up to # additional Blight Boss"] = { { isScalable = true } },
@@ -6811,7 +7076,6 @@ return {
["Blink Arrow and Mirror Arrow have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Blink Arrow has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Blink Arrow has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
- ["Block chance is Lucky"] = { },
["Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage"] = { { isScalable = true } },
["Blood Magic"] = { },
["Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill"] = { { isScalable = true } },
@@ -6825,6 +7089,7 @@ return {
["Body Armour grants #% increased Strength"] = { { isScalable = true } },
["Body Armour grants #% increased Stun Threshold"] = { { isScalable = true } },
["Body Armour grants #% increased maximum Life"] = { { isScalable = true } },
+ ["Body Armour grants #% of Armour also applies to Elemental Damage"] = { { isScalable = true } },
["Body Armour grants #% of Physical Damage from Hits taken as Fire Damage"] = { { isScalable = true } },
["Body Armour grants #% reduced Strength"] = { { isScalable = true, formats = { "negate" } } },
["Body Armour grants #% reduced Stun Threshold"] = { { isScalable = true, formats = { "negate" } } },
@@ -6833,7 +7098,7 @@ return {
["Body Armour grants #% to Fire Resistance"] = { { isScalable = true } },
["Body Armour grants #% to Lightning Resistance"] = { { isScalable = true } },
["Body Armour grants #% to Maximum Fire Resistance"] = { { isScalable = true } },
- ["Body Armour grants Armour also applies to Chaos Damage taken from Hits"] = { },
+ ["Body Armour grants +100% of Armour also applies to Chaos Damage"] = { },
["Body Armour grants Hits against you have #% increased Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } },
["Body Armour grants Hits against you have #% reduced Critical Damage Bonus"] = { { isScalable = true } },
["Body Armour grants Unaffected by Ignite"] = { },
@@ -6908,7 +7173,9 @@ return {
["Break #% increased Armour"] = { { isScalable = true } },
["Break #% of Armour on Critical Hit with Spells"] = { { isScalable = true } },
["Break #% of Armour on Heavy Stunning an Enemy"] = { { isScalable = true } },
+ ["Break #% of Armour on Pinning an Enemy"] = { { isScalable = true } },
["Break #% reduced Armour"] = { { isScalable = true, formats = { "negate" } } },
+ ["Break Armour equal to #% of Fire Damage dealt"] = { { isScalable = true } },
["Break Armour equal to #% of Hit Damage dealt"] = { { isScalable = true } },
["Break Armour equal to #% of Physical Damage dealt"] = { { isScalable = true } },
["Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt"] = { { isScalable = true } },
@@ -6924,12 +7191,11 @@ return {
["Buffs on Players expire #% slower"] = { { isScalable = true } },
["Buffs on you expire #% faster"] = { { isScalable = true } },
["Buffs on you expire #% slower"] = { { isScalable = true, formats = { "negate" } } },
+ ["Build an additional Combo on Hit"] = { },
["Bulwark"] = { },
- ["Burning Arrow Always Ignites"] = { },
- ["Burning Arrow has #% chance to Ignite"] = { { isScalable = true } },
["Burning Arrow has #% increased Debuff Effect"] = { { isScalable = true } },
["Burning Arrow has #% reduced Debuff Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["Burning Enemies you kill have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"] = { { isScalable = true } },
+ ["Burning Enemies you kill have a #% chance to Explode, dealing a\ntenth of their maximum Life as Fire Damage"] = { { isScalable = true } },
["Burning Hoofprints"] = { },
["Caches of Perandus wealth can be found throughout Wraeclast"] = { },
["Cages created by Your Glacial Cage Towers are #% larger"] = { { isScalable = true } },
@@ -6941,10 +7207,7 @@ return {
["Call of Steel has # to maximum Steel Shards"] = { { isScalable = true } },
["Call of Steel has #% increased Use Speed"] = { { isScalable = true } },
["Call to Arms"] = { },
- ["Can Block Damage from all Hits while Shield is not Raised"] = { },
- ["Can Block damage from all Hits"] = { },
["Can Block from all Directions while Shield is Raised"] = { },
- ["Can Evade all Hits if you have not been Hit Recently"] = { },
["Can Reroll Favours at Ritual Altars in your Maps twice as many times"] = { },
["Can Scout nearby Enemy Patrols and Elite Patrols during Heists"] = { },
["Can Socket a non-Unique Basic Jewel into the Phylactery"] = { },
@@ -6986,7 +7249,6 @@ return {
["Cannot Adapt to Lightning Damage"] = { },
["Cannot Be Stunned while you have Energy Shield"] = { },
["Cannot Block"] = { },
- ["Cannot Block Spell Damage"] = { },
["Cannot Block while you have no Energy Shield"] = { },
["Cannot Cast Spells"] = { },
["Cannot Consume Charges"] = { },
@@ -7010,6 +7272,7 @@ return {
["Cannot Recover Life or Energy Shield to above #%"] = { { isScalable = true } },
["Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently"] = { },
["Cannot Resist Cold Damage"] = { },
+ ["Cannot Shock"] = { },
["Cannot Summon Mirage Archers while near your Mirage Archers"] = { },
["Cannot Taunt Enemies"] = { },
["Cannot be Blinded"] = { },
@@ -7029,6 +7292,7 @@ return {
["Cannot be Ignited while at maximum Endurance Charges"] = { },
["Cannot be Knocked Back"] = { },
["Cannot be Light Stunned"] = { },
+ ["Cannot be Light Stunned if you haven't been Hit Recently"] = { },
["Cannot be Poisoned"] = { },
["Cannot be Poisoned while Bleeding"] = { },
["Cannot be Shocked"] = { },
@@ -7040,10 +7304,8 @@ return {
["Cannot be Stunned by Hits that deal only Physical Damage"] = { },
["Cannot be Stunned by Hits you Block"] = { },
["Cannot be Stunned by Spells if your other Ring is a Shaper Item"] = { },
- ["Cannot be Stunned by Suppressed Spell Damage"] = { },
["Cannot be Stunned during Effect"] = { },
["Cannot be Stunned if you have at least 10 Crab Barriers"] = { },
- ["Cannot be Stunned if you haven't been Hit Recently"] = { },
["Cannot be Stunned if you've been Stunned during Effect"] = { },
["Cannot be Stunned when on Low Life"] = { },
["Cannot be Stunned while Bleeding"] = { },
@@ -7070,7 +7332,7 @@ return {
["Cannot inflict Curses"] = { },
["Cannot inflict Elemental Ailments"] = { },
["Cannot inflict Ignite"] = { },
- ["Cannot inflict Shock"] = { },
+ ["Cannot kill Enemies with Hits"] = { },
["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"] = { },
["Cannot roll Attack Modifiers"] = { },
["Cannot roll Caster Modifiers"] = { },
@@ -7115,16 +7377,11 @@ return {
["Chain Hook has # Radius per 12 Rage"] = { { isScalable = true } },
["Chain Hook has a #% chance to grant +1 Rage if it Hits Enemies"] = { { isScalable = true } },
["Chains an additional time"] = { },
- ["Chance to Block Attack Damage is Lucky"] = { },
["Chance to Block Attack Damage is Unlucky"] = { },
- ["Chance to Block Spell Damage is Lucky"] = { },
- ["Chance to Block Spell Damage is Unlucky"] = { },
- ["Chance to Block Spell Damage is equal to Chance to Block Attack Damage\nMaximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"] = { },
- ["Chance to Deflect Attack Damage is Lucky"] = { },
+ ["Chance to Block Damage is Lucky"] = { },
+ ["Chance to Deflect Damage is Lucky"] = { },
["Chance to Hit with Attacks can exceed 100%\nGain additional Critical Hit Chance equal to #% of excess chance to Hit with Attacks"] = { { isScalable = true } },
["Chance to Hit with Attacks can exceed 100%\nGain additional Critical Hit Chance equal to excess chance to Hit with Attacks"] = { },
- ["Chance to Ignite is doubled"] = { },
- ["Chance to Suppress Spell Damage is Lucky"] = { },
["Channelling Skills Cost # Mana"] = { { isScalable = true } },
["Channelling Skills deal #% increased Attack Damage"] = { { isScalable = true } },
["Channelling Skills deal #% increased Damage"] = { { isScalable = true } },
@@ -7140,9 +7397,9 @@ return {
["Channelling Skills have #% reduced Attack and Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["Chaos Damage from Hits also Contributes to Chill Magnitude"] = { },
["Chaos Damage from Hits also Contributes to Electrocute Buildup"] = { },
+ ["Chaos Damage from Hits also Contributes to Flammability and Ignite Magnitudes"] = { },
+ ["Chaos Damage from Hits also Contributes to Flammability and Ignite Magnitudes, Chill Magnitude, and Shock Chance"] = { },
["Chaos Damage from Hits also Contributes to Freeze Buildup"] = { },
- ["Chaos Damage from Hits also Contributes to Ignite Chance and Magnitude"] = { },
- ["Chaos Damage from Hits also Contributes to Ignite Chance and Magnitude, Chill Magnitude, and Shock Chance"] = { },
["Chaos Damage from Hits also Contributes to Shock Chance"] = { },
["Chaos Damage from Hits does not contribute to Poison Magnitude"] = { },
["Chaos Damage is taken from Mana before Life"] = { },
@@ -7157,7 +7414,6 @@ return {
["Chaos Resistance is doubled"] = { },
["Chaos Resistance is unaffected by Area Penalties"] = { },
["Chaos Resistance is zero"] = { },
- ["Chaos Skills have #% chance to Ignite"] = { { isScalable = true } },
["Chaos Skills have #% increased Area of Effect"] = { { isScalable = true } },
["Chaos Skills have #% increased Skill Effect Duration"] = { { isScalable = true } },
["Chaos Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -7169,8 +7425,11 @@ return {
["Charged Dash has #% more Movement Speed"] = { { isScalable = true } },
["Charged Storm Cloud deals # more Damage"] = { { isScalable = true } },
["Charms applied to you have #% increased Effect"] = { { isScalable = true } },
+ ["Charms applied to you have #% increased Effect per 10 Tribute"] = { { isScalable = true } },
["Charms applied to you have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["Charms applied to you have #% reduced Effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Charms gain # charges per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } },
+ ["Charms gain # charges per Second if you have at least 200 Tribute"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } },
["Charms use no Charges"] = { },
["Chest drops Against the Darkness"] = { },
["Chest drops Blessed Bonds"] = { },
@@ -7205,8 +7464,8 @@ return {
["Cobra Lash deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Cobra Lash has #% increased Projectile Speed"] = { { isScalable = true } },
["Cobra Lash has #% reduced Projectile Speed"] = { { isScalable = true, formats = { "negate" } } },
- ["Cold Damage from Hits Contributes to Ignite Chance and Magnitude instead of Chill Magnitude or Freeze Buildup"] = { },
- ["Cold Damage from Hits also Contributes to Ignite Chance and Magnitude"] = { },
+ ["Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup"] = { },
+ ["Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes"] = { },
["Cold Damage from Hits also Contributes to Poison Magnitude"] = { },
["Cold Damage from Hits also Contributes to Shock Chance"] = { },
["Cold Damage from Hits does not contribute to Chill Magnitude"] = { },
@@ -7234,7 +7493,9 @@ return {
["Commissioned # coins to commemorate Chitus\nPassives in radius are Conquered by the Eternal Empire"] = { { isScalable = true, formats = { "times_twenty" } } },
["Commissioned # coins to commemorate Victario\nPassives in radius are Conquered by the Eternal Empire"] = { { isScalable = true, formats = { "times_twenty" } } },
["Companions deal #% increased Damage"] = { { isScalable = true } },
+ ["Companions deal #% increased damage against Immobilised enemies"] = { { isScalable = true } },
["Companions deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Companions deal #% reduced damage against Immobilised enemies"] = { { isScalable = true, formats = { "negate" } } },
["Companions gain your Dexterity"] = { },
["Companions gain your Strength"] = { },
["Companions have #% increased Accuracy Rating"] = { { isScalable = true } },
@@ -7257,6 +7518,37 @@ return {
["Conductivity has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } },
["Conductivity has no Reservation if Cast as an Aura"] = { },
["Conduit"] = { },
+ ["Conquered Attribute Passive Skills also grant # to Dexterity"] = { { isScalable = true } },
+ ["Conquered Attribute Passive Skills also grant # to Intelligence"] = { { isScalable = true } },
+ ["Conquered Attribute Passive Skills also grant # to Strength"] = { { isScalable = true } },
+ ["Conquered Attribute Passive Skills also grant # to Tribute"] = { { isScalable = true } },
+ ["Conquered Attribute Passive Skills also grant # to all Attributes"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Armour"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Attack damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Chaos damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Elemental Damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Energy Shield"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Evasion Rating"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Life Regeneration rate"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Mana Regeneration rate"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Physical damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Spell damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% increased Stun Threshold"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant #% reduced Armour"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Attack damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Chaos damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Elemental Ailment Threshold"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Elemental Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Evasion Rating"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Life Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Mana Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Physical damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Spell damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant #% reduced Stun Threshold"] = { { isScalable = true, formats = { "negate" } } },
+ ["Conquered Small Passive Skills also grant Minions deal #% increased damage"] = { { isScalable = true } },
+ ["Conquered Small Passive Skills also grant Minions deal #% reduced damage"] = { { isScalable = true, formats = { "negate" } } },
["Consecrated Ground created by this Flask has Doubled Radius"] = { },
["Consecrated Ground created by this Flask has Tripled Radius"] = { },
["Consecrated Ground created during Effect applies #% increased Damage taken to Enemies"] = { { isScalable = true } },
@@ -7296,6 +7588,7 @@ return {
["Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume # additional Uncorrupted Support Gems"] = { { isScalable = true, formats = { "canonical_stat" } } },
["Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill"] = { { isScalable = false } },
["Consuming Freeze deals #% to #% of\nyour Intelligence as Cold Damage"] = { { isScalable = true }, { isScalable = true } },
+ ["Consuming Glory grants you #% increased Attack damage per Glory consumed for 6 seconds, up to 60%"] = { { isScalable = true } },
["Consuming Ignite deals #% to #% of\nyour Intelligence as Fire Damage"] = { { isScalable = true }, { isScalable = true } },
["Consuming Shock deals #% to #% of\nyour Intelligence as Lightning Damage"] = { { isScalable = true }, { isScalable = true } },
["Contains additional Divination Cards from the current Area"] = { },
@@ -7369,6 +7662,7 @@ return {
["Creates Consecrated Ground on Critical Hit"] = { },
["Creates Consecrated Ground on Use"] = { },
["Creates Consecrated Ground on use"] = { },
+ ["Creates Ignited Ground in for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to #% of your maximum Life"] = { { isScalable = true } },
["Creates a Smoke Cloud on Rampage"] = { },
["Creates a Smoke Cloud on Use"] = { },
["Creeping Frost's Chilling Area has #% increased Movement Speed"] = { { isScalable = true } },
@@ -7380,7 +7674,8 @@ return {
["Critical Hit Chance is #% for Hits with this Weapon"] = { { isScalable = true } },
["Critical Hit Chance is increased by Lightning Resistance"] = { },
["Critical Hit Chance is increased by Overcapped Lightning Resistance"] = { },
- ["Critical Hit Chance is increased by chance to Suppress Spell Damage"] = { },
+ ["Critical Hit chance is Lucky against Parried enemies"] = { },
+ ["Critical Hit chance is Unlucky against Parried enemies"] = { },
["Critical Hits Ignore Enemy Monster Lightning Resistance"] = { },
["Critical Hits Penetrate #% of Enemy Elemental Resistances while affected by Zealotry"] = { { isScalable = true } },
["Critical Hits Poison the enemy"] = { },
@@ -7414,6 +7709,7 @@ return {
["Crush on Hit"] = { },
["Crushes Enemies on Hit"] = { },
["Culling Strike"] = { },
+ ["Culling Strike against Beasts while your Companion is in your Presence"] = { },
["Culling Strike against Burning Enemies"] = { },
["Culling Strike against Enemies Cursed with Poacher's Mark"] = { },
["Culling Strike against Enemies you Mark"] = { },
@@ -7425,17 +7721,13 @@ return {
["Curse Enemies with Conductivity on Hit"] = { },
["Curse Enemies with Despair on Hit"] = { },
["Curse Enemies with Elemental Weakness on Hit"] = { },
- ["Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit"] = { },
["Curse Enemies with Enfeeble on Block"] = { },
["Curse Enemies with Enfeeble on Hit"] = { },
- ["Curse Enemies with Flammability on Block"] = { },
["Curse Enemies with Flammability on Hit"] = { },
["Curse Enemies with Frostbite on Hit"] = { },
["Curse Enemies with Punishment on Hit"] = { },
["Curse Enemies with Socketed Hex Curse Gem on Hit"] = { },
["Curse Enemies with Temporal Chains on Hit"] = { },
- ["Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit"] = { },
- ["Curse Enemies with Vulnerability on Block"] = { },
["Curse Enemies with Vulnerability on Hit"] = { },
["Curse Non-Cursed Enemies with Enfeeble on Hit"] = { },
["Curse Reflection"] = { },
@@ -7444,7 +7736,9 @@ return {
["Curse Skills have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["Curse Skills have #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } },
["Cursed Enemies Killed by Allies in your Presence have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"] = { { isScalable = true } },
+ ["Cursed Enemies Killed by Allies in your Presence have a #% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"] = { { isScalable = true } },
["Cursed Enemies Killed by you, or by Allies in your Presence, have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"] = { { isScalable = true } },
+ ["Cursed Enemies Killed by you, or by Allies in your Presence, have a #% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"] = { { isScalable = true } },
["Cursed Enemies cannot inflict Elemental Ailments on You"] = { },
["Cursed Enemies grant a Frenzy Charge when Hit"] = { },
["Cursed Enemies grant a Power Charge when Hit"] = { },
@@ -7454,15 +7748,28 @@ return {
["Cursed Enemies have a #% chance to grant an Endurance Charge when Hit"] = { { isScalable = true } },
["Cursed Enemies you Kill are destroyed"] = { },
["Cursed Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"] = { { isScalable = true } },
+ ["Cursed Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"] = { { isScalable = true } },
["Curses are inflicted on you instead of Linked targets"] = { },
["Curses have no Activation Delay"] = { },
["Curses on Enemies in your Chilling Areas have #% increased Effect"] = { { isScalable = true } },
["Curses on Enemies in your Chilling Areas have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } },
["Curses you inflict are reflected back to you"] = { },
+ ["Curses you inflict can affect Hexproof Enemies"] = { },
+ ["Curses you inflict have infinite Duration"] = { },
["Curses you with Punishment on Kill"] = { },
["Curses you with Silence when Hit"] = { },
- ["DNT All Elemental Damage from Hits contributes to Freeze Buildup"] = { },
- ["DNT All Elemental Damage from Hits contributes to Ignite Chance and Magnitude"] = { },
+ ["DNT # second between Spellflux occurances"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
+ ["DNT # seconds between Spellflux occurances"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
+ ["DNT #% chance when hitting a Rare Monster to disable one of its Modifiers"] = { { isScalable = true } },
+ ["DNT #% increased duration of time between Spellfluxes"] = { { isScalable = true } },
+ ["DNT #% reduced duration of time between Spellfluxes"] = { { isScalable = true, formats = { "negate" } } },
+ ["DNT Deals #% more Damage per previous Explosive Teleport in sequence"] = { { isScalable = true } },
+ ["DNT Gain #% Edict Declaration when you disable a rare monster mod"] = { { isScalable = true } },
+ ["DNT Hitting a Rare Monster disable one of its Modifiers"] = { },
+ ["DNT Maximum Rage is doubled during effect"] = { },
+ ["DNT Spellcasts you cast yourself within # second which match your future self's most recent cast deal #% more Damage"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true } },
+ ["DNT Spellcasts you cast yourself within # seconds which match your future self's most recent cast deal #% more Damage"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true } },
+ ["DNT-UNUSED BAD VALUE"] = { },
["Damage Blocked is Recouped as Mana"] = { },
["Damage Cone has +1 Radius per # Rage"] = { { isScalable = true } },
["Damage Penetrates #% Chaos Resistance"] = { { isScalable = true } },
@@ -7525,6 +7832,7 @@ return {
["Dash has # Cooldown Uses"] = { { isScalable = true } },
["Dash travels #% increased distance"] = { { isScalable = true } },
["Dash travels #% reduced distance"] = { { isScalable = true, formats = { "negate" } } },
+ ["Dazes on Hit"] = { },
["Deal # to # Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge"] = { { isScalable = true }, { isScalable = true } },
["Deal #% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%"] = { { isScalable = true } },
["Deal #% less Chaos Damage to enemies which have Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
@@ -7565,9 +7873,10 @@ return {
["Deals # to # Physical Damage"] = { { isScalable = true }, { isScalable = true } },
["Deals #% of current Mana as Chaos Damage to you when Effect ends"] = { { isScalable = true } },
["Deals base Chaos Damage equal to #% of your Current Mana"] = { { isScalable = true } },
- ["Debilitate Enemies for # Seconds when you Suppress their Spell Damage"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
["Debilitate Enemies for 1 second on Hit"] = { },
["Debilitate nearby Enemies for # Seconds when Effect ends"] = { { isScalable = true } },
+ ["Debuffs inflicted by Hazards have #% increased Slow Magnitude"] = { { isScalable = true } },
+ ["Debuffs inflicted by Hazards have #% reduced Slow Magnitude"] = { { isScalable = true, formats = { "negate" } } },
["Debuffs on you expire #% faster"] = { { isScalable = true } },
["Debuffs on you expire #% faster while affected by Haste"] = { { isScalable = true, formats = { "negate" } } },
["Debuffs on you expire #% slower"] = { { isScalable = true, formats = { "negate" } } },
@@ -7579,8 +7888,8 @@ return {
["Defences are zero"] = { },
["Defences of Items attached to Animated Guardian also apply to Animated Weapons"] = { },
["Defend against Hits as though you had #% more Armour per 1% current Energy Shield"] = { { isScalable = true } },
- ["Defend with #% of Armour against Attacks from further than 6m"] = { { isScalable = true } },
["Defend with #% of Armour against Critical Hits"] = { { isScalable = true } },
+ ["Defend with #% of Armour against Hits from Enemies that are further than 6m away"] = { { isScalable = true } },
["Defend with #% of Armour against Projectile Attacks"] = { { isScalable = true } },
["Defend with #% of Armour while not on Low Energy Shield"] = { { isScalable = true } },
["Defend with 200% of Armour"] = { },
@@ -7593,14 +7902,16 @@ return {
["Defiance Banner has #% reduced Aura Magnitudes"] = { { isScalable = true, formats = { "negate" } } },
["Defiance Banner has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
["Defiance Banner has #% reduced Taunt duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["Deflected Hits cannot inflict Bleeding on you"] = { },
+ ["Deflected Hits cannot inflict Maim on you"] = { },
["Degenerate #% of maximum Life per second while you have a Totem"] = { { isScalable = true, formats = { "negate" } } },
["Delirious Monsters Killed in Area provide #% increased Reward Progress"] = { { isScalable = true } },
["Delirium Encounters in Area are #% less likely to spawn Unique Bosses"] = { { isScalable = true, formats = { "negate" } } },
["Delirium Encounters in Area are #% more likely to spawn Unique Bosses"] = { { isScalable = true } },
- ["Delirium Encounters in Area have #% chance to generate an additional Reward type"] = { { isScalable = true } },
+ ["Delirium Encounters in Area have #% chance to generate an additional Reward"] = { { isScalable = true } },
["Delirium Fog in Area dissipates #% faster"] = { { isScalable = true } },
["Delirium Fog in Area dissipates #% slower"] = { { isScalable = true, formats = { "negate" } } },
- ["Delirium Fog in Area lasts # additional seconds before dissipating"] = { { isScalable = true, formats = { "milliseconds_to_seconds_0dp" } } },
+ ["Delirium Fog in Area lasts # additional seconds before dissipating"] = { { isScalable = true } },
["Delirium Fog in Area spawns #% increased Fracturing Mirrors"] = { { isScalable = true } },
["Delirium Fog in Area spawns #% reduced Fracturing Mirrors"] = { { isScalable = true, formats = { "negate" } } },
["Delirium Fog in your Maps never dissipates"] = { },
@@ -7638,13 +7949,17 @@ return {
["Determination has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
["Determination has #% increased Reservation"] = { { isScalable = true } },
["Determination has #% reduced Aura Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["Determination has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
+ ["Determination has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "double" } } },
["Determination has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } },
["Determination has no Reservation"] = { },
["Detonate Dead has a #% chance to detonate an additional corpse"] = { { isScalable = true } },
["Detonating Mines is Instant"] = { },
["Detonation Time is # second"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
["Detonation Time is # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
+ ["Detonator skills have #% increased Area of Effect"] = { { isScalable = true } },
+ ["Detonator skills have #% increased damage"] = { { isScalable = true } },
+ ["Detonator skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["Detonator skills have #% reduced damage"] = { { isScalable = true, formats = { "negate" } } },
["Devouring Totem has #% Chance to Consume an additional corpse"] = { { isScalable = true } },
["Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus"] = { },
["Dexterity from Passives in Radius is Transformed to Intelligence"] = { },
@@ -7731,8 +8046,8 @@ return {
["Each Mine applies #% reduced Damage taken to Enemies near it, up to 10%"] = { { isScalable = true, formats = { "negate" } } },
["Each Projectile from Spectral Helix or Spectral Throw has\nbetween #% more and #% less Projectile Speed at random"] = { { isScalable = true, formats = { "divide_by_two_0dp" } }, { isScalable = true, formats = { "divide_by_two_0dp" } } },
["Each Summoned Phantasm grants you Phantasmal Might"] = { },
- ["Each Totem applies #% increased Damage taken to Enemies near it"] = { { isScalable = true } },
- ["Each Totem applies #% reduced Damage taken to Enemies near it"] = { { isScalable = true, formats = { "negate" } } },
+ ["Each Totem applies #% increased Damage taken to Enemies in their Presence"] = { { isScalable = true } },
+ ["Each Totem applies #% reduced Damage taken to Enemies in their Presence"] = { { isScalable = true, formats = { "negate" } } },
["Each Weapon Hits separately if Dual Wielding, dealing #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
["Each Weapon Hits separately if Dual Wielding, dealing #% more Damage"] = { { isScalable = true } },
["Earthquake deals #% increased Damage per 0.1 seconds Duration"] = { { isScalable = true } },
@@ -7745,6 +8060,7 @@ return {
["Eat a Soul when you Hit a Unique Enemy, no more than once every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
["Eat a Soul when you Hit a Unique Enemy, no more than once every second"] = { },
["Effect and Duration of Flames of Chayula on You is Doubled"] = { },
+ ["Effect is not removed when Unreserved Life is Filled"] = { },
["Effect is not removed when Unreserved Mana is Filled"] = { },
["Effect is removed when Hit by a Player"] = { },
["Effect is removed when Ward Breaks"] = { },
@@ -7766,10 +8082,8 @@ return {
["Elemental Damage with Hits is Lucky while you are Shocked"] = { },
["Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead"] = { },
["Elemental Equilibrium"] = { },
- ["Elemental Hit Always Freezes, Shocks and Ignites"] = { },
["Elemental Hit deals #% increased Damage"] = { { isScalable = true } },
["Elemental Hit deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Elemental Hit has #% chance to Freeze, Shock and Ignite"] = { { isScalable = true } },
["Elemental Overload"] = { },
["Elemental Resistances are capped by your highest Maximum Elemental Resistance instead"] = { },
["Elemental Storm has #% less Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
@@ -7778,10 +8092,13 @@ return {
["Elemental Weakness has no Reservation if Cast as an Aura"] = { },
["Elusive also grants #% to Critical Damage Bonus for Skills Supported by Nightblade"] = { { isScalable = true } },
["Emits a golden glow"] = { },
+ ["Empowered Attacks Gain #% of Physical Damage as Extra Fire damage"] = { { isScalable = true } },
["Empowered Attacks Knock Enemies Back on Hit"] = { },
["Empowered Attacks Overwhelm #% of Physical Damage Reduction"] = { { isScalable = true } },
["Empowered Attacks deal #% increased Damage"] = { { isScalable = true } },
+ ["Empowered Attacks deal #% increased damage per 10 Tribute"] = { { isScalable = true } },
["Empowered Attacks deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Empowered Attacks deal #% reduced damage per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Empowered Attacks have #% increased Stun Buildup"] = { { isScalable = true } },
["Empowered Attacks have #% reduced Stun Buildup"] = { { isScalable = true, formats = { "negate" } } },
["Empowered Attacks have a #% chance to Knock Enemies Back on Hit"] = { { isScalable = true } },
@@ -7820,11 +8137,16 @@ return {
["Enemies Hindered by you have #% increased Life Regeneration rate"] = { { isScalable = true } },
["Enemies Hindered by you have #% reduced Life Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
["Enemies Hindered by you take #% increased Chaos Damage"] = { { isScalable = true } },
+ ["Enemies Hindered by you take #% increased Elemental Damage"] = { { isScalable = true } },
+ ["Enemies Hindered by you take #% increased Physical Damage"] = { { isScalable = true } },
["Enemies Hindered by you take #% reduced Chaos Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Enemies Hindered by you take #% reduced Elemental"] = { { isScalable = true, formats = { "negate" } } },
+ ["Enemies Hindered by you take #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["Enemies Ignited by you during Effect take #% increased Damage"] = { { isScalable = true } },
["Enemies Ignited by you during Effect take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Enemies Ignited by you have #% of Physical Damage they deal converted to Fire"] = { { isScalable = true } },
["Enemies Ignited by you have #% to Fire Resistance"] = { { isScalable = true } },
+ ["Enemies Ignited by you permanently take #% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%"] = { { isScalable = true } },
["Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite"] = { },
["Enemies Ignited or Chilled by you have #% to Elemental Resistances"] = { { isScalable = true } },
["Enemies Immobilised by you take #% less Damage"] = { { isScalable = true } },
@@ -7837,7 +8159,6 @@ return {
["Enemies Killed with Attack Hits have a #% chance to Explode, dealing a tenth of their Life as Physical Damage"] = { { isScalable = true } },
["Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Chaos Damage"] = { { isScalable = true } },
["Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage"] = { { isScalable = true } },
- ["Enemies Killed with Wand Hits have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage"] = { { isScalable = true } },
["Enemies Maimed by you take #% increased Damage Over Time"] = { { isScalable = true } },
["Enemies Maimed by you take #% increased Physical Damage"] = { { isScalable = true } },
["Enemies Maimed by you take #% reduced Damage Over Time"] = { { isScalable = true, formats = { "negate" } } },
@@ -7870,8 +8191,7 @@ return {
["Enemies affected by your Spider's Webs deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Enemies affected by your Spider's Webs have #% to All Resistances"] = { { isScalable = true } },
["Enemies are Culled on Block"] = { },
- ["Enemies are Frozen as if you had dealt #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Enemies are Frozen as if you had dealt #% more Damage"] = { { isScalable = true } },
+ ["Enemies are Intimidated for # seconds when you Immobilise them"] = { { isScalable = true } },
["Enemies are Maimed for # second after becoming Unpinned"] = { { isScalable = true } },
["Enemies are Maimed for # seconds after becoming Unpinned"] = { { isScalable = true } },
["Enemies do not block your movement for # second on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
@@ -7881,7 +8201,6 @@ return {
["Enemies drop Shocked Ground when Hitting you, no more than once every 2 seconds"] = { },
["Enemies have #% increased Evasion if you have Hit them Recently"] = { { isScalable = true } },
["Enemies have #% reduced Evasion if you have Hit them Recently"] = { { isScalable = true, formats = { "negate" } } },
- ["Enemies have #% reduced chance to Dodge your Hits"] = { { isScalable = true } },
["Enemies have Maximum Concentration equal to #% of their Maximum Life"] = { { isScalable = true } },
["Enemies have an Accuracy Penalty against you based on Distance"] = { },
["Enemies in Jagged Ground you create take #% increased Damage"] = { { isScalable = true } },
@@ -7895,12 +8214,16 @@ return {
["Enemies in your Presence are Blinded"] = { },
["Enemies in your Presence are Ignited as though dealt # Base Fire Damage"] = { { isScalable = true } },
["Enemies in your Presence are Intimidated"] = { },
+ ["Enemies in your Presence cannot be Revived"] = { },
["Enemies in your Presence count as being on Low Life"] = { },
["Enemies in your Presence count as having #% less Power"] = { { isScalable = false, formats = { "negate" } } },
["Enemies in your Presence count as having #% more Power"] = { { isScalable = false } },
["Enemies in your Presence count as having double Power"] = { },
["Enemies in your Presence have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
+ ["Enemies in your Presence have #% increased Life Regeneration rate"] = { { isScalable = true } },
["Enemies in your Presence have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Enemies in your Presence have #% reduced Life Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Enemies in your Presence have #% to Fire Resistance"] = { { isScalable = true } },
["Enemies in your Presence have Fire Exposure"] = { },
["Enemies in your Presence have Lightning Resistance equal to yours"] = { },
["Enemies in your Presence have at least #% of Life Reserved"] = { { isScalable = true } },
@@ -7950,6 +8273,8 @@ return {
["Enemies you Curse take #% increased Damage"] = { { isScalable = true } },
["Enemies you Electrocute have #% increased Damage taken"] = { { isScalable = true } },
["Enemies you Electrocute have #% reduced Damage taken"] = { { isScalable = true, formats = { "negate" } } },
+ ["Enemies you Fully Armour Break are Maimed"] = { },
+ ["Enemies you Fully Armour Break cannot Regenerate Life"] = { },
["Enemies you Kill Explode, dealing #% of their Life as Physical Damage"] = { { isScalable = true } },
["Enemies you Kill during Effect have a #% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element"] = { { isScalable = true } },
["Enemies you Kill have #% chance to Explode, dealing 500% of their maximum Life as Fire Damage"] = { { isScalable = true } },
@@ -7972,11 +8297,13 @@ return {
["Enemies you Taunt have a #% increased chance to be Stunned"] = { { isScalable = true } },
["Enemies you Taunt have a #% reduced chance to be Stunned"] = { { isScalable = true, formats = { "negate" } } },
["Enemies you apply Incision to take #% increased Physical Damage per Incision"] = { { isScalable = true } },
+ ["Enemies you inflict Bleeding on cannot Regenerate Life"] = { },
["Enemies you inflict Bleeding on grant #% increased Flask Charges"] = { { isScalable = true } },
["Enemies you inflict Bleeding on grant #% reduced Flask Charges"] = { { isScalable = true, formats = { "negate" } } },
["Enemies you inflict Bleeding on have #% increased Movement Speed"] = { { isScalable = true } },
["Enemies you inflict Bleeding on have #% reduced Movement Speed"] = { { isScalable = true, formats = { "negate" } } },
["Enemies you kill are Shocked"] = { },
+ ["Enemies you kill with Empowered Attacks have a #% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"] = { { isScalable = true } },
["Enemies you've Hit Recently have #% increased Life Regeneration rate"] = { { isScalable = true } },
["Enemies you've Hit Recently have #% reduced Life Regeneration rate"] = { { isScalable = true, formats = { "negate" } } },
["Enemy Hits inflict Temporal Chains on you"] = { },
@@ -7992,7 +8319,6 @@ return {
["Energy Shield Recharge has no delay"] = { },
["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"] = { },
["Energy Shield Recharge starts on use"] = { },
- ["Energy Shield Recharge starts when you Suppress Spell Damage"] = { },
["Energy Shield Recharge starts when you are Stunned"] = { },
["Energy Shield Recharge starts when you use a Mana Flask"] = { },
["Energy Shield is increased by Overcapped Cold Resistance"] = { },
@@ -8027,6 +8353,7 @@ return {
["Evasion Rating also grants Elemental Damage reduction"] = { },
["Evasion Rating from Equipped Body Armour is halved"] = { },
["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled"] = { },
+ ["Evasion Rating is doubled if you have not been Hit Recently"] = { },
["Evasion Rating is increased by Overcapped Cold Resistance"] = { },
["Evasion Rating is increased by Overcapped Lightning Resistance"] = { },
["Evasion Rating is zero"] = { },
@@ -8083,7 +8410,7 @@ return {
["Explosive Trap has #% increased Area of Effect"] = { { isScalable = true } },
["Explosive Trap has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["Exposure inflicted by Hydrosphere on Drenched Enemies lowers those Resistances by an extra #%"] = { { isScalable = true } },
- ["Exposure you inflict lowers the affected Resistance by an additional #%"] = { { isScalable = true } },
+ ["Exposure you inflict lowers Resistances by an additional #%"] = { { isScalable = true } },
["Exposure you inflict lowers the affected Total Resistance by at least #%"] = { { isScalable = true } },
["Exsanguinate deals #% increased Damage"] = { { isScalable = true } },
["Exsanguinate deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -8109,12 +8436,12 @@ return {
["Final Repeat of Attack Skills deals #% more Damage"] = { { isScalable = true } },
["Final Repeat of Spells has #% increased Area of Effect"] = { { isScalable = true } },
["Final Repeat of Spells has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["Fire Damage from Hits Contributes to Shock Chance instead of Ignite Chance and Magnitude"] = { },
+ ["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes"] = { },
["Fire Damage from Hits also Contributes to Chill Magnitude"] = { },
["Fire Damage from Hits also Contributes to Freeze Buildup"] = { },
["Fire Damage from Hits also Contributes to Poison Magnitude"] = { },
["Fire Damage from Hits also Contributes to Shock Chance"] = { },
- ["Fire Damage from Hits does not contribute to Ignite Chance or Magnitude"] = { },
+ ["Fire Damage from Hits does not contribute to Flammability or Ignite Magnitudes"] = { },
["Fire Damage is increased by 1% per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } },
["Fire Elementals have #% increased maximum Life"] = { { isScalable = true } },
["Fire Elementals have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } },
@@ -8132,14 +8459,12 @@ return {
["Fire Trap has #% reduced Fire Trap Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Fire Trap throws up to # additional Traps"] = { { isScalable = true } },
["Fire Trap throws up to 1 additional Trap"] = { },
- ["Fireball Always Ignites"] = { },
["Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect"] = { { isScalable = true } },
["Fireball Projectiles gain Area as they travel farther, up to #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["Fireball Projectiles gain Radius as they travel farther, up to # Radius"] = { { isScalable = true } },
["Fireball and Rolling Magma have #% less Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["Fireball and Rolling Magma have #% more Area of Effect"] = { { isScalable = true } },
["Fireball cannot Ignite"] = { },
- ["Fireball has #% chance to Ignite"] = { { isScalable = true } },
["Fireball has #% chance to Scorch"] = { { isScalable = true } },
["Fires Projectiles every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_1dp" } } },
["First # minions summoned have no base spirit reservation"] = { { isScalable = true } },
@@ -8149,6 +8474,7 @@ return {
["Fish Rot upon being Caught"] = { },
["Fish caught from Magmatic Fishing Holes are already Cooked"] = { },
["Fish caught with this Fishing Rod will always tell the truth"] = { },
+ ["Fissure Skills have a #% chance to create an additional Fissure"] = { { isScalable = true } },
["Flame Dash has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Flame Dash has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Flame Golems have #% increased Damage"] = { { isScalable = true } },
@@ -8173,6 +8499,7 @@ return {
["Flamethrower, Seismic and Lightning Spire Trap have # Cooldown Uses"] = { { isScalable = true } },
["Flamethrower, Seismic and Lightning Spire Trap have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Flamethrower, Seismic and Lightning Spire Trap have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Flammability Magnitude is doubled"] = { },
["Flammability can affect Hexproof Enemies"] = { },
["Flammability has #% increased Reservation if Cast as an Aura"] = { { isScalable = true } },
["Flammability has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } },
@@ -8221,7 +8548,6 @@ return {
["Forbidden Rite fires # additional Projectiles"] = { { isScalable = true } },
["Forbidden Rite fires an additional Projectile"] = { },
["Forbidden Rite fires extra Projectiles at up to # surrounding Enemies"] = { { isScalable = true } },
- ["Forks Critical Hits"] = { },
["Fortifying Hits against Unique Enemies grant #% increased Fortification"] = { { isScalable = true } },
["Fortifying Hits against Unique Enemies grant #% reduced Fortification"] = { { isScalable = true, formats = { "negate" } } },
["Fortifying Hits grant #% increased Fortification"] = { { isScalable = true } },
@@ -8233,11 +8559,8 @@ return {
["Fractured Walls only conceal Currency Chests"] = { },
["Fractured Walls only conceal Fossilised Remains"] = { },
["Fractured Walls only conceal Resonator Chests"] = { },
- ["Freeze Chilled Enemies as though dealing #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Freeze Chilled Enemies as though dealing #% more Damage"] = { { isScalable = true } },
["Freeze Enemies as though dealing #% more Damage"] = { { isScalable = true } },
["Freeze Mine causes Enemies to lose an additional #% Cold Resistance while Frozen"] = { { isScalable = true, formats = { "negate" } } },
- ["Freeze as though dealing Cold damage equal to #% of your maximum Mana when Hit"] = { { isScalable = true } },
["Freezes Enemies that are on Full Life"] = { },
["Freezing Pulse fires # additional Projectiles"] = { { isScalable = true } },
["Freezing Pulse fires an additional Projectile"] = { },
@@ -8280,6 +8603,7 @@ return {
["Frozen Sweep deals #% more Damage"] = { { isScalable = true } },
["Frozen Sweep deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Fully Armour Broken enemies you kill with Hits Shatter"] = { },
+ ["Fully Broken Armour effects also apply to Fire Damage Taken from Hits"] = { },
["Gain # Armour per Grand Spectrum"] = { { isScalable = true } },
["Gain # Charge when you are Hit by an Enemy"] = { { isScalable = true } },
["Gain # Charges when you are Hit by an Enemy"] = { { isScalable = true } },
@@ -8305,7 +8629,6 @@ return {
["Gain # Frenzy Charge on use"] = { { isScalable = true } },
["Gain # Frenzy Charges after Spending a total of 200 Mana"] = { { isScalable = true } },
["Gain # Frenzy Charges on use"] = { { isScalable = true } },
- ["Gain # Guard during Effect"] = { { isScalable = true } },
["Gain # Life and Mana per Enemy Hit with Attacks"] = { { isScalable = true } },
["Gain # Life for each Ignited Enemy hit with Attacks"] = { { isScalable = true } },
["Gain # Life on Culling Strike"] = { { isScalable = true } },
@@ -8343,12 +8666,13 @@ return {
["Gain # Rage after Spending a total of 200 Mana"] = { { isScalable = true } },
["Gain # Rage on Hit"] = { { isScalable = true } },
["Gain # Rage on Hit per Enemy Power"] = { { isScalable = true } },
- ["Gain # Rage on Hit, once per Skill use"] = { { isScalable = true } },
["Gain # Rage on Melee Axe Hit"] = { { isScalable = true } },
["Gain # Rage on Melee Hit"] = { { isScalable = true } },
["Gain # Rage when Critically Hit by an Enemy"] = { { isScalable = true } },
["Gain # Rage when Hit by an Enemy"] = { { isScalable = true } },
+ ["Gain # Rage when Hit by an Enemy during effect"] = { { isScalable = true } },
["Gain # Rage when you Kill an Enemy"] = { { isScalable = true } },
+ ["Gain # Rage when you use a Life Flask"] = { { isScalable = true } },
["Gain # Rage when you use a Warcry"] = { { isScalable = true } },
["Gain # Souls for Vaal Skills on Rampage"] = { { isScalable = true } },
["Gain # Vaal Soul Per Second during effect"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
@@ -8376,19 +8700,23 @@ return {
["Gain #% of Damage as Extra Chaos Damage"] = { { isScalable = true } },
["Gain #% of Damage as Extra Chaos Damage per 20 Unreserved Darkness"] = { { isScalable = true } },
["Gain #% of Damage as Extra Cold Damage"] = { { isScalable = true } },
+ ["Gain #% of Damage as Extra Cold Damage while on Chilled Ground"] = { { isScalable = true } },
["Gain #% of Damage as Extra Cold Damage with Spells"] = { { isScalable = true } },
["Gain #% of Damage as Extra Damage of all Elements"] = { { isScalable = true } },
["Gain #% of Damage as Extra Fire Damage"] = { { isScalable = true } },
+ ["Gain #% of Damage as Extra Fire Damage for\nevery different Grenade fired in the past 8 seconds"] = { { isScalable = true } },
+ ["Gain #% of Damage as Extra Fire Damage while on Ignited Ground"] = { { isScalable = true } },
["Gain #% of Damage as Extra Fire Damage with Spells"] = { { isScalable = true } },
["Gain #% of Damage as Extra Lightning Damage"] = { { isScalable = true } },
+ ["Gain #% of Damage as Extra Lightning Damage while on Shocked Ground"] = { { isScalable = true } },
["Gain #% of Damage as Extra Lightning Damage with Spells"] = { { isScalable = true } },
["Gain #% of Damage as Extra Physical Damage"] = { { isScalable = true } },
- ["Gain #% of Elemental Damage Damage as Extra Lightning Damage"] = { { isScalable = true } },
["Gain #% of Elemental Damage as Extra Chaos Damage"] = { { isScalable = true } },
["Gain #% of Elemental Damage as Extra Chaos Damage during effect"] = { { isScalable = true } },
["Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"] = { { isScalable = true } },
["Gain #% of Elemental Damage as Extra Cold Damage"] = { { isScalable = true } },
["Gain #% of Elemental Damage as Extra Fire Damage"] = { { isScalable = true } },
+ ["Gain #% of Elemental Damage as Extra Lightning Damage"] = { { isScalable = true } },
["Gain #% of Evasion Rating as extra Ailment Threshold"] = { { isScalable = true } },
["Gain #% of Evasion Rating as extra Armour"] = { { isScalable = true } },
["Gain #% of Fire Damage as Extra Chaos Damage"] = { { isScalable = true } },
@@ -8406,12 +8734,15 @@ return {
["Gain #% of Physical Damage as Extra Chaos Damage per Elder Item Equipped"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Cold Damage"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Cold Damage against Dazed Enemies"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Cold Damage against Shocked Enemies"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Cold Damage during effect"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Cold Damage with Attacks"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Damage of a random Element"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Damage of a random Element while you are Ignited"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Damage of each Element per Spirit Charge"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Fire Damage"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Fire Damage if you've Killed Recently"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
@@ -8419,6 +8750,9 @@ return {
["Gain #% of Physical Damage as Extra Fire Damage while affected by Anger"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Fire Damage with Attacks"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Lightning Damage"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Lightning Damage against Chilled Enemies"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Lightning Damage against Dazed Enemies"] = { { isScalable = true } },
+ ["Gain #% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath"] = { { isScalable = true } },
["Gain #% of Physical Damage as Extra Lightning Damage with Attacks"] = { { isScalable = true } },
["Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds"] = { { isScalable = true } },
@@ -8467,6 +8801,7 @@ return {
["Gain Arcane Surge on Hit with Spells"] = { },
["Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion"] = { },
["Gain Arcane Surge on Hit with Spells while at maximum Power Charges"] = { },
+ ["Gain Arcane Surge when a Minion Dies"] = { },
["Gain Arcane Surge when you Kill an Enemy"] = { },
["Gain Arcane Surge when you Summon a Totem"] = { },
["Gain Arcane Surge when you deal a Critical Hit"] = { },
@@ -8474,16 +8809,23 @@ return {
["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"] = { },
["Gain Arcane Surge when your Trap is Triggered by an Enemy"] = { },
["Gain Brutal Charges instead of Endurance Charges"] = { },
+ ["Gain Cold Thorns Damage equal to #% of your maximum Mana"] = { { isScalable = true } },
["Gain Convergence when you Hit a Unique Enemy, no more than once every 8 seconds"] = { },
["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no more than once every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
+ ["Gain Deflection Rating equal to #% of Armour"] = { { isScalable = true } },
+ ["Gain Deflection Rating equal to #% of Evasion Rating"] = { { isScalable = true } },
+ ["Gain Deflection Rating equal to #% of Evasion Rating per 25 Tribute"] = { { isScalable = true } },
["Gain Elemental Conflux for # seconds when you Kill a Rare or Unique Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Gain Elusive on Critical Hit"] = { },
["Gain Elusive on Kill"] = { },
["Gain Elusive on reaching Low Life"] = { },
["Gain Exposed to Corruption stacks twice as frequently\nLose 1 stack of Exposed to Corruption every 5 seconds"] = { },
["Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges"] = { },
+ ["Gain Flame Archon when you Ignite an Enemy"] = { },
+ ["Gain Ice Archon when your Energy Shield Recharge begins"] = { },
["Gain Immunity to Physical Damage for # second on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Gain Immunity to Physical Damage for # seconds on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
+ ["Gain Lightning Archon after spending 100% of your Maximum Mana"] = { },
["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"] = { },
["Gain Onslaught for # second per Frenzy Charge on use"] = { { isScalable = true } },
["Gain Onslaught for # seconds on Kill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
@@ -8497,10 +8839,11 @@ return {
["Gain Onslaught for 4 seconds on Hit"] = { },
["Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"] = { },
["Gain Onslaught for 4 seconds on Kill"] = { },
+ ["Gain Onslaught for 4 seconds when a Minion Dies"] = { },
["Gain Phasing for # seconds when your Trap is triggered by an Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Gain Phasing for 3 seconds when your Trap is triggered by an Enemy"] = { },
["Gain Phasing for 4 seconds on Kill"] = { },
- ["Gain Physical Thorns damage equal to #% of Armour on Equipped Body Armour"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
+ ["Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["Gain Rampage while at Maximum Endurance Charges"] = { },
["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"] = { },
["Gain Soul Eater during any Flask Effect"] = { },
@@ -8574,9 +8917,9 @@ return {
["Gain a stack of Jade every second"] = { },
["Gain additional Ailment Threshold equal to #% of maximum Energy Shield"] = { { isScalable = true } },
["Gain additional Elemental Damage Reduction equal to half your Chaos Resistance"] = { },
- ["Gain additional Stun Threshold equal to #% of Armour on Equipped Items"] = { { isScalable = true } },
+ ["Gain additional Stun Threshold equal to #% of Item Armour on Equipped Armour Items"] = { { isScalable = true } },
["Gain additional Stun Threshold equal to #% of maximum Energy Shield"] = { { isScalable = true } },
- ["Gain additional maximum Life equal to #% of the Energy Shield on Equipped Body Armour"] = { { isScalable = true } },
+ ["Gain additional maximum Life equal to #% of the Item Energy Shield on Equipped Body Armour"] = { { isScalable = true } },
["Gain an Endurance Charge each second while Channelling"] = { },
["Gain an Endurance Charge every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Gain an Endurance Charge every 4 seconds while Stationary"] = { },
@@ -8598,6 +8941,7 @@ return {
["Gain an Endurance, Frenzy or Power Charge every 6 seconds"] = { },
["Gain an Endurance, Frenzy or Power charge when you Block"] = { },
["Gain an additional Charge when you gain a Charge"] = { },
+ ["Gain an additional Charge when you gain a Charge per 10 Tribute"] = { },
["Gain an additional Endurance Charge when you gain an Endurance Charge"] = { },
["Gain an additional Frenzy Charge when you gain a Frenzy Charge"] = { },
["Gain an additional Power Charge when you gain a Power Charge"] = { },
@@ -8633,6 +8977,10 @@ return {
["Gems can be Socketed in this Item ignoring Socket Colour"] = { },
["General's Cry has # to maximum number of Mirage Warriors"] = { { isScalable = true } },
["General's Cry has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
+ ["Generates #% of Monster Power as Glory for this Skill on Fully Breaking Armour"] = { { isScalable = true } },
+ ["Generates #% of Monster Power as Glory for this Skill on Hitting with an Attack"] = { { isScalable = true } },
+ ["Generates #% of Monster Power as Glory for\nthis Skill on Heavy Stunning an enemy"] = { { isScalable = true } },
+ ["Generates #% of Monster Power as Glory for\nthis Skill on Igniting an enemy"] = { { isScalable = true } },
["Giant's Blood"] = { },
["Glacial Cascade gains an additional Burst with # Intelligence from Passives in Radius"] = { { isScalable = true } },
["Glacial Cascade has # additional Bursts"] = { { isScalable = true } },
@@ -8641,6 +8989,11 @@ return {
["Glacial Hammer deals Cold-only Splash Damage to surrounding targets"] = { },
["Glacial Hammer has #% chance to Freeze"] = { { isScalable = true } },
["Glancing Blows"] = { },
+ ["Glorifying the defilement of # souls in tribute to Amanamu\nPassives in radius are Conquered by the Abyssals"] = { { isScalable = true } },
+ ["Glorifying the defilement of # souls in tribute to Kulemak\nPassives in radius are Conquered by the Abyssals"] = { { isScalable = true } },
+ ["Glorifying the defilement of # souls in tribute to Kurgal\nPassives in radius are Conquered by the Abyssals"] = { { isScalable = true } },
+ ["Glorifying the defilement of # souls in tribute to Tecrod\nPassives in radius are Conquered by the Abyssals"] = { { isScalable = true } },
+ ["Glorifying the defilement of # souls in tribute to Ulaman\nPassives in radius are Conquered by the Abyssals"] = { { isScalable = true } },
["Glows while in an Area containing a Unique Fish"] = { },
["Golden Radiance"] = { },
["Golem Skills have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
@@ -8851,20 +9204,15 @@ return {
["Has # Charm Slot"] = { { isScalable = true } },
["Has # Charm Slots"] = { { isScalable = true } },
["Has # Sockets"] = { { isScalable = true } },
- ["Has # White Sockets"] = { { isScalable = true } },
["Has 1 Abyssal Socket"] = { },
["Has 1 Socket"] = { },
- ["Has 1 White Socket"] = { },
["Has Consumed 1 Gem"] = { },
["Has Elder, Shaper and all Conqueror Influences"] = { },
["Has an additional Implicit Mod"] = { },
["Has maximum Quality"] = { },
["Has no Accuracy Penalty from Range"] = { },
["Has no Attribute Requirements"] = { },
- ["Has no Blue Sockets"] = { },
["Has no Energy Shield"] = { },
- ["Has no Green Sockets"] = { },
- ["Has no Red Sockets"] = { },
["Has no Sockets"] = { },
["Has one socket of each colour"] = { },
["Haste has #% increased Aura Effect"] = { { isScalable = true } },
@@ -8883,10 +9231,12 @@ return {
["Hatred has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
["Hatred has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } },
["Hatred has no Reservation"] = { },
+ ["Hazards cannot be triggered for # seconds after being created"] = { { isScalable = true } },
["Hazards have #% chance to rearm after they are triggered"] = { { isScalable = true } },
["Hazards rearm after they are triggered"] = { },
["Heartstopper"] = { },
["Heavy Strike has a #% chance to deal Double Damage"] = { { isScalable = true } },
+ ["Heavy Stuns Enemies that are on Full Life"] = { },
["Heist Chests Duplicate contained Basic Currency"] = { },
["Heist Chests Duplicate contained Blighted Maps and Catalysts"] = { },
["Heist Chests Duplicate contained Breach Splinters"] = { },
@@ -8932,7 +9282,7 @@ return {
["Herald of Agony has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
["Herald of Agony has #% increased Reservation"] = { { isScalable = true } },
["Herald of Agony has #% reduced Buff Effect"] = { { isScalable = true, formats = { "negate" } } },
- ["Herald of Agony has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "double" } } },
+ ["Herald of Agony has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
["Herald of Agony has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } },
["Herald of Ash has #% increased Buff Effect"] = { { isScalable = true } },
["Herald of Ash has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
@@ -9023,9 +9373,11 @@ return {
["Hits that Heavy Stun inflict Fire Exposure"] = { },
["Hits that Stun Enemies have Culling Strike"] = { },
["Hits that Stun inflict Bleeding"] = { },
+ ["Hits that inflict Bleeding consume Pinned to gain #% increased Magnitude of Bleeding inflicted"] = { { isScalable = true } },
["Hits treat Enemy Monster Elemental Resistance values as inverted"] = { },
["Hits with Cleave Fortify"] = { },
["Hits with Melee Movement Skills have #% chance to Fortify"] = { { isScalable = true } },
+ ["Hits with Shield Skills which Heavy Stun enemies break fully Break Armour"] = { },
["Hits with Vigilant Strike Fortify you and Nearby Allies for # seconds"] = { { isScalable = true } },
["Hits with this Weapon Freeze Enemies as though dealing #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
["Hits with this Weapon Freeze Enemies as though dealing #% more Damage"] = { { isScalable = true } },
@@ -9091,7 +9443,6 @@ return {
["If you have Blocked Recently, you and nearby Allies Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second_0dp" } } },
["If you've Attacked Recently, you\nand nearby Allies have #% Chance to Block Attack Damage"] = { { isScalable = true } },
["If you've Blocked in the past 10 seconds, you\nand nearby Allies cannot be Stunned"] = { },
- ["If you've Cast a Spell Recently, you\nand nearby Allies have #% Chance to Block Spell Damage"] = { { isScalable = true } },
["If you've Consumed a corpse Recently, you and your Minions have #% increased Area of Effect"] = { { isScalable = true } },
["If you've Consumed a corpse Recently, you and your Minions have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["If you've Hit an Enemy Recently, you and nearby Allies Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second_1dp" } } },
@@ -9100,7 +9451,6 @@ return {
["If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed"] = { { isScalable = true } },
["If you've Warcried Recently, you and nearby allies\nhave #% increased Attack Speed"] = { { isScalable = true } },
["If you've used a Skill Recently, you and nearby Allies have Tailwind"] = { },
- ["Ignite Enemies in Presence as though dealing Fire damage equal to #% of your maximum Life when used"] = { { isScalable = true } },
["Ignite on Enemies you Kill Spreads to other Enemies within # metres"] = { { isScalable = false, formats = { "divide_by_ten_1dp_if_required" } } },
["Ignited Enemies Burn #% slower"] = { { isScalable = true } },
["Ignited Enemies Killed by your Hits are destroyed"] = { },
@@ -9115,6 +9465,7 @@ return {
["Ignore Stuns while using Socketed Attack Skills"] = { },
["Ignore Warcry Cooldowns"] = { },
["Ignore all Movement Penalties from Armour"] = { },
+ ["Ignore all Movement Penalties from Armour if you have at least 100 Tribute"] = { },
["Imbalanced Guard"] = { },
["Immobilise enemies at #% buildup instead of 100%"] = { { isScalable = true } },
["Immortal Call Grants #% less Elemental Damage taken per Endurance Charge removed"] = { { isScalable = true, formats = { "divide_by_one_hundred_and_negate" } } },
@@ -9125,8 +9476,10 @@ return {
["Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating"] = { },
["Immune to Burning Ground, Shocked Ground and Chilled Ground"] = { },
["Immune to Chill"] = { },
+ ["Immune to Chill if a majority of your Socketed Support Gems are Blue"] = { },
["Immune to Cold Ailments"] = { },
["Immune to Cold Damage"] = { },
+ ["Immune to Corrupted Blood"] = { },
["Immune to Curses if Corrupted"] = { },
["Immune to Curses if you've cast Despair in the past 10 seconds"] = { },
["Immune to Curses while Channelling"] = { },
@@ -9142,16 +9495,21 @@ return {
["Immune to Fire Damage"] = { },
["Immune to Freeze"] = { },
["Immune to Freeze and Chill while Ignited"] = { },
+ ["Immune to Freeze and Chill while affected by Ice Archon"] = { },
["Immune to Freeze while affected by Purity of Ice"] = { },
["Immune to Hinder"] = { },
["Immune to Ignite"] = { },
["Immune to Ignite and Shock"] = { },
+ ["Immune to Ignite if a majority of your Socketed Support Gems are Red"] = { },
+ ["Immune to Ignite while affected by Flame Archon"] = { },
["Immune to Ignite while affected by Purity of Fire"] = { },
["Immune to Maim"] = { },
["Immune to Poison"] = { },
["Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"] = { },
["Immune to Reflected Damage if you've cast Punishment in the past 10 seconds"] = { },
["Immune to Shock"] = { },
+ ["Immune to Shock if a majority of your Socketed Support Gems are Green"] = { },
+ ["Immune to Shock while affected by Lightning Archon"] = { },
["Immune to Shock while affected by Purity of Lightning"] = { },
["Immune to Thorns damage"] = { },
["Immune to Withered"] = { },
@@ -9219,7 +9577,10 @@ return {
["Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage"] = { },
["Increases and Reductions to Companion Damage also apply to you"] = { },
["Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills"] = { },
+ ["Increases and Reductions to Energy Shield Recharge Rate also apply to Deflection Rating"] = { },
+ ["Increases and Reductions to Energy Shield Recharge Rate also apply to Deflection Rating at #% of their value"] = { { isScalable = true } },
["Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value"] = { },
+ ["Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate"] = { },
["Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield"] = { },
["Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value"] = { },
["Increases and Reductions to Light Radius also apply to Accuracy"] = { },
@@ -9252,11 +9613,12 @@ return {
["Infernal Blow Explosion has #% chance to apply Uncharged Debuff on Hit"] = { { isScalable = true } },
["Infernal Cry has #% increased Area of Effect"] = { { isScalable = true } },
["Infernal Cry has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
- ["Infinite Projectile Parry Range"] = { },
+ ["Infinite Parry Range"] = { },
["Inflict # Corrupted Blood Debuffs for # second on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true }, { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Inflict # Corrupted Blood Debuffs for # seconds on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true }, { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Inflict # Grasping Vine on Hit"] = { { isScalable = true } },
["Inflict # Grasping Vines on Hit"] = { { isScalable = true } },
+ ["Inflict Abyssal Wasting on Hit"] = { },
["Inflict Bleeding on Hit"] = { },
["Inflict Brittle on Enemies when you Block their Damage"] = { },
["Inflict Cold Exposure on Hit"] = { },
@@ -9267,19 +9629,22 @@ return {
["Inflict Corrupted Blood for # second on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Inflict Corrupted Blood for # seconds on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds"] = { { isScalable = true } },
+ ["Inflict Elemental Exposure on Hit"] = { },
+ ["Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by #%"] = { { isScalable = true } },
+ ["Inflict Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds, every 0.25 seconds while raised"] = { },
+ ["Inflict Exposure on Hit"] = { },
+ ["Inflict Exposure on Hit, lowering Total Elemental Resistances by #%"] = { { isScalable = true } },
["Inflict Fire Exposure on Hit"] = { },
["Inflict Fire Exposure on Hit if you have at least 150 Devotion"] = { },
["Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds"] = { },
["Inflict Fire Exposure on Hit, lowering Total Fire Resistance by #%"] = { { isScalable = true } },
["Inflict Fire Exposure on Shocking an Enemy"] = { },
- ["Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage"] = { },
["Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used"] = { },
["Inflict Fire, Cold, and Lightning Exposure on Hit"] = { },
+ ["Inflict Lightning Exposure for # seconds when you Electrocute an Enemy"] = { { isScalable = true } },
["Inflict Lightning Exposure on Critical Hit"] = { },
- ["Inflict Lightning Exposure on Hit"] = { },
["Inflict Lightning Exposure on Hit if you have at least 150 Devotion"] = { },
["Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds"] = { },
- ["Inflict Lightning Exposure on Hit, lowering Total Lightning Resistance by #%"] = { { isScalable = true } },
["Inflict Withered for 2 seconds on Hit"] = { },
["Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds"] = { },
["Inflict Withered for 2 seconds on Hit with this Weapon"] = { },
@@ -9295,7 +9660,6 @@ return {
["Inflicts Fire Exposure when this Weapon Fully Breaks Armour"] = { },
["Inflicts a random Curse on you when your Totems die, ignoring Curse limit"] = { },
["Infusion grants #% of Projectile Damage Gained as Extra of the matching Elemental Damage Type when Consumed"] = { { isScalable = true } },
- ["Infusions Infuse your Projectiles without being Consumed"] = { },
["Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws"] = { },
["Inherent Rage Loss starts # seconds later"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Inherent Rage Loss starts 1 second later"] = { },
@@ -9305,8 +9669,12 @@ return {
["Inherent bonuses gained from Attributes are doubled"] = { },
["Inherent effects from having Rage are Doubled"] = { },
["Inherent effects from having Rage are Tripled"] = { },
+ ["Inherent loss of Heat is #% faster"] = { { isScalable = true } },
+ ["Inherent loss of Heat is #% slower"] = { { isScalable = true, formats = { "negate" } } },
["Inherent loss of Rage is #% faster"] = { { isScalable = true } },
+ ["Inherent loss of Rage is #% faster per 10 Tribute"] = { { isScalable = true } },
["Inherent loss of Rage is #% slower"] = { { isScalable = true, formats = { "negate" } } },
+ ["Inherent loss of Rage is #% slower per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Inner Conviction"] = { },
["Instant Recovery"] = { },
["Instant Recovery when on Low Life"] = { },
@@ -9314,7 +9682,6 @@ return {
["Insufficient Mana doesn't prevent your Melee Attacks"] = { },
["Intelligence from Passives in Radius is Transformed to Dexterity"] = { },
["Intelligence from Passives in Radius is Transformed to Strength"] = { },
- ["Intelligence is added to Accuracy Rating with Wands"] = { },
["Intimidate Enemies for 4 seconds on Block while holding a Shield"] = { },
["Intimidate Enemies for 4 seconds on Hit"] = { },
["Intimidate Enemies for 4 seconds on Hit with Attacks"] = { },
@@ -9332,6 +9699,15 @@ return {
["Invasion Bosses drop an additional Vaal Orb"] = { },
["Invasion Bosses have #% less Quantity and Rarity of dropped Items"] = { { isScalable = true, formats = { "negate" } } },
["Invasion Bosses have #% more Quantity and Rarity of dropped Items"] = { { isScalable = true } },
+ ["Invocated Spells deal #% increased Damage"] = { { isScalable = true } },
+ ["Invocated Spells deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Invocated Spells have #% chance to consume half as much Energy"] = { { isScalable = true } },
+ ["Invocated Spells have #% increased Critical Hit Chance"] = { { isScalable = true } },
+ ["Invocated Spells have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
+ ["Invocated skills have #% increased Maximum Energy"] = { { isScalable = true } },
+ ["Invocated skills have #% reduced Maximum Energy"] = { { isScalable = true, formats = { "negate" } } },
+ ["Invocation Spells have #% increased Critical Damage Bonus"] = { { isScalable = true } },
+ ["Invocation Spells have #% reduced Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } },
["Iron Grip"] = { },
["Iron Reflexes"] = { },
["Iron Reflexes while stationary"] = { },
@@ -9446,8 +9822,10 @@ return {
["Leech Energy Shield #% faster"] = { { isScalable = true } },
["Leech Energy Shield #% slower"] = { { isScalable = true, formats = { "negate" } } },
["Leech Life #% faster"] = { { isScalable = true } },
+ ["Leech Life #% faster if you have at least 100 Tribute"] = { { isScalable = true } },
["Leech Life #% faster per Corrupted Item Equipped"] = { { isScalable = true } },
["Leech Life #% slower"] = { { isScalable = true, formats = { "negate" } } },
+ ["Leech Life #% slower if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Leech Life #% slower per Corrupted Item Equipped"] = { { isScalable = true, formats = { "negate" } } },
["Leech Mana #% faster"] = { { isScalable = true } },
["Leech Mana #% faster per Corrupted Item Equipped"] = { { isScalable = true } },
@@ -9479,19 +9857,16 @@ return {
["Left ring slot: You and your Minions take #% increased Reflected Elemental Damage"] = { { isScalable = true } },
["Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage"] = { { isScalable = true, formats = { "negate" } } },
["Left ring slot: You cannot Recharge or Regenerate Energy Shield"] = { },
- ["Leftmost # Magic Utility Flask constantly applies its Flask Effect to you"] = { { isScalable = true } },
- ["Leftmost # Magic Utility Flasks constantly apply their Flask Effects to you"] = { { isScalable = true } },
["Legion Monsters have #% less Life"] = { { isScalable = true, formats = { "negate" } } },
["Legion Monsters have #% more Life"] = { { isScalable = true } },
["Life Flask Effects are not removed when Unreserved Life is Filled\nLife Flask Effects do not Queue"] = { },
["Life Flasks also recover Mana\nMana Flasks also recover Life"] = { },
+ ["Life Flasks applied to you grant Guard for 4 seconds equal to #% of the Life Recovery per Second they apply"] = { { isScalable = true } },
["Life Flasks do not Recover Life"] = { },
["Life Flasks do not recover Life"] = { },
["Life Flasks gain # Charge every 3 seconds"] = { { isScalable = true } },
- ["Life Flasks gain # Charge when you Suppress Spell Damage"] = { { isScalable = true } },
["Life Flasks gain # Charges every 3 seconds"] = { { isScalable = true } },
["Life Flasks gain # Charges every 3 seconds if you haven't used a Life Flask Recently"] = { { isScalable = true } },
- ["Life Flasks gain # Charges when you Suppress Spell Damage"] = { { isScalable = true } },
["Life Flasks gain # Charges when you hit your Marked Enemy, no more than once every 0.5 seconds"] = { { isScalable = true } },
["Life Flasks gain # charges per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } },
["Life Flasks gain a Charge when you hit an Enemy, no more than once each second"] = { },
@@ -9506,6 +9881,7 @@ return {
["Life Leech is instant during Effect"] = { },
["Life Leech recovers based on your Chaos damage instead of Physical damage"] = { },
["Life Leech recovers based on your Elemental damage as well as Physical damage"] = { },
+ ["Life Leeched from Empowered Attacks is Instant"] = { },
["Life Recharges"] = { },
["Life Recoup Effects instead occur over 3 seconds"] = { },
["Life Recoup Recovers Energy Shield instead"] = { },
@@ -9535,8 +9911,8 @@ return {
["Lightning Conduit has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
["Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance"] = { },
["Lightning Damage from Hits also Contributes to Chill Magnitude"] = { },
+ ["Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes"] = { },
["Lightning Damage from Hits also Contributes to Freeze Buildup"] = { },
- ["Lightning Damage from Hits also Contributes to Ignite Chance and Magnitude"] = { },
["Lightning Damage from Hits also Contributes to Poison Magntiude"] = { },
["Lightning Damage from Hits does not contribute to Shock Chance"] = { },
["Lightning Damage of Enemies Hitting you is Lucky"] = { },
@@ -9643,15 +10019,18 @@ return {
["Lose #% of maximum Energy Shield when you deal a Critical Hit"] = { { isScalable = true } },
["Lose #% of maximum Life and Energy Shield when you use a Chaos Skill"] = { { isScalable = true } },
["Lose #% of maximum Life on Kill"] = { { isScalable = true } },
+ ["Lose #% of maximum Life on Kill per 50 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Lose #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Lose #% of maximum Life per second if you have been Hit Recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
- ["Lose #% of maximum Life when you Suppress Spell Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Lose #% of maximum Life when you Block"] = { { isScalable = true, formats = { "negate" } } },
["Lose #% of maximum Life when you deal a Critical Hit"] = { { isScalable = true } },
["Lose #% of maximum Mana on Kill"] = { { isScalable = true, formats = { "negate" } } },
+ ["Lose #% of maximum Mana on Kill per 50 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Lose #% of maximum Mana per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Lose #% of maximum Mana when you Shock an Enemy"] = { { isScalable = true } },
["Lose #% of maximum Mana when you use an Attack Skill"] = { { isScalable = true } },
["Lose #% of your maximum Energy Shield when you Block"] = { { isScalable = true } },
+ ["Lose #% of your maximum Mana when you Block"] = { { isScalable = true, formats = { "negate" } } },
["Lose Adrenaline when you cease to be Flame-Touched"] = { },
["Lose Blood from Blood Crucible #% faster"] = { { isScalable = false } },
["Lose Blood from Blood Crucible #% slower"] = { { isScalable = false, formats = { "negate" } } },
@@ -9683,8 +10062,6 @@ return {
["Magic Monsters in this Area Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Magic Monsters take #% increased Damage"] = { { isScalable = true } },
["Magic Monsters take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Magic Utility Flask Effects cannot be removed"] = { },
- ["Magic Utility Flasks cannot be Used"] = { },
["Maim on Critical Hit"] = { },
["Maim on Hit"] = { },
["Malevolence has #% increased Aura Effect"] = { { isScalable = true } },
@@ -9740,10 +10117,10 @@ return {
["Map owner gains #% more Sulphite"] = { { isScalable = true } },
["Maps absorb #% more Corruption"] = { { isScalable = true } },
["Maps found in Area are Corrupted with 8 Modifiers"] = { },
- ["Mark Skills have #% increased Cast Speed"] = { { isScalable = true } },
["Mark Skills have #% increased Skill Effect Duration"] = { { isScalable = true } },
- ["Mark Skills have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["Mark Skills have #% increased Use Speed"] = { { isScalable = true } },
["Mark Skills have #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["Mark Skills have #% reduced Use Speed"] = { { isScalable = true, formats = { "negate" } } },
["Marked Enemy cannot Regenerate Life"] = { },
["Marked Enemy grants #% increased Flask Charges to you"] = { { isScalable = true } },
["Marked Enemy grants #% reduced Flask Charges to you"] = { { isScalable = true, formats = { "negate" } } },
@@ -9764,7 +10141,7 @@ return {
["Maximum Critical Hit Chance is 50%"] = { },
["Maximum Energy Shield is zero"] = { },
["Maximum Life of Summoned Elemental Golems is Doubled"] = { },
- ["Maximum Mana is replaced by Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs"] = { },
+ ["Maximum Mana is replaced by twice as much Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs"] = { },
["Maximum Physical Damage Reduction is 50%"] = { },
["Maximum Power Charges is 0"] = { },
["Maximum Quality is #%"] = { { isScalable = true } },
@@ -9773,8 +10150,11 @@ return {
["Maximum number of Summoned Raging Spirits is 3"] = { },
["Maximum of # Empowered Attack"] = { { isScalable = true } },
["Maximum of # Empowered Attacks"] = { { isScalable = true } },
+ ["Melee Attack Skills have # to maximum number of Summoned Totems"] = { { isScalable = true } },
["Melee Attacks Poison on Hit"] = { },
["Melee Attacks cause Bleeding"] = { },
+ ["Melee Attacks fire # additional Projectiles"] = { { isScalable = true } },
+ ["Melee Attacks fire an additional Projectile"] = { },
["Melee Attacks have #% chance to Poison on Hit"] = { { isScalable = true } },
["Melee Attacks have #% chance to cause Bleeding"] = { { isScalable = true } },
["Melee Critical Hits Poison the Enemy"] = { },
@@ -9799,9 +10179,13 @@ return {
["Memories placed on this location can be run an additional time before Decaying"] = { },
["Mercury Footprints"] = { },
["Meta Skills gain #% increased Energy"] = { { isScalable = true } },
+ ["Meta Skills gain #% increased Energy if you've dealt a Critical Hit Recently"] = { { isScalable = true } },
["Meta Skills gain #% less Energy"] = { { isScalable = true, formats = { "negate" } } },
["Meta Skills gain #% more Energy"] = { { isScalable = true } },
["Meta Skills gain #% reduced Energy"] = { { isScalable = true, formats = { "negate" } } },
+ ["Meta Skills gain #% reduced Energy if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["Meta Skills have #% increased Reservation Efficiency"] = { { isScalable = true } },
+ ["Meta Skills have #% reduced Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } },
["Metamorph Boss Organs found in Area always have at least # rewards"] = { { isScalable = true } },
["Metamorph Boss Organs found in Area always have at least 1 reward"] = { },
["Metamorph Boss Organs found in Area construct more difficult Metamorph Bosses"] = { },
@@ -9828,6 +10212,7 @@ return {
["Minion Life is increased by their Overcapped Fire Resistance"] = { },
["Minions Attacks Overwhelm #% Physical Damage Reduction"] = { { isScalable = true } },
["Minions Blind on Hit with Attacks"] = { },
+ ["Minions Break Armour equal to #% of Physical damage dealt"] = { { isScalable = true } },
["Minions Convert #% of their Maximum Life to Maximum Energy\nShield per 1% Chaos Resistance they have"] = { { isScalable = true } },
["Minions Hinder Enemies on Hit with Spells"] = { },
["Minions Intimidate Enemies for 4 seconds on Hit"] = { },
@@ -9845,17 +10230,20 @@ return {
["Minions Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Minions Revive #% faster"] = { { isScalable = true } },
["Minions Revive #% faster if all your Minions are Companions"] = { { isScalable = true } },
+ ["Minions Revive #% faster if you have at least 100 Tribute"] = { { isScalable = true } },
["Minions Revive #% slower"] = { { isScalable = true, formats = { "negate" } } },
["Minions Revive #% slower if all your Minions are Companions"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions Revive #% slower if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Minions Taunt on Hit with Attacks"] = { },
- ["Minions always Freeze, Shock and Ignite"] = { },
["Minions are Aggressive"] = { },
["Minions are Created with maximum Frenzy Charges"] = { },
["Minions can hear the whispers for # seconds after they deal a Critical Hit"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Minions can't be Damaged for # second after being Summoned"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Minions can't be Damaged for # seconds after being Summoned"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
+ ["Minions cannot Die while affected by a Life Flask"] = { },
["Minions cannot Taunt Enemies"] = { },
["Minions cannot be Blinded"] = { },
+ ["Minions cause #% increased Stun Buildup"] = { { isScalable = true } },
["Minions cause Bleeding with Attacks"] = { },
["Minions convert #% of Physical Damage to Chaos Damage"] = { { isScalable = true } },
["Minions convert #% of Physical Damage to Cold Damage"] = { { isScalable = true } },
@@ -9878,21 +10266,28 @@ return {
["Minions deal #% increased Damage per 5 Dexterity"] = { { isScalable = true } },
["Minions deal #% increased Damage while you are affected by a Herald"] = { { isScalable = true } },
["Minions deal #% increased Damage with Command Skills"] = { { isScalable = true } },
+ ["Minions deal #% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"] = { { isScalable = true } },
["Minions deal #% increased Damage with Hits against Abyssal Monsters"] = { { isScalable = true } },
["Minions deal #% increased Damage with Hits against Ignited Enemies"] = { { isScalable = true } },
["Minions deal #% increased Melee Damage"] = { { isScalable = true } },
+ ["Minions deal #% increased damage per 10 Tribute"] = { { isScalable = true } },
["Minions deal #% of your Life as additional Cold Damage with Attacks"] = { { isScalable = true } },
["Minions deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage if you've Hit Recently"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage if you've used a Minion Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage per 5 Dexterity"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage while you are affected by a Herald"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions deal #% reduced Damage with Command Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions deal #% reduced Damage with Command Skills for each different type of Persistent Minion in your Presence"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage with Hits against Abyssal Monsters"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Damage with Hits against Ignited Enemies"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal #% reduced Melee Damage"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions deal #% reduced damage per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Minions deal no Non-Cold Damage"] = { },
["Minions from this skill convert #% of Physical Damage to Fire Damage"] = { { isScalable = true } },
["Minions from this skill have 1% increased Accuracy Rating\nper # of your Dexterity"] = { { isScalable = true } },
+ ["Minions from this skill have 1% increased Area of Effect\nper # of your Dexterity"] = { { isScalable = true } },
+ ["Minions from this skill have 1% increased Attack Speed\nper # of your Dexterity"] = { { isScalable = true } },
["Minions from this skill have 1% increased Damage\nper # of your Strength"] = { { isScalable = true } },
["Minions gain #% of Physical Damage as Chaos Damage"] = { { isScalable = true } },
["Minions gain #% of their Physical Damage as Extra Cold Damage"] = { { isScalable = true } },
@@ -9907,20 +10302,16 @@ return {
["Minions have # to Armour"] = { { isScalable = true } },
["Minions have # to Minimum Power Charges"] = { { isScalable = true } },
["Minions have #% Chance to Block Attack Damage"] = { { isScalable = true } },
- ["Minions have #% Chance to Block Spell Damage"] = { { isScalable = true } },
["Minions have #% additional Physical Damage Reduction"] = { { isScalable = true } },
["Minions have #% chance to Blind Enemies on hit"] = { { isScalable = true } },
["Minions have #% chance to Blind on Hit with Attacks"] = { { isScalable = true } },
["Minions have #% chance to Freeze"] = { { isScalable = true } },
- ["Minions have #% chance to Freeze, Shock and Ignite"] = { { isScalable = true } },
["Minions have #% chance to Hinder Enemies on Hit with Spells"] = { { isScalable = true } },
- ["Minions have #% chance to Ignite"] = { { isScalable = true } },
["Minions have #% chance to Intimidate Enemies for 4 seconds on Hit"] = { { isScalable = true } },
["Minions have #% chance to Knock Enemies Back on Hit with Attacks"] = { { isScalable = true } },
["Minions have #% chance to Maim Enemies on Hit with Attacks"] = { { isScalable = true } },
["Minions have #% chance to Poison Enemies on Hit"] = { { isScalable = true } },
["Minions have #% chance to Shock"] = { { isScalable = true } },
- ["Minions have #% chance to Suppress Spell Damage"] = { { isScalable = true } },
["Minions have #% chance to Taunt on Hit with Attacks"] = { { isScalable = true } },
["Minions have #% chance to cause Bleeding with Attacks"] = { { isScalable = true } },
["Minions have #% chance to deal Double Damage"] = { { isScalable = true } },
@@ -9934,9 +10325,12 @@ return {
["Minions have #% increased Attack Speed"] = { { isScalable = true } },
["Minions have #% increased Attack and Cast Speed"] = { { isScalable = true } },
["Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently"] = { { isScalable = true } },
+ ["Minions have #% increased Attack and Cast Speed per 50 Tribute"] = { { isScalable = true } },
["Minions have #% increased Attack and Cast Speed while you are affected by a Herald"] = { { isScalable = true } },
["Minions have #% increased Cast Speed"] = { { isScalable = true } },
["Minions have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
+ ["Minions have #% increased Cooldown Recovery Rate for Command Skills"] = { { isScalable = true } },
+ ["Minions have #% increased Cooldown Recovery Rate per 10 Tribute"] = { { isScalable = true } },
["Minions have #% increased Critical Damage Bonus"] = { { isScalable = true } },
["Minions have #% increased Critical Hit Chance"] = { { isScalable = true } },
["Minions have #% increased Critical Hit Chance per Maximum Power Charge you have"] = { { isScalable = true } },
@@ -9962,9 +10356,12 @@ return {
["Minions have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Attack and Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Attack and Cast Speed if you or your Minions have Killed Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions have #% reduced Attack and Cast Speed per 50 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Attack and Cast Speed while you are affected by a Herald"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions have #% reduced Cooldown Recovery Rate for Command Skills"] = { { isScalable = true, formats = { "negate" } } },
+ ["Minions have #% reduced Cooldown Recovery Rate per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Critical Hit Chance per Maximum Power Charge you have"] = { { isScalable = true, formats = { "negate" } } },
["Minions have #% reduced Enemy Stun Threshold"] = { { isScalable = true } },
@@ -9989,12 +10386,17 @@ return {
["Minions have #% to Damage over Time Multiplier per\nGhastly Eye Jewel affecting you, up to a maximum of +30%"] = { { isScalable = true } },
["Minions have #% to Fire Resistance"] = { { isScalable = true } },
["Minions have #% to Lightning Resistance"] = { { isScalable = true } },
+ ["Minions have #% to Maximum Cold Resistances"] = { { isScalable = true } },
+ ["Minions have #% to Maximum Fire Resistances"] = { { isScalable = true } },
+ ["Minions have #% to Maximum Lightning Resistances"] = { { isScalable = true } },
["Minions have #% to all Elemental Resistances"] = { { isScalable = true } },
["Minions have #% to all Maximum Elemental Resistances"] = { { isScalable = true } },
["Minions have +30% to all Elemental Resistances"] = { },
["Minions have Unholy Might"] = { },
["Minions have a #% chance to Impale on Hit with Attacks"] = { { isScalable = true } },
["Minions in Presence lose Life when you lose Life\nMinions in Presence gain Life when you gain Life"] = { },
+ ["Minions lose #% Life per 10 Tribute you have when following Commands"] = { { isScalable = true } },
+ ["Minions lose #% Life per 10 Tribute you have when following Commands per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Minions never deal Critical Hits"] = { },
["Minions recover # Life when they Block"] = { { isScalable = true } },
["Minions recover #% of maximum Life on Hit"] = { { isScalable = true } },
@@ -10036,7 +10438,6 @@ return {
["Mirror Arrow has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Modifiers to Attributes instead apply to Omniscience"] = { },
["Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments"] = { },
- ["Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at #% of their Value"] = { { isScalable = true } },
["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills"] = { },
["Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills"] = { },
["Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills"] = { },
@@ -10058,6 +10459,7 @@ return {
["Modifiers to Projectile Damage apply to this Skill's Damage Over Time effect"] = { },
["Modifiers to Spell Damage also apply to Attack Damage"] = { },
["Modifiers to Spell Damage apply to this Skill's Damage Over Time effect"] = { },
+ ["Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry"] = { },
["Modifiers to Totem Life also affects Minions from this Skill"] = { },
["Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma"] = { },
["Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards"] = { },
@@ -10108,7 +10510,6 @@ return {
["Monsters are Revived as Allies on Kill"] = { },
["Monsters are Unaffected by Curses"] = { },
["Monsters are Unaffected by Shock"] = { },
- ["Monsters cannot Block your Attacks"] = { },
["Monsters cannot be Stunned"] = { },
["Monsters cannot be Taunted"] = { },
["Monsters contained in Strongboxes deal #% increased Damage"] = { { isScalable = true } },
@@ -10127,6 +10528,7 @@ return {
["Monsters drop no items"] = { },
["Monsters drop other items instead of Equipment"] = { },
["Monsters fire # additional Projectiles"] = { { isScalable = true } },
+ ["Monsters from Abysses have increased Difficulty and Reward for each closed Pit in that Abyss"] = { },
["Monsters from Beyond have #% less Quantity and Rarity of Dropped Items"] = { { isScalable = true, formats = { "negate" } } },
["Monsters from Beyond have #% more Quantity and Rarity of Dropped Items"] = { { isScalable = true } },
["Monsters gain # Endurance Charge every 20 seconds"] = { { isScalable = true } },
@@ -10159,24 +10561,22 @@ return {
["Monsters grant #% reduced Experience"] = { { isScalable = true, formats = { "negate" } } },
["Monsters guarding Shrines are Magic"] = { },
["Monsters have #% Chance to Block Attack Damage"] = { { isScalable = true } },
- ["Monsters have #% Chance to Block Spell Damage"] = { { isScalable = true } },
["Monsters have #% chance to Avoid Ailments"] = { { isScalable = true } },
["Monsters have #% chance to Avoid Elemental Ailments"] = { { isScalable = true } },
["Monsters have #% chance to Avoid being Chilled or Frozen"] = { { isScalable = true } },
["Monsters have #% chance to Avoid being Ignited"] = { { isScalable = true } },
["Monsters have #% chance to Avoid being Shocked"] = { { isScalable = true } },
- ["Monsters have #% chance to Bleeding on Hit"] = { { isScalable = true } },
["Monsters have #% chance to Blind on Hit"] = { { isScalable = true } },
["Monsters have #% chance to Duplicate dropped Rogue's Marker"] = { { isScalable = true } },
["Monsters have #% chance to Hinder on Hit with Spells"] = { { isScalable = true } },
["Monsters have #% chance to Impale with Attacks"] = { { isScalable = true } },
["Monsters have #% chance to Maim on Hit with Attacks"] = { { isScalable = true } },
["Monsters have #% chance to Poison on Hit"] = { { isScalable = true } },
- ["Monsters have #% chance to Suppress Spell Damage"] = { { isScalable = true } },
["Monsters have #% chance to drop a Fossil"] = { { isScalable = true } },
["Monsters have #% chance to gain a Frenzy Charge on Hit"] = { { isScalable = true } },
["Monsters have #% chance to gain a Power Charge on Hit"] = { { isScalable = true } },
["Monsters have #% chance to gain an Endurance Charge on Hit"] = { { isScalable = true } },
+ ["Monsters have #% chance to inflict Bleeding on Hit"] = { { isScalable = true } },
["Monsters have #% chance to inflict Brittle"] = { { isScalable = true } },
["Monsters have #% chance to inflict Sapped"] = { { isScalable = true } },
["Monsters have #% chance to inflict Scorch"] = { { isScalable = true } },
@@ -10195,7 +10595,6 @@ return {
["Monsters have #% increased Defences"] = { { isScalable = true } },
["Monsters have #% increased Freeze Buildup"] = { { isScalable = true } },
["Monsters have #% increased Freeze Duration"] = { { isScalable = true } },
- ["Monsters have #% increased Ignite Chance"] = { { isScalable = true } },
["Monsters have #% increased Ignite Duration"] = { { isScalable = true } },
["Monsters have #% increased Poison Duration"] = { { isScalable = true } },
["Monsters have #% increased Shock Chance"] = { { isScalable = true } },
@@ -10220,7 +10619,6 @@ return {
["Monsters have #% reduced chance of having Rewards"] = { { isScalable = true } },
["Monsters have #% reduced chance to spawn a Beyond Portal"] = { { isScalable = true, formats = { "negate" } } },
["Monsters have #% to all maximum Elemental Resistances"] = { { isScalable = true } },
- ["Monsters have #% to amount of Suppressed Spell Damage Prevented"] = { { isScalable = true } },
["Monsters have Onslaught"] = { },
["Monsters have a #% chance to avoid Poison, Impale, and Bleeding"] = { { isScalable = true } },
["Monsters have a #% chance to cause Elemental Ailments on Hit"] = { { isScalable = true } },
@@ -10233,6 +10631,9 @@ return {
["Monsters in Nightmare have #% more Maximum Life"] = { { isScalable = false } },
["Monsters in Nightmare take #% less Damage"] = { { isScalable = false, formats = { "negate" } } },
["Monsters in Nightmare take #% more Damage"] = { { isScalable = false } },
+ ["Monsters inflict # Grasping Vine on Hit"] = { { isScalable = true } },
+ ["Monsters inflict # Grasping Vines on Hit"] = { { isScalable = true } },
+ ["Monsters inflict #% increased Flammability Magnitude"] = { { isScalable = true } },
["Monsters inflict Brittle"] = { },
["Monsters inflict Impale with Attacks"] = { },
["Monsters inflict Sapped"] = { },
@@ -10240,8 +10641,6 @@ return {
["Monsters inflict a random Hex on Hit"] = { },
["Monsters initially carrying a Talisman drop # additional Rare Items"] = { { isScalable = true } },
["Monsters initially carrying a Talisman drop an additional Rare Item"] = { },
- ["Monsters near Shrines are Chilled"] = { },
- ["Monsters prevent #% of Suppressed Spell Damage"] = { { isScalable = true } },
["Monsters reflect #% of Elemental Damage"] = { { isScalable = true } },
["Monsters reflect #% of Physical Damage"] = { { isScalable = true } },
["Monsters remove #% of Mana on hit"] = { { isScalable = true } },
@@ -10264,12 +10663,10 @@ return {
["Monsters' Action Speed cannot be modified to below base value"] = { },
["Monsters' Attack Hits inflict Bleeding"] = { },
["Monsters' Hits always Freeze"] = { },
- ["Monsters' Hits always Ignite"] = { },
["Monsters' Hits always Shock"] = { },
["Monsters' Hits are always Critical Hits"] = { },
["Monsters' Hits can't be Evaded"] = { },
["Monsters' Hits have #% chance to Freeze"] = { { isScalable = true } },
- ["Monsters' Hits have #% chance to Ignite"] = { { isScalable = true } },
["Monsters' Hits have #% chance to Shock"] = { { isScalable = true } },
["Monsters' Melee Attacks apply random Hexes on Hit"] = { },
["Monsters' Projectiles always Pierce"] = { },
@@ -10281,6 +10678,11 @@ return {
["Movement Speed cannot be modified to below base value"] = { },
["Moving while Bleeding doesn't cause Minions to take extra damage"] = { },
["Moving while Bleeding doesn't cause you to take extra damage"] = { },
+ ["Natural Monster Packs in Area are in a Union of Souls"] = { },
+ ["Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence"] = { },
+ ["Natural Rare Monsters in Area are in a Union of Souls with the Map Boss"] = { },
+ ["Natural Rare Monsters in Area have # extra Abyssal Modifier"] = { { isScalable = true } },
+ ["Natural Rare Monsters in Area have # extra Abyssal Modifiers"] = { { isScalable = true } },
["Natural inhabitants of this area have been removed"] = { },
["Nearby Allies count as having Fortification equal to yours"] = { },
["Nearby Allies gain #% increased Mana Regeneration Rate"] = { { isScalable = false } },
@@ -10354,9 +10756,9 @@ return {
["Nemesis Monsters drop # additional Basic Currency Item"] = { { isScalable = true } },
["Nemesis Monsters drop # additional Basic Currency Items"] = { { isScalable = true } },
["Never deal Critical Hits"] = { },
- ["No Chance to Deflect"] = { },
["No Dexterity Requirement"] = { },
["No Inherent loss of Rage"] = { },
+ ["No Inherent loss of Rage during effect"] = { },
["No Intelligence Requirement"] = { },
["No Movement Speed Penalty while Shield is Raised"] = { },
["No Physical Damage"] = { },
@@ -10378,8 +10780,6 @@ return {
["Non-Channelling Skills have # to Total Life Cost"] = { { isScalable = true } },
["Non-Channelling Skills have # to Total Mana Cost"] = { { isScalable = true } },
["Non-Channelling Skills have # to Total Mana Cost while affected by Clarity"] = { { isScalable = true } },
- ["Non-Channelling Spells consume a Power Charge if able to deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Non-Channelling Spells consume a Power Charge if able to deal #% more Damage"] = { { isScalable = true } },
["Non-Channelling Spells cost Double Mana and Critically Hit"] = { },
["Non-Channelling Spells cost an additional #% of maximum Energy Shield"] = { { isScalable = true } },
["Non-Channelling Spells cost an additional #% of your maximum Life"] = { { isScalable = true } },
@@ -10397,10 +10797,13 @@ return {
["Non-Curse Aura Skills have #% increased Duration"] = { { isScalable = true } },
["Non-Curse Aura Skills have #% reduced Duration"] = { { isScalable = true, formats = { "negate" } } },
["Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds"] = { },
+ ["Non-Cursed enemies you Curse have # Withered stacks inflicted on them"] = { { isScalable = true } },
["Non-Damaging Ailments Cannot Be inflicted on you while you already have one"] = { },
["Non-Damaging Ailments have #% increased effect on you while you have Arcane Surge"] = { { isScalable = true } },
["Non-Damaging Ailments have #% reduced effect on you while you have Arcane Surge"] = { { isScalable = true, formats = { "negate" } } },
["Non-Damaging Ailments other than Freeze you inflict are reflected back to you"] = { },
+ ["Non-Instant skills with Cooldowns have # Cooldown Use if you have at least 100 Tribute"] = { { isScalable = true } },
+ ["Non-Instant skills with Cooldowns have # Cooldown Uses if you have at least 100 Tribute"] = { { isScalable = true } },
["Non-Projectile Chaining Lightning Skills Chain # times"] = { { isScalable = true } },
["Non-Travel Attack Skills Repeat # additional Times"] = { { isScalable = true } },
["Non-Travel Attack Skills Repeat an additional Time"] = { },
@@ -10432,10 +10835,14 @@ return {
["Number of Perandus Coins dropped in this Area is Doubled"] = { },
["Oasis"] = { },
["Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword"] = { },
+ ["Off Hand attacks have Added Attack Damage equal to #% of the Damage of your Main Hand Weapon"] = { { isScalable = true } },
["Offering Skills have #% increased Area of Effect"] = { { isScalable = true } },
+ ["Offering Skills have #% increased Buff effect"] = { { isScalable = true } },
["Offering Skills have #% increased Duration"] = { { isScalable = true } },
["Offering Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["Offering Skills have #% reduced Buff effect"] = { { isScalable = true, formats = { "negate" } } },
["Offering Skills have #% reduced Duration"] = { { isScalable = true, formats = { "negate" } } },
+ ["Offerings cannot be damaged if they have been created Recently"] = { },
["Offerings have #% increased Maximum Life"] = { { isScalable = true } },
["Offerings have #% reduced Maximum Life"] = { { isScalable = true, formats = { "negate" } } },
["Often Shift into Nightmare on Killing a Rare or Unique Enemy"] = { },
@@ -10443,9 +10850,11 @@ return {
["Oils found in Area have #% chance to be 1 tier higher"] = { { isScalable = true } },
["On Corruption, Item gains two Enchantments"] = { },
["On Freezing Enemies create Chilled Ground"] = { },
+ ["On Heavy Stunning a Rare or Unique Enemy, your next Attack within # seconds will be Ancestrally Boosted"] = { { isScalable = true } },
["On Hitting an enemy, gains maximum added Lightning damage equal to\nthe enemy's Power for 6 seconds, up to a total of #"] = { { isScalable = true } },
- ["On dealing Elemental Damage with an Attack Hit gain # Resonance of the highest Elemental Damage type and lose # Resonance of the other types"] = { { isScalable = true }, { isScalable = true } },
+ ["On dealing Elemental Damage with a Hit, gain # Resonance of the highest Elemental Damage type and lose # Resonance of the other types"] = { { isScalable = true }, { isScalable = true } },
["On-Kill Effects happen twice"] = { },
+ ["One Conquered Notable Passive Skill becomes #"] = { { isScalable = false, formats = { "passive_hash" } } },
["Only Shift into and out of Nightmare randomly"] = { },
["Only affects Passives in Large Ring"] = { },
["Only affects Passives in Massive Ring"] = { },
@@ -10458,6 +10867,7 @@ return {
["Only applies Hexes from Curse Skill Gems requiring Level # or lower"] = { { isScalable = true } },
["Only shift into Nightmare on reaching maximum Blood\nLose Blood from Blood Crucible 90% slower\nLose 0.4% of Blood on Killing a Scourge Monster\nLose all Blood when you shift out of Nightmare"] = { },
["Onslaught"] = { },
+ ["Orb Skills have # to Limit"] = { { isScalable = true } },
["Orb of Storms deals #% increased Damage"] = { { isScalable = true } },
["Orb of Storms deasl #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Orb of Storms has #% increased Cast Speed"] = { { isScalable = true } },
@@ -10472,11 +10882,9 @@ return {
["Passive Skills in Radius also grant: #% increased Unarmed Attack Speed with Melee Skills"] = { { isScalable = true } },
["Passive Skills in Radius also grant: #% reduced Unarmed Attack Speed with Melee Skills"] = { { isScalable = true } },
["Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage"] = { { isScalable = true }, { isScalable = true } },
- ["Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Suppress Spell Damage at #% of its value"] = { { isScalable = true } },
["Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill"] = { },
["Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value"] = { { isScalable = true } },
["Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill"] = { },
- ["Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value"] = { { isScalable = true } },
["Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill"] = { },
["Passives in Radius apply to Minions instead of you"] = { },
["Passives in Radius can be Allocated without being connected to your tree"] = { },
@@ -10537,8 +10945,10 @@ return {
["Physical Damage is Pinning"] = { },
["Physical Damage is increased by 1% per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } },
["Physical Damage taken bypasses Energy Shield"] = { },
+ ["Physical Spell Critical Hits build Pin"] = { },
["Piercing Attacks cause Bleeding"] = { },
["Pin Enemies which are Primed for Pinning"] = { },
+ ["Pinned Enemies cannot deal Critical Hits"] = { },
["Pinned enemies cannot perform actions"] = { },
["Placed Banners also grant #% increased Attack Damage to you and Allies"] = { { isScalable = true } },
["Placed Banners also grant #% reduced Attack Damage to you and Allies"] = { { isScalable = true, formats = { "negate" } } },
@@ -10553,7 +10963,6 @@ return {
["Plague Bearer has #% reduced Maximum Plague Value"] = { { isScalable = true, formats = { "negate" } } },
["Plants Harvested in Area are more likely to give less common Crafting Options"] = { },
["Player's Life and Mana Recovery from Flasks are instant"] = { },
- ["Players Prevent #% of Suppressed Spell Damage"] = { { isScalable = true } },
["Players Regenerate #% of maximum Life per second per 25 Rampage Kills"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Players and Monsters deal #% increased Damage per Curse on them"] = { { isScalable = true } },
["Players and Monsters deal #% reduced Damage per Curse on them"] = { { isScalable = true, formats = { "negate" } } },
@@ -10574,6 +10983,7 @@ return {
["Players and Monsters take #% reduced Lightning Damage"] = { { isScalable = true, formats = { "negate" } } },
["Players and Monsters take #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["Players and their Minions cannot take Reflected Damage"] = { },
+ ["Players and their Minions deal no damage for 3 out of every 10 seconds"] = { },
["Players are Cursed with Conductivity"] = { },
["Players are Cursed with Despair"] = { },
["Players are Cursed with Elemental Weakness"] = { },
@@ -10585,12 +10995,15 @@ return {
["Players are Cursed with Temporal Chains"] = { },
["Players are Cursed with Vulnerability"] = { },
["Players are Cursed with a random Hex every 10 seconds"] = { },
+ ["Players are Marked for Death for # second\nafter killing a Rare or Unique monster"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
+ ["Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Players are Poisoned while moving"] = { },
+ ["Players are periodically Cursed with Elemental Weakness"] = { },
+ ["Players are periodically Cursed with Enfeeble"] = { },
+ ["Players are periodically Cursed with Temporal Chains"] = { },
["Players are targeted by a Meteor when they use a Flask"] = { },
["Players cannot Block Attack Damage"] = { },
- ["Players cannot Block Spell Damage"] = { },
["Players cannot Regenerate Life, Mana or Energy Shield"] = { },
- ["Players cannot Suppress Spell Damage"] = { },
["Players cannot gain Endurance Charges"] = { },
["Players cannot gain Flask Charges"] = { },
["Players cannot gain Frenzy Charges"] = { },
@@ -10619,8 +11032,6 @@ return {
["Players gain an additional Vaal Soul on Kill"] = { },
["Players have #% additional Physical Damage Reduction while in Nightmare"] = { { isScalable = false } },
["Players have #% chance to Block Attack Damage while in Nightmare"] = { { isScalable = false } },
- ["Players have #% chance to Evade Attack Hits while in Nightmare"] = { { isScalable = false } },
- ["Players have #% chance to Suppress Spell Damage while in Nightmare"] = { { isScalable = false } },
["Players have #% chance to be targeted by a Meteor when they use a Flask"] = { { isScalable = true } },
["Players have #% chance to gain an additional Vaal Soul on Kill"] = { { isScalable = true } },
["Players have #% chance to summon a pack of Harbinger Monsters on Kill"] = { { isScalable = true } },
@@ -10644,6 +11055,7 @@ return {
["Players have #% less Life Recovery Rate per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% less Mana Recovery Rate per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% less Movement Speed if they've been Hit by an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["Players have #% less Movement and Skill Speed for each time they've used a Skill Recently"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% less Recovery Rate of Life and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% less Recovery Rate of Life, Mana and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% less maximum Life and Energy Shield"] = { { isScalable = true, formats = { "negate" } } },
@@ -10658,6 +11070,7 @@ return {
["Players have #% more Life Recovery Rate per 25% Alert Level"] = { { isScalable = true } },
["Players have #% more Mana Recovery Rate per 25% Alert Level"] = { { isScalable = true } },
["Players have #% more Movement Speed if they've been Hit by an Enemy Recently"] = { { isScalable = true } },
+ ["Players have #% more Movement and Skill Speed for each time they've used a Skill Recently"] = { { isScalable = true } },
["Players have #% more Recovery Rate of Life and Energy Shield"] = { { isScalable = true } },
["Players have #% more Recovery Rate of Life, Mana and Energy Shield"] = { { isScalable = true } },
["Players have #% more maximum Life and Energy Shield"] = { { isScalable = true } },
@@ -10671,7 +11084,6 @@ return {
["Players have #% reduced effect of Non-Curse Auras from Skills"] = { { isScalable = true, formats = { "negate" } } },
["Players have #% to All Resistances"] = { { isScalable = true } },
["Players have #% to Physical Damage Reduction while in Nightmare"] = { { isScalable = false } },
- ["Players have #% to amount of Suppressed Spell Damage Prevented"] = { { isScalable = true } },
["Players have Blood Magic"] = { },
["Players have Chaos Inoculation"] = { },
["Players have Corrupting Blood"] = { },
@@ -10705,6 +11117,7 @@ return {
["Players in the Labyrinth will be affected by Thorned Shrine"] = { },
["Players lose # Energy Shield per second while in Nightmare"] = { { isScalable = false } },
["Players lose # Life per second while in Nightmare"] = { { isScalable = false } },
+ ["Players steal the Eaten Souls of Slain Rare Monsters in Area"] = { },
["Players summon a pack of Harbinger Monsters on Kill"] = { },
["Players take # Chaos Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Players take #% increased Damage from Breach Monsters"] = { { isScalable = true } },
@@ -10757,11 +11170,8 @@ return {
["Precision has no Reservation"] = { },
["Prefixes Cannot Be Changed"] = { },
["Presence Radius is doubled"] = { },
- ["Prevent #% of Deflected Attack Damage"] = { { isScalable = true } },
- ["Prevent #% of Suppressed Spell Damage"] = { { isScalable = true } },
- ["Prevent #% of Suppressed Spell Damage if you've taken a Savage Hit Recently"] = { { isScalable = true } },
- ["Prevent #% of Suppressed Spell Damage per Hit Suppressed Recently"] = { { isScalable = true } },
- ["Prevent #% of Suppressed Spell Damage while on Full Energy Shield"] = { { isScalable = true } },
+ ["Prevent #% of Damage from Deflected Critical Hits"] = { { isScalable = true } },
+ ["Prevent #% of Damage from Deflected Hits"] = { { isScalable = true } },
["Prevent Projectiles Chaining to or from you"] = { },
["Prevents Death during Effect"] = { },
["Pride has #% increased Aura Effect"] = { { isScalable = true } },
@@ -10781,6 +11191,8 @@ return {
["Projectile Attack Skills have #% increased Critical Hit Chance"] = { { isScalable = true } },
["Projectile Attack Skills have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } },
["Projectile Attack Skills have #% to Critical Damage Bonus"] = { { isScalable = true } },
+ ["Projectile Attacks fire two additional Projectiles while moving"] = { },
+ ["Projectile Attacks have a #% chance to fire two additional Projectiles while moving"] = { { isScalable = true } },
["Projectile Damage builds Pin"] = { },
["Projectile Spells have # seconds to Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
["Projectiles Chain # times while you have Phasing"] = { { isScalable = true } },
@@ -10796,10 +11208,10 @@ return {
["Projectiles Pierce all nearby Targets"] = { },
["Projectiles Pierce an additional Target"] = { },
["Projectiles Pierce an additional Target while you have Phasing"] = { },
+ ["Projectiles Pierce enemies with Fully Broken Armour"] = { },
["Projectiles Return to you"] = { },
["Projectiles Split towards # targets"] = { { isScalable = true } },
["Projectiles always Freeze"] = { },
- ["Projectiles always Ignite"] = { },
["Projectiles always Shock"] = { },
["Projectiles are fired in random directions"] = { },
["Projectiles can Chain when colliding with terrain"] = { },
@@ -10834,22 +11246,25 @@ return {
["Projectiles gain #% of Non-Chaos Damage as Extra Chaos Damage per Chain"] = { { isScalable = true } },
["Projectiles gain Damage as they travel farther, dealing up\nto #% increased Damage with Hits to targets"] = { { isScalable = true } },
["Projectiles have #% chance for an additional Projectile when Forking"] = { { isScalable = true } },
+ ["Projectiles have #% chance for an additional Projectile when Forking per 10 Tribute"] = { { isScalable = true } },
["Projectiles have #% chance to Chain an additional time from terrain"] = { { isScalable = true } },
["Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds"] = { { isScalable = true } },
["Projectiles have #% chance to Freeze"] = { { isScalable = true } },
- ["Projectiles have #% chance to Ignite"] = { { isScalable = true } },
["Projectiles have #% chance to Return to you"] = { { isScalable = true } },
["Projectiles have #% chance to Shock"] = { { isScalable = true } },
["Projectiles have #% chance to be able to Chain when colliding with terrain"] = { { isScalable = true } },
["Projectiles have #% chance to be able to Chain when colliding with terrain per\nSearching Eye Jewel affecting you, up to a maximum of 20%"] = { { isScalable = true } },
+ ["Projectiles have #% increased Critical Damage Bonus against Enemies further than 6m"] = { { isScalable = true } },
["Projectiles have #% increased Critical Damage Bonus against Enemies within 2m"] = { { isScalable = true } },
["Projectiles have #% increased Critical Hit Chance against Enemies further than 6m"] = { { isScalable = true } },
["Projectiles have #% increased Critical Hit Chance against Targets they Pierce"] = { { isScalable = true } },
["Projectiles have #% increased Critical Hit Chance against Targets they do not Pierce"] = { { isScalable = true } },
+ ["Projectiles have #% reduced Critical Damage Bonus against Enemies further than 6m"] = { { isScalable = true, formats = { "negate" } } },
["Projectiles have #% reduced Critical Damage Bonus against Enemies within 2m"] = { { isScalable = true, formats = { "negate" } } },
["Projectiles have #% reduced Critical Hit Chance against Enemies further than 6m"] = { { isScalable = true, formats = { "negate" } } },
["Projectiles have #% reduced Critical Hit Chance against Targets they Pierce"] = { { isScalable = true, formats = { "negate" } } },
["Projectiles have #% reduced Critical Hit Chance against Targets they do not Pierce"] = { { isScalable = true, formats = { "negate" } } },
+ ["Projectiles have a #% chance to Pierce enemies with Fully Broken Armour"] = { { isScalable = true } },
["Projectiles move at #% increased Speed"] = { { isScalable = true } },
["Projectiles move at #% reduced Speed"] = { { isScalable = true, formats = { "negate" } } },
["Projectiles that have Chained gain #% of Non-Chaos Damage as Extra Chaos Damage"] = { { isScalable = true } },
@@ -10907,6 +11322,7 @@ return {
["Quivers absorb #% more Corruption"] = { { isScalable = true } },
["Rage Vortex Sacrifices #% of Rage"] = { { isScalable = true } },
["Rage grants Spell damage instead of Attack damage"] = { },
+ ["Rage you gain is also granted to Allies in your Presence"] = { },
["Rain of Arrows has #% chance to fire an additional sequence of arrows"] = { { isScalable = true } },
["Raise Zombie does not require a corpse"] = { },
["Raised Spectres, Raised Zombies, and Summoned Skeletons have #% to Critical Damage Bonus"] = { { isScalable = true } },
@@ -11051,37 +11467,38 @@ return {
["Reckoning has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Recoup #% of damage taken by your Totems as Life"] = { { isScalable = true } },
["Recoup Effects instead occur over 4 seconds"] = { },
- ["Recover # Energy Shield when you Block Spell Damage"] = { { isScalable = true } },
- ["Recover # Energy Shield when you Suppress Spell Damage"] = { { isScalable = true } },
["Recover # Energy Shield when your Trap is triggered by an Enemy"] = { { isScalable = true } },
["Recover # Life for each Fortification lost"] = { { isScalable = true } },
["Recover # Life when Used"] = { { isScalable = true } },
["Recover # Life when you Block"] = { { isScalable = true } },
["Recover # Life when you Ignite an Enemy"] = { { isScalable = true } },
- ["Recover # Life when you Suppress Spell Damage"] = { { isScalable = true } },
["Recover # Life when your Trap is triggered by an Enemy"] = { { isScalable = true } },
["Recover # Mana when Used"] = { { isScalable = true } },
+ ["Recover #% of Maximum Life when you collect a Remnant"] = { { isScalable = true } },
+ ["Recover #% of Maximum Life when you expend at least 10 Combo"] = { { isScalable = true } },
+ ["Recover #% of Maximum Mana when you collect a Remnant"] = { { isScalable = true } },
+ ["Recover #% of Maximum Mana when you expend at least 10 Combo"] = { { isScalable = true } },
["Recover #% of Missing Life before being Hit by an Enemy"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield on Kill"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield on Kill for each different type of Mastery you have Allocated"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield over 1 second when you take Physical Damage from an Enemy Hit"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield per Steel Shard Consumed"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield when you Block"] = { { isScalable = true } },
- ["Recover #% of maximum Energy Shield when you Block Spell Damage while wielding a Staff"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield when you Kill a Cursed Enemy"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield when you Kill an Enemy during Effect"] = { { isScalable = true } },
["Recover #% of maximum Energy Shield when you lose a Spirit Charge"] = { { isScalable = true } },
["Recover #% of maximum Life and Mana when you use a Warcry"] = { { isScalable = true } },
- ["Recover #% of maximum Life at the end of the Effect"] = { { isScalable = true } },
["Recover #% of maximum Life for each Endurance Charge consumed"] = { { isScalable = true } },
["Recover #% of maximum Life on Kill"] = { { isScalable = true } },
["Recover #% of maximum Life on Kill for each different type of Mastery you have Allocated"] = { { isScalable = true } },
["Recover #% of maximum Life on Kill if you've Spent Life Recently"] = { { isScalable = true } },
+ ["Recover #% of maximum Life on Kill per 50 Tribute"] = { { isScalable = true } },
["Recover #% of maximum Life on Killing a Chilled Enemy"] = { { isScalable = true } },
["Recover #% of maximum Life on Killing a Poisoned Enemy"] = { { isScalable = true } },
["Recover #% of maximum Life on Rampage"] = { { isScalable = true } },
["Recover #% of maximum Life on use"] = { { isScalable = true } },
["Recover #% of maximum Life per Endurance Charge on use\nLose all Endurance Charges on use"] = { { isScalable = true } },
+ ["Recover #% of maximum Life per Glory consumed"] = { { isScalable = true } },
["Recover #% of maximum Life per Poison affecting Enemies you Kill"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
["Recover #% of maximum Life per Withered Debuff on each Enemy you Kill"] = { { isScalable = true } },
["Recover #% of maximum Life when one of your Minions is Revived"] = { { isScalable = true } },
@@ -11095,7 +11512,6 @@ return {
["Recover #% of maximum Life when you Kill a Cursed Enemy"] = { { isScalable = true } },
["Recover #% of maximum Life when you Kill an Enemy during Effect"] = { { isScalable = true } },
["Recover #% of maximum Life when you Kill an Enemy while you have Rage"] = { { isScalable = true } },
- ["Recover #% of maximum Life when you Suppress Spell Damage"] = { { isScalable = true } },
["Recover #% of maximum Life when you create an Offering"] = { { isScalable = true } },
["Recover #% of maximum Life when you gain Adrenaline"] = { { isScalable = true } },
["Recover #% of maximum Life when you lose a Spirit Charge"] = { { isScalable = true } },
@@ -11107,6 +11523,7 @@ return {
["Recover #% of maximum Mana and Energy Shield when you Focus"] = { { isScalable = true } },
["Recover #% of maximum Mana on Kill"] = { { isScalable = true } },
["Recover #% of maximum Mana on Kill for each different type of Mastery you have Allocated"] = { { isScalable = true } },
+ ["Recover #% of maximum Mana on Kill per 50 Tribute"] = { { isScalable = true } },
["Recover #% of maximum Mana over 1 second when you use a Guard Skill"] = { { isScalable = true } },
["Recover #% of maximum Mana when a Brand expires while Attached"] = { { isScalable = true } },
["Recover #% of maximum Mana when a Charm is used"] = { { isScalable = true } },
@@ -11116,9 +11533,10 @@ return {
["Recover #% of maximum Mana when you Kill a Cursed Enemy"] = { { isScalable = true } },
["Recover #% of maximum Mana when you Kill an Enemy during Effect"] = { { isScalable = true } },
["Recover #% of maximum Mana when you Shock an Enemy"] = { { isScalable = true } },
+ ["Recover #% of your maximum Life when an Enemy dies in your Presence"] = { { isScalable = true } },
+ ["Recover #% of your maximum Mana when an Enemy dies in your Presence"] = { { isScalable = true } },
["Recover #% of your maximum Mana when you Block"] = { { isScalable = true } },
["Recover Energy Shield equal to #% of Armour when you Block"] = { { isScalable = true } },
- ["Recover Full Life at the end of the Effect"] = { },
["Recover Full Life on use"] = { },
["Recover Life equal to #% of Mana Flask's Recovery Amount when used"] = { { isScalable = true } },
["Recover Mana equal to #% of Life Flask's Recovery Amount when used"] = { { isScalable = true } },
@@ -11262,9 +11680,16 @@ return {
["Remembrancing # songworthy deeds by the line of Medved\nPassives in radius are Conquered by the Kalguur"] = { { isScalable = true } },
["Remembrancing # songworthy deeds by the line of Olroth\nPassives in radius are Conquered by the Kalguur"] = { { isScalable = true } },
["Remembrancing # songworthy deeds by the line of Vorana\nPassives in radius are Conquered by the Kalguur"] = { { isScalable = true } },
+ ["Remnants can be collected from #% further away"] = { { isScalable = true } },
+ ["Remnants can be collected from #% further away if you have at least 100 Tribute"] = { { isScalable = true } },
["Remnants have # additional Suffix Modifiers"] = { { isScalable = true } },
["Remnants have #% chance to have an additional Suffix Modifier"] = { { isScalable = true } },
+ ["Remnants have #% increased effect"] = { { isScalable = true } },
+ ["Remnants have #% increased effect per 10 Tribute"] = { { isScalable = true } },
+ ["Remnants have #% reduced effect"] = { { isScalable = true, formats = { "negate" } } },
+ ["Remnants have #% reduced effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Remnants have an additional Suffix Modifier"] = { },
+ ["Remnants must be collected from #% closer if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } },
["Remove #% of Mana on hit"] = { { isScalable = true } },
["Remove Bleeding when you use a Guard Skill"] = { },
["Remove Bleeding when you use a Life Flask"] = { },
@@ -11273,10 +11698,12 @@ return {
["Remove Damaging Ailments when you Change Stance"] = { },
["Remove Elemental Ailments when you Cast a Curse Spell"] = { },
["Remove Ignite and Burning when you use a Flask"] = { },
+ ["Remove Ignite when you Warcry"] = { },
["Remove Maim and Hinder when you use a Flask"] = { },
["Remove Shock when you use a Flask"] = { },
["Remove a Curse after Channelling for 2 seconds"] = { },
["Remove a Curse when you use a Mana Flask"] = { },
+ ["Remove a Damaging Ailment when you use a Command Skill"] = { },
["Remove a random Elemental Ailment when you use a Mana Flask"] = { },
["Remove a random Non-Elemental Ailment when you use a Life Flask"] = { },
["Remove all Ailments and Burning when you gain Adrenaline"] = { },
@@ -11300,6 +11727,8 @@ return {
["Removes Elemental Ailments when you use a Flask"] = { },
["Removes Frozen and Chilled on use"] = { },
["Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
+ ["Require # additional enemies to be Surrounded"] = { { isScalable = true } },
+ ["Require # fewer enemies to be Surrounded"] = { { isScalable = true, formats = { "negate" } } },
["Requires # Glory to use"] = { { isScalable = true } },
["Rerolling Favours at Ritual Altars has no Cost the first # times"] = { { isScalable = true } },
["Rerolling Favours at Ritual Altars has no Cost the first time"] = { },
@@ -11351,6 +11780,7 @@ return {
["Riposte has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Ritual Altars in Area allow rerolling Favours # additional times"] = { { isScalable = true } },
["Ritual Altars in Area allow rerolling Favours an additional time"] = { },
+ ["Ritual Cadence"] = { },
["Ritual Favours in Area have #% increased chance to be Omens"] = { { isScalable = true } },
["Ritual Favours in Area have #% reduced chance to be Omens"] = { { isScalable = true, formats = { "negate" } } },
["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier\nA maximum of one Modifer can be granted this way"] = { },
@@ -11461,7 +11891,6 @@ return {
["Shrapnel Ballista Pierces an additional Target"] = { },
["Shrapnel Ballista fires # additional Arrows"] = { { isScalable = true } },
["Shrapnel Ballista fires an additional Arrow"] = { },
- ["Shrapnel Ballista has # to maximum number of Summoned Totems per 200 Strength"] = { { isScalable = true } },
["Shrapnel Ballista has #% increased Projectile Speed"] = { { isScalable = true } },
["Shrapnel Ballista has #% reduced Projectile Speed"] = { { isScalable = true, formats = { "negate" } } },
["Shrines are corrupted by Darkness"] = { },
@@ -11474,7 +11903,6 @@ return {
["Side passages contain #% more Resonator Chests"] = { { isScalable = true } },
["Siege Ballista deals #% increased Damage"] = { { isScalable = true } },
["Siege Ballista deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Siege Ballista has # to maximum number of Summoned Totems per 200 Dexterity"] = { { isScalable = true } },
["Siege Ballista has #% increased Attack Speed"] = { { isScalable = true } },
["Siege Ballista has #% increased Totem Placement Speed"] = { { isScalable = true } },
["Siege Ballista has #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
@@ -11516,9 +11944,11 @@ return {
["Skills Supported by Unleash have #% increased Seal gain frequency"] = { { isScalable = true } },
["Skills Supported by Unleash have #% reduced Seal gain frequency"] = { { isScalable = true, formats = { "negate" } } },
["Skills deal #% increased Brand Damage with Hits to their Branded Enemy"] = { { isScalable = true } },
+ ["Skills deal #% increased Damage per Combo consumed, up to 40%"] = { { isScalable = true } },
["Skills deal #% less Damage for each Warcry Empowering them"] = { { isScalable = true, formats = { "negate" } } },
["Skills deal #% more Damage for each Warcry Empowering them"] = { { isScalable = true } },
["Skills deal #% reduced Brand Damage with Hits to their Branded Enemy"] = { { isScalable = true, formats = { "negate" } } },
+ ["Skills deal #% reduced Damage per Combo consumed, up to 40%"] = { { isScalable = true, formats = { "negate" } } },
["Skills fire # additional Projectiles"] = { { isScalable = true } },
["Skills fire # additional Projectiles during Effect"] = { { isScalable = true } },
["Skills fire # additional Projectiles if the last Movement Skill you Used was Disengage"] = { { isScalable = true } },
@@ -11541,11 +11971,18 @@ return {
["Skills gain #% reduced Critical Hit Chance per socketed blue Support Gem"] = { { isScalable = true, formats = { "negate" } } },
["Skills gain #% reduced Damage per socketed red Support Gem"] = { { isScalable = true, formats = { "negate" } } },
["Skills gain #% reduced Skill Speed per socketed green Support Gem"] = { { isScalable = true, formats = { "negate" } } },
+ ["Skills gain 1 Glory every # second for each Rare or Unique monster in your Presence"] = { { isScalable = true } },
+ ["Skills gain 1 Glory every # seconds for each Rare or Unique monster in your Presence"] = { { isScalable = true } },
["Skills gain a Base Life Cost equal to #% of Base Mana Cost"] = { { isScalable = true } },
["Skills gain a Base Life Cost equal to Base Mana Cost"] = { },
["Skills have # seconds to Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } },
["Skills have # to Limit"] = { { isScalable = true } },
["Skills have #% chance to not consume a Cooldown when used"] = { { isScalable = true } },
+ ["Skills have #% chance to not remove Elemental Infusions but still count as consuming them"] = { { isScalable = true } },
+ ["Skills have #% chance to not remove Endurance Charges but still count as consuming them"] = { { isScalable = true } },
+ ["Skills have #% chance to not remove Frenzy Charges but still count as consuming them"] = { { isScalable = true } },
+ ["Skills have #% chance to not remove Power Charges but still count as consuming them"] = { { isScalable = true } },
+ ["Skills have a #% chance to not consume Glory"] = { { isScalable = true } },
["Skills have a #% longer Perfect Timing window"] = { { isScalable = true } },
["Skills have a #% shorter Perfect Timing window"] = { { isScalable = true, formats = { "negate" } } },
["Skills reserve 50% less Spirit"] = { },
@@ -11613,7 +12050,6 @@ return {
["Socketed Gems Chain # additional times"] = { { isScalable = false } },
["Socketed Gems Cost and Reserve Life instead of Mana"] = { },
["Socketed Gems Do Not Gain Experience"] = { },
- ["Socketed Gems always Ignite"] = { },
["Socketed Gems are Supported by Level # #"] = { { isScalable = true }, { isScalable = true, formats = { "display_indexable_support" } } },
["Socketed Gems are Supported by Level # Added Chaos Damage"] = { { isScalable = false } },
["Socketed Gems are Supported by Level # Added Cold Damage"] = { { isScalable = false } },
@@ -11821,7 +12257,6 @@ return {
["Socketed Gems fire Projectiles in a circle"] = { },
["Socketed Gems fire an additional Projectile"] = { },
["Socketed Gems have #% Critical Hit Chance"] = { { isScalable = false, formats = { "divide_by_one_hundred" } } },
- ["Socketed Gems have #% chance to Ignite"] = { { isScalable = false } },
["Socketed Gems have #% chance to cause Enemies to Flee on Hit"] = { { isScalable = false } },
["Socketed Gems have #% increased Mana Cost"] = { { isScalable = false, formats = { "negate" } } },
["Socketed Gems have #% increased Reservation Efficiency"] = { { isScalable = false, formats = { "negate" } } },
@@ -11892,7 +12327,6 @@ return {
["Socketed Vaal Skills require #% more Souls per Use"] = { { isScalable = true } },
["Socketed Warcry Skills have # Cooldown Use"] = { { isScalable = true } },
["Socketed Warcry Skills have # Cooldown Uses"] = { { isScalable = true } },
- ["Sockets cannot be modified"] = { },
["Some Monsters guarding Shrines are Rare"] = { },
["Sorcery Ward recovers #% faster"] = { { isScalable = true } },
["Sorcery Ward recovers #% slower"] = { { isScalable = true, formats = { "negate" } } },
@@ -11937,6 +12371,7 @@ return {
["Spell Skills always deal Critical Hits on final Repeat"] = { },
["Spell Skills cannot deal Critical Hits except on final Repeat"] = { },
["Spell Skills deal no Damage"] = { },
+ ["Spell Skills have # to maximum number of Summoned Totems"] = { { isScalable = true } },
["Spell Skills have #% increased Area of Effect"] = { { isScalable = true } },
["Spell Skills have #% increased Critical Damage Bonus on final Repeat"] = { { isScalable = true } },
["Spell Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -11954,10 +12389,13 @@ return {
["Spells fire # additional Projectiles"] = { { isScalable = true } },
["Spells fire # additional Projectiles\nSpells fire Projectiles in a circle"] = { { isScalable = true } },
["Spells fire an additional Projectile"] = { },
+ ["Spells have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Spells have #% increased Critical Hit Chance per Intensity"] = { { isScalable = true } },
+ ["Spells have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
["Spells have #% reduced Critical Hit Chance per Intensity"] = { { isScalable = true, formats = { "negate" } } },
["Spells have a #% chance to deal Double Damage"] = { { isScalable = true } },
["Spells have a #% chance to inflict Withered for 4 seconds on Hit"] = { { isScalable = true } },
+ ["Spells have a #% chance to not pay costs when cast"] = { { isScalable = true } },
["Spells in this item Repeat an additional # times"] = { { isScalable = false } },
["Spells in this item Repeat an additional time"] = { },
["Spells inflict Withered for 4 seconds on Hit"] = { },
@@ -12086,8 +12524,6 @@ return {
["Summoned Arbalists gain #% of their Physical Damage as Extra Lightning Damage"] = { { isScalable = true } },
["Summoned Arbalists have #% chance to Crush on Hit"] = { { isScalable = true } },
["Summoned Arbalists have #% chance to Freeze"] = { { isScalable = true } },
- ["Summoned Arbalists have #% chance to Freeze, Shock, and Ignite"] = { { isScalable = true } },
- ["Summoned Arbalists have #% chance to Ignite"] = { { isScalable = true } },
["Summoned Arbalists have #% chance to Intimidate for 4 seconds on Hit"] = { { isScalable = true } },
["Summoned Arbalists have #% chance to Maim for 4 seconds on Hit"] = { { isScalable = true } },
["Summoned Arbalists have #% chance to Poison"] = { { isScalable = true } },
@@ -12191,9 +12627,8 @@ return {
["Supported Skills no longer grant a Buff"] = { },
["Supported Skills trigger Burning Inscription after their Runic Inscriptions expire"] = { },
["Supported Skills trigger Soulbreaker on breaking Enemy Energy Shield"] = { },
- ["Suppressed Spell Damage cannot inflict Elemental Ailments on you"] = { },
- ["Suppressed Spell Damage dealt to you is Unlucky"] = { },
["Supreme Decadence"] = { },
+ ["Surges suffuse your Projectiles without being Consumed"] = { },
["Survival"] = { },
["Sweep grants an Endurance Charge on Hit"] = { },
["Sweep has a #% chance to grant an Endurance Charge on Hit"] = { { isScalable = true } },
@@ -12321,6 +12756,7 @@ return {
["Talismans found in this Area are Rare"] = { },
["Targeted by a Meteor when you use a Flask"] = { },
["Targets can be affected by # of your Poisons at the same time"] = { { isScalable = true } },
+ ["Targets can be affected by # of your Poisons at the same time if you have at least 100 Tribute"] = { { isScalable = true } },
["Targets can be affected by any number of your Poisons at the same time"] = { },
["Targets can be affected by two of your Chills at the same time"] = { },
["Targets can be affected by two of your Shocks at the same time"] = { },
@@ -12348,6 +12784,7 @@ return {
["Temporal Chains has no Reservation if Cast as an Aura"] = { },
["Temporal Rift has #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Temporal Rift has no Reservation"] = { },
+ ["Temporary Minion Skills have # to Limit of Minions summoned"] = { { isScalable = true } },
["Thaumaturgical Lure"] = { },
["The Blood Crucible can transform Unique Equipment"] = { },
["The Divine Font may bless belts"] = { },
@@ -12376,6 +12813,7 @@ return {
["The first time a Player reaches # Rampage Kills in this Area, 6 Basic Currency Items will drop"] = { { isScalable = true } },
["The first time a Player reaches # Rampage Kills in this Area, they will encounter a Powerful Monster"] = { { isScalable = true } },
["The most Damaging Poison on Enemies you Kill is Spread to other Enemies within # metres"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } },
+ ["This Flask cannot be Used but applies its Effect constantly"] = { },
["This Gem can only Support Skill Gems requiring Level # or lower"] = { { isScalable = true } },
["This Gem gains #% increased Experience"] = { { isScalable = true } },
["This Gem gains #% reduced Experience"] = { { isScalable = true, formats = { "negate" } } },
@@ -12384,6 +12822,11 @@ return {
["This Map's Quality also applies to Rarity of Items found"] = { },
["This Passive applies to your Minions instead of you"] = { },
["This Weapon's Critical Hit Chance is #%"] = { { isScalable = false, formats = { "divide_by_one_hundred" } } },
+ ["This item gains bonuses from Socketed Items as though it was Boots"] = { },
+ ["This item gains bonuses from Socketed Items as though it was Gloves"] = { },
+ ["This item gains bonuses from Socketed Items as though it was a Body Armour"] = { },
+ ["This item gains bonuses from Socketed Items as though it was a Helmet"] = { },
+ ["This item gains bonuses from Socketed Items as though it was a Shield"] = { },
["Thorns Damage has #% chance to ignore Enemy Armour"] = { { isScalable = true } },
["Thorns can Retaliate against all Hits"] = { },
["Throw # additional Mines"] = { { isScalable = true } },
@@ -12408,7 +12851,7 @@ return {
["Totemic Wood Lure"] = { },
["Totems Explode for #% of their Life as Fire Damage when on Low Life"] = { { isScalable = true } },
["Totems Explode on Death, dealing #% of their Life as Physical Damage"] = { { isScalable = true } },
- ["Totems Hinder Enemies near them when Summoned"] = { },
+ ["Totems Hinder Enemies in their Presence when Summoned"] = { },
["Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit"] = { { isScalable = true } },
["Totems Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Totems Taunt Enemies around them for # second when Summoned"] = { { isScalable = true } },
@@ -12619,7 +13062,6 @@ return {
["Trusted Kinship"] = { },
["Unaffected by Bleeding while affected by Malevolence"] = { },
["Unaffected by Blind"] = { },
- ["Unaffected by Burning Ground"] = { },
["Unaffected by Burning Ground while affected by Purity of Fire"] = { },
["Unaffected by Chill"] = { },
["Unaffected by Chill during Dodge Roll"] = { },
@@ -12637,6 +13079,7 @@ return {
["Unaffected by Frostbite while affected by Purity of Ice"] = { },
["Unaffected by Ignite"] = { },
["Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500"] = { },
+ ["Unaffected by Ignited Ground"] = { },
["Unaffected by Poison"] = { },
["Unaffected by Poison while affected by Malevolence"] = { },
["Unaffected by Shock"] = { },
@@ -12735,6 +13178,7 @@ return {
["Used when you Use a Travel Skill"] = { },
["Used when you are affected by a Slow"] = { },
["Used when you become Chilled"] = { },
+ ["Used when you become Cursed"] = { },
["Used when you become Frozen"] = { },
["Used when you become Ignited"] = { },
["Used when you become Poisoned"] = { },
@@ -12750,7 +13194,7 @@ return {
["Used when you use a Life Flask"] = { },
["Uses both hand slots"] = { },
["Using Warcries is Instant"] = { },
- ["Using a Mana Flask revives your Persistent Minions"] = { },
+ ["Using a Mana Flask revives one of your Persistent Minions"] = { },
["Utility Flasks gain # Charge every 3 seconds"] = { { isScalable = true } },
["Utility Flasks gain # Charges every 3 seconds"] = { { isScalable = true } },
["Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls"] = { },
@@ -12810,6 +13254,7 @@ return {
["Volatile Dead Consumes up to # additional corpses"] = { { isScalable = true } },
["Volatile Dead Consumes up to 1 additional corpse"] = { },
["Volatile Dead and Cremation Penetrate #% Fire Resistance per 100 Dexterity"] = { { isScalable = true } },
+ ["Volatile Power also grants #% increased Critical Hit chance per Volatility exploded"] = { { isScalable = true } },
["Volcanic Fissure deals #% increased Damage"] = { { isScalable = true } },
["Volcanic Fissure deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Volcanic Fissure fires # additional Projectiles"] = { { isScalable = true } },
@@ -12826,7 +13271,6 @@ return {
["Vulnerability has #% increased Reservation if Cast as an Aura"] = { { isScalable = true } },
["Vulnerability has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } },
["Vulnerability has no Reservation if Cast as an Aura"] = { },
- ["Wand Attacks fire an additional Projectile"] = { },
["War Banner has #% increased Adrenaline duration"] = { { isScalable = true } },
["War Banner has #% increased Aura Magnitudes"] = { { isScalable = true } },
["War Banner has #% increased Mana Reservation Efficiency"] = { { isScalable = true } },
@@ -12841,9 +13285,11 @@ return {
["Warbands in the Area have an additional Support Member"] = { },
["Warbands in this Area have # additional Members"] = { { isScalable = true } },
["Warbands in this Area have an additional Member"] = { },
- ["Warcries Debilitate Enemies for 1 second"] = { },
+ ["Warcries Debilitate Enemies"] = { },
["Warcries Empower # additional Attacks"] = { { isScalable = true } },
+ ["Warcries Empower # additional Attacks if you have at least 100 Tribute"] = { { isScalable = true } },
["Warcries Empower an additional Attack"] = { },
+ ["Warcries Empower an additional Attack if you have at least 100 Tribute"] = { },
["Warcries Explode Corpses dealing #% of their Life as Physical Damage"] = { { isScalable = true } },
["Warcries Knock Back and Interrupt Enemies in a smaller Area"] = { },
["Warcries Sacrifice 10 Rage if you have at least 25 Rage\nExerted Attacks deal #% less Attack Damage if a Warcry Sacrificed Rage Recently"] = { { isScalable = true } },
@@ -12855,6 +13301,7 @@ return {
["Warcries have #% chance to Empower 3 additional Attacks"] = { { isScalable = true } },
["Warcries have a minimum of 10 Power"] = { },
["Warcries have no Cost"] = { },
+ ["Warcries inflict Fire Exposure"] = { },
["Warcry Skills have # seconds to Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["Warcry Skills have #% increased Area of Effect"] = { { isScalable = true } },
["Warcry Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } },
@@ -12878,7 +13325,8 @@ return {
["Weapons you Animate create an additional copy"] = { },
["When Hit during effect, #% of Life loss from Damage taken occurs over 4 seconds instead"] = { { isScalable = true } },
["When Players Kill a Rare Monster they will gain 1 of its Modifiers for 20 seconds"] = { },
- ["When Volatility on you detonates, you regain an equivalent amount of Volatility"] = { },
+ ["When Volatility on you explodes, you regain an equivalent amount of Volatility"] = { },
+ ["When a Banner expires, recover #% of the Glory required for that Banner"] = { { isScalable = true } },
["When a Bloodline Pack is Slain, it drops # Basic Currency Items"] = { { isScalable = true } },
["When a Bloodline Pack is Slain, it drops # Rare Items"] = { { isScalable = true } },
["When a Bloodline Pack is Slain, it drops a Basic Currency Item"] = { },
@@ -12887,13 +13335,18 @@ return {
["When a Player Kills a Rare Monster, they have #% chance to gain its Modifiers for 20 seconds"] = { { isScalable = true } },
["When a Player Kills a Synthesised Rare Monster, they gain its Modifiers for 20 seconds"] = { },
["When a Player Kills a Synthesised Rare Monster, they have #% chance to gain its Modifiers for 20 seconds"] = { { isScalable = true } },
+ ["When collecting an Elemental Infusion, gain an additional Elemental Infusion of the same type"] = { },
["When used in the Synthesiser, the new item will have an additional Herald Modifier"] = { },
["When you Attack, take #% of Life as Physical Damage for\neach Warcry Empowering the Attack"] = { { isScalable = true } },
["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds"] = { { isScalable = true } },
- ["When you Consume a Charge Trigger Chaotic Infusion to gain # Chaos Infusion"] = { { isScalable = true } },
- ["When you Consume a Frenzy Charge Trigger Infuse Weapon to gain # Lightning Infusion"] = { { isScalable = true } },
- ["When you Consume a Power Charge Trigger Infuse Weapon to gain # Cold Infusion"] = { { isScalable = true } },
- ["When you Consume an Endurance Charge Trigger Infuse Weapon to gain # Fire Infusion"] = { { isScalable = true } },
+ ["When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge"] = { { isScalable = true } },
+ ["When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surges"] = { { isScalable = true } },
+ ["When you Consume a Frenzy Charge Trigger Elemental Surge to gain # Lightning Surge"] = { { isScalable = true } },
+ ["When you Consume a Frenzy Charge Trigger Elemental Surge to gain # Lightning Surges"] = { { isScalable = true } },
+ ["When you Consume a Power Charge Trigger Elemental Surge to gain # Cold Surge"] = { { isScalable = true } },
+ ["When you Consume a Power Charge Trigger Elemental Surge to gain # Cold Surges"] = { { isScalable = true } },
+ ["When you Consume an Endurance Charge Trigger Elemental Surge to gain # Fire Surge"] = { { isScalable = true } },
+ ["When you Consume an Endurance Charge Trigger Elemental Surge to gain # Fire Surges"] = { { isScalable = true } },
["When you Kill a Magic Monster gain its Modifiers for 60 seconds"] = { },
["When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds"] = { { isScalable = true } },
["When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds"] = { { isScalable = true } },
@@ -12906,13 +13359,16 @@ return {
["When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead"] = { },
["When you generate a Power Charge, Allies in your Presence generate that Charge instead"] = { },
["When you generate an Endurance Charge, Allies in your Presence generate that Charge instead"] = { },
- ["When you kill a Shocked enemy, Shock each wnemy within # metres for 2 seconds"] = { { isScalable = false, formats = { "divide_by_ten_1dp_if_required" } } },
- ["When you leave your Banner's Area, recover #% of the Valour consumed for that Banner"] = { { isScalable = true } },
+ ["When you kill a Shocked enemy, Shock each enemy within # metres for 2 seconds"] = { { isScalable = false, formats = { "divide_by_ten_1dp_if_required" } } },
["When you lose Temporal Chains you gain maximum Rage"] = { },
["When you or your Totems Kill a Burning Enemy, #% chance for you\nand your Totems to each gain an Endurance Charge"] = { { isScalable = true } },
["When you or your Totems Kill a Burning Enemy, you and your Totems each gain an Endurance Charge"] = { },
- ["When you place a Banner, you and nearby Allies Recover #% of maximum Life for\neach Stage the Banner has"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } },
- ["When you reload, triggers Gemini Infusion to alternately\ngain # Cold Infusion or # Fire Infusion"] = { { isScalable = true }, { isScalable = true } },
+ ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surge or # Fire Surge"] = { { isScalable = true }, { isScalable = true } },
+ ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surge or # Fire Surges"] = { { isScalable = true }, { isScalable = true } },
+ ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surges or # Fire Surge"] = { { isScalable = true }, { isScalable = true } },
+ ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surges or # Fire Surges"] = { { isScalable = true }, { isScalable = true } },
+ ["When your Marks are Consumed, they Mark another Enemy"] = { },
+ ["When your Marks are Consumed, they have #% chance to Mark another Enemy"] = { { isScalable = true } },
["When your Traps Trigger, your nearby Traps also Trigger"] = { },
["When your weapon gains Infusion #% chance to gain an additional Infusion of the same type"] = { { isScalable = true } },
["When your weapon gains Infusion gain an additional Infusion of the same type"] = { },
@@ -12920,7 +13376,7 @@ return {
["While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances"] = { },
["While at maximum Frenzy Charges, Attacks Poison Enemies"] = { },
["While in a Scourged Map, Items absorb #% more Corruption for each time the Map has been transformed"] = { { isScalable = true } },
- ["While not on Low Infernal Flame, all Damage from you and\nyour Minions contributes to Ignite Chance and Magnitude"] = { },
+ ["While not on Low Infernal Flame, all Damage from you and\nyour Minions contributes to Flammability and Ignite Magnitudes"] = { },
["While on Elemental Ground, Players deal #% increased Damage of the associated Damage Type"] = { { isScalable = true } },
["While on High Infernal Flame, you and Allies in your\nPresence Gain #% of Damage as Fire Damage"] = { { isScalable = true } },
["While there are at least five nearby Allies, you and nearby Allies have Onslaught"] = { },
@@ -12931,7 +13387,6 @@ return {
["While you are not on Low Mana, you and Allies in your Presence have Unholy Might"] = { },
["Wild Strike's Beam Chains an additional # times"] = { { isScalable = true } },
["Wild Strike's Beam Chains an additional time"] = { },
- ["Wind Dancer"] = { },
["Winter Orb deals #% increased Damage"] = { { isScalable = true } },
["Winter Orb deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Winter Orb has # Maximum Stages"] = { { isScalable = true } },
@@ -13080,6 +13535,7 @@ return {
["Withered for 2 seconds when you take Chaos Damage from a Hit"] = { },
["Withered you Inflict expires #% faster"] = { { isScalable = true } },
["Withered you Inflict expires #% slower"] = { { isScalable = true, formats = { "negate" } } },
+ ["Withered you inflict has infinite Duration"] = { },
["Withering Step has #% increased Elusive Effect"] = { { isScalable = true } },
["Withering Step has #% reduced Elusive Effect"] = { { isScalable = true, formats = { "negate" } } },
["Withering Step inflicts # additional Withered Debuffs"] = { { isScalable = true } },
@@ -13091,7 +13547,15 @@ return {
["Wrath has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } },
["Wrath has no Reservation"] = { },
["You always Ignite while Burning"] = { },
- ["You and Allies affected by your placed Banners Regenerate #% of\nmaximum Life per second for each Stage"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
+ ["You and Allies in your Presence have #% increased Accuracy Rating"] = { { isScalable = true } },
+ ["You and Allies in your Presence have #% increased Attack Speed"] = { { isScalable = true } },
+ ["You and Allies in your Presence have #% increased Cast Speed"] = { { isScalable = true } },
+ ["You and Allies in your Presence have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
+ ["You and Allies in your Presence have #% reduced Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } },
+ ["You and Allies in your Presence have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["You and Allies in your Presence have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } },
+ ["You and Allies in your Presence have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
+ ["You and Allies in your Presence have #% to Chaos Resistance"] = { { isScalable = true } },
["You and Nearby Allies have # to # added Chaos Damage per White Socket"] = { { isScalable = true }, { isScalable = true } },
["You and Nearby Allies have # to # added Cold Damage per Green Socket"] = { { isScalable = true }, { isScalable = true } },
["You and Nearby Allies have # to # added Fire Damage per Red Socket"] = { { isScalable = true }, { isScalable = true } },
@@ -13133,12 +13597,9 @@ return {
["You and your Totems gain an Endurance Charge when your Totems Kill a Burning Enemy"] = { },
["You and your allies cannot be Stunned while you are wielding a Staff"] = { },
["You are Crushed"] = { },
- ["You are Cursed with Conductivity"] = { },
["You are Cursed with Despair"] = { },
["You are Cursed with Elemental Weakness"] = { },
["You are Cursed with Enfeeble"] = { },
- ["You are Cursed with Flammability"] = { },
- ["You are Cursed with Frostbite"] = { },
["You are Cursed with Temporal Chains"] = { },
["You are Cursed with Vulnerability"] = { },
["You are Hexproof if you have a Magic Ring in right slot"] = { },
@@ -13155,6 +13616,7 @@ return {
["You can Break Enemy Armour to below 0"] = { },
["You can Cast # additional Brands"] = { { isScalable = true } },
["You can Cast an additional Brand"] = { },
+ ["You can Socket an additional copy of each Lineage Support Gem, in different Skills"] = { },
["You can apply # additional Curses"] = { { isScalable = true } },
["You can apply # additional Curses while affected by Malevolence"] = { { isScalable = true } },
["You can apply # additional Curses while at maximum Power Charges"] = { { isScalable = true } },
@@ -13183,14 +13645,13 @@ return {
["You can only deal Damage with this Weapon or Ignite"] = { },
["You can use One Hand Mace skills while Unarmed"] = { },
["You can use Quarterstaff skills while Unarmed"] = { },
- ["You can use each type of Support Gem an additional time in different Skills"] = { },
["You can wield Two-Handed Axes, Maces and Swords in one hand"] = { },
["You can't deal Damage with your Skills yourself"] = { },
- ["You cannot Block"] = { },
["You cannot Cast Curse Spells"] = { },
["You cannot Recharge Energy Shield"] = { },
["You cannot Recharge or Regenerate Energy Shield"] = { },
["You cannot Regenerate Energy Shield"] = { },
+ ["You cannot Sprint"] = { },
["You cannot be Chilled for # second after being Chilled"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["You cannot be Chilled for # seconds after being Chilled"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } },
["You cannot be Chilled or Frozen"] = { },
@@ -13205,6 +13666,7 @@ return {
["You cannot be Ignited if you've been Ignited Recently"] = { },
["You cannot be Ignited while you have a Flame Golem Summoned"] = { },
["You cannot be Impaled"] = { },
+ ["You cannot be Light Stunned if you've been Stunned Recently"] = { },
["You cannot be Maimed"] = { },
["You cannot be Poisoned if there is at least # Poison on you"] = { { isScalable = true } },
["You cannot be Poisoned while there are at least # Poisons on you"] = { { isScalable = true } },
@@ -13215,8 +13677,7 @@ return {
["You cannot be Shocked while at maximum Endurance Charges"] = { },
["You cannot be Shocked while you have a Lightning Golem Summoned"] = { },
["You cannot be Stunned if you've Blocked a Stunning Hit Recently"] = { },
- ["You cannot be Stunned if you've been Stunned Recently"] = { },
- ["You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds"] = { },
+ ["You cannot be Stunned if you've been Stunned in the past 2 seconds"] = { },
["You cannot be Stunned while at maximum Endurance Charges"] = { },
["You cannot be killed by reflected Elemental Damage"] = { },
["You cannot deal Critical Hits against non-Shocked Enemies"] = { },
@@ -13288,7 +13749,6 @@ return {
["You have Phasing during Onslaught"] = { },
["You have Phasing if Energy Shield Recharge has started Recently"] = { },
["You have Phasing if you have Blocked Recently"] = { },
- ["You have Phasing if you have Suppressed Spell Damage Recently"] = { },
["You have Phasing if you've Killed Recently"] = { },
["You have Phasing while affected by Haste"] = { },
["You have Phasing while at maximum Frenzy Charges"] = { },
@@ -13299,6 +13759,7 @@ return {
["You have Shocking Conflux for 3 seconds every 8 seconds"] = { },
["You have Tailwind if you have dealt a Critical Hit Recently"] = { },
["You have Tailwind if you've used a Socketed Vaal Skill Recently"] = { },
+ ["You have Unholy Might"] = { },
["You have Unholy Might while not on Low Mana"] = { },
["You have Unholy Might while you have no Energy Shield"] = { },
["You have a Smoke Cloud around you while stationary"] = { },
@@ -13325,6 +13786,7 @@ return {
["You take #% increased Extra Damage from Critical Hits while you have no Power Charges"] = { { isScalable = true } },
["You take #% of Elemental damage from Blocked Hits"] = { { isScalable = true } },
["You take #% of damage from Blocked Hits"] = { { isScalable = true } },
+ ["You take #% of damage from Blocked Hits while Active Blocking"] = { { isScalable = true } },
["You take #% of the damage from hits you Block"] = { { isScalable = true } },
["You take #% of your maximum Life as Chaos Damage on use"] = { { isScalable = true } },
["You take #% reduced Extra Damage from Critical Hits by Cursed Enemies"] = { { isScalable = true, formats = { "negate" } } },
@@ -13350,7 +13812,7 @@ return {
["Your Arc Towers repeats # additional Times"] = { { isScalable = true } },
["Your Attacks deal # Physical Damage"] = { { isScalable = true, formats = { "negate" } } },
["Your Attacks do not cost Mana"] = { },
- ["Your Aura Buffs do not affect allies"] = { },
+ ["Your Aura Buffs do not affect Allies"] = { },
["Your Bleeding does not deal extra Damage while the Target is moving"] = { },
["Your Chilling Towers deal #% increased Damage"] = { { isScalable = true } },
["Your Chilling Towers deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
@@ -13364,7 +13826,7 @@ return {
["Your Counterattacks deal Double Damage"] = { },
["Your Counterattacks have #% increased Cooldown Recovery Rate"] = { { isScalable = true } },
["Your Counterattacks have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } },
- ["Your Critical Damage Bonus is 300%"] = { },
+ ["Your Critical Damage Bonus is 250%"] = { },
["Your Critical Hit Chance is Lucky"] = { },
["Your Critical Hit Chance is Lucky while Focused"] = { },
["Your Critical Hit Chance is Lucky while on Low Life"] = { },
@@ -13378,10 +13840,8 @@ return {
["Your Critical Hits have a #% chance to deal Double Damage"] = { { isScalable = true } },
["Your Critical Hits with Attacks Maim Enemies"] = { },
["Your Curse Limit is equal to your maximum Power Charges"] = { },
- ["Your Curses can affect Hexproof Enemies"] = { },
["Your Curses have #% increased Effect if 50% of Curse Duration expired"] = { { isScalable = true } },
["Your Curses have #% reduced Effect if 50% of Curse Duration expired"] = { { isScalable = true, formats = { "negate" } } },
- ["Your Curses have infinite Duration"] = { },
["Your Damaging Hits always Stun Enemies that are on Full Life"] = { },
["Your Dexterity is added to your Minions"] = { },
["Your Elemental Golems are Immune to Elemental Damage"] = { },
@@ -13394,6 +13854,7 @@ return {
["Your Empowering Towers have #% increased Range"] = { { isScalable = true } },
["Your Empowering Towers have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } },
["Your Empowering Towers have #% reduced Range"] = { { isScalable = true, formats = { "negate" } } },
+ ["Your Energy Shield Recharge starts when your Minions are Reformed"] = { },
["Your Energy Shield starts at zero"] = { },
["Your Fireball Towers Projectiles fire in a circle"] = { },
["Your Fireball Towers deal #% increased Damage"] = { { isScalable = true } },
@@ -13429,8 +13890,10 @@ return {
["Your Glacial Cage Towers have #% reduced Range"] = { { isScalable = true, formats = { "negate" } } },
["Your Heavy Stun buildup empties #% faster"] = { { isScalable = true } },
["Your Heavy Stun buildup empties #% faster if you've successfully Parried Recently"] = { { isScalable = true } },
+ ["Your Heavy Stun buildup empties #% faster per 10 Tribute"] = { { isScalable = true } },
["Your Heavy Stun buildup empties #% slower"] = { { isScalable = true, formats = { "negate" } } },
["Your Heavy Stun buildup empties #% slower if you've successfully Parried Recently"] = { { isScalable = true, formats = { "negate" } } },
+ ["Your Heavy Stun buildup empties #% slower per 10 Treibute"] = { { isScalable = true, formats = { "negate" } } },
["Your Hits Intimidate Enemies for 4 seconds while you are using Pride"] = { },
["Your Hits always inflict Freeze, Shock and Ignite while Unbound"] = { },
["Your Hits can Penetrate Elemental Resistances down to a minimum of -50%"] = { },
@@ -13439,6 +13902,8 @@ return {
["Your Hits can't be Evaded by Blinded Enemies"] = { },
["Your Hits cannot Penetrate or ignore Elemental Resistances"] = { },
["Your Hits cannot Stun Enemies"] = { },
+ ["Your Hits cannot be Evaded by Heavy Stunned Enemies"] = { },
+ ["Your Hits cannot be Evaded by Pinned Enemies"] = { },
["Your Hits inflict Decay, dealing # Chaos Damage per second for 8 seconds"] = { { isScalable = true } },
["Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds"] = { },
["Your Hits permanently Intimidate Enemies that are on Full Life"] = { },
@@ -13457,6 +13922,7 @@ return {
["Your Imbuing Towers have #% reduced Range"] = { { isScalable = true, formats = { "negate" } } },
["Your Increases and Reductions to Quantity of Items found also apply to Damage"] = { },
["Your Intelligence is zero"] = { },
+ ["Your Life Flask also applies to your Minions"] = { },
["Your Life cannot change while you have Energy Shield"] = { },
["Your Lightning Storm Towers create Storms centred on Enemies"] = { },
["Your Lightning Storm Towers deal #% increased Damage"] = { { isScalable = true } },
@@ -13471,8 +13937,6 @@ return {
["Your Linked Targets take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
["Your Linked targets deal #% increased Damage"] = { { isScalable = true } },
["Your Linked targets deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } },
- ["Your Marks Transfer to another Enemy when Marked Enemy dies"] = { },
- ["Your Marks have a #% chance to Transfer to another Enemy when Marked Enemy dies"] = { { isScalable = true } },
["Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"] = { },
["Your Maximum Frenzy Charges is equal to your Maximum Power Charges"] = { },
["Your Maximum Resistances are #%"] = { { isScalable = false } },
@@ -13484,6 +13948,7 @@ return {
["Your Meteor Towers drop an additional Meteor"] = { },
["Your Meteor Towers have #% increased Range"] = { { isScalable = true } },
["Your Meteor Towers have #% reduced Range"] = { { isScalable = true, formats = { "negate" } } },
+ ["Your Minions are Gigantic"] = { },
["Your Minions inflict Malediction on Hit"] = { },
["Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
["Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } },
diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua
new file mode 100644
index 0000000000..9f3e5cd53d
--- /dev/null
+++ b/src/Data/ModVeiled.lua
@@ -0,0 +1,349 @@
+-- This file is automatically generated, do not edit!
+-- Item data (c) Grinding Gear Games
+
+return {
+ ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7137 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1119086588, },
+ ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7136 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3871530702, },
+ ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7134 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1938221597, },
+ ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7135 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3116427713, },
+ ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7133 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 2552484522, },
+ ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7144 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 468694293, },
+ ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7139 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 970480050, },
+ ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7143 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2780670304, },
+ ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7146 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1818915622, },
+ ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7145 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4264952559, },
+ ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7149 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3038857426, },
+ ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7140 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 8816597, },
+ ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7142 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4240116297, },
+ ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7148 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1829333149, },
+ ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7141 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2601021356, },
+ ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7147 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3343033032, },
+ ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7150 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2475870935, },
+ ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7138 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1283490138, },
+ ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 844 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHash = 3015669065, },
+ ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1599 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHash = 3398787959, },
+ ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 846 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHash = 2505884597, },
+ ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 848 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHash = 3278136794, },
+ ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 8402 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHash = 2639966148, },
+ ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 826 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHash = 970213192, },
+ ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4101445926, },
+ ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1004011302, },
+ ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 997 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2321178454, },
+ ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3377888098, },
+ ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8383 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "minion" }, tradeHash = 943702197, },
+ ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2546 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHash = 2479683456, },
+ ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5504 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 693180608, },
+ ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4104 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2705185939, },
+ ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 4986 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "lightning" }, tradeHash = 2466011626, },
+ ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8967 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 1781372024, },
+ ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 6858 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3561837752, },
+ ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4774 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 3509362078, },
+ ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4773 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1015576579, },
+ ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8191 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1195319608, },
+ ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 9537 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 599320227, },
+ ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7419 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 1327522346, },
+ ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5460 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3563080185, },
+ ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 8727 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHash = 1374654984, },
+ ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 948 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHash = 1978899297, },
+ ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6696 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3274422940, },
+ ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 8937 }, level = 1, group = "RecoupSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2363593824, },
+ ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 6940 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 3161573445, },
+ ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 8969 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4121454694, },
+ ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5205 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { }, weightVal = { }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1949851472, },
+ ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5184 }, level = 1, group = "CharmEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3480095574, },
+ ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4580 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2715190555, },
+ ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4494 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 1793740180, },
+ ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4403 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHash = 314741699, },
+ ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6032 }, level = 1, group = "ElementalExposureEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2074866941, },
+ ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 949 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHash = 4095671657, },
+ ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 950 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHash = 3676141501, },
+ ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 951 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHash = 1011760251, },
+ ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1569 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3377888098, },
+ ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 965 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 44972811, },
+ ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 980 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 239367161, },
+ ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2867 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 680068163, },
+ ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6339 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2709367754, },
+ ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6341 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3292710273, },
+ ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2480498143, },
+ ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4119 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 1772247089, },
+ ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4130 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3544800472, },
+ ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 937 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHash = 681332047, },
+ ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1004011302, },
+ ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 5638 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1238227257, },
+ ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 5606 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 538241406, },
+ ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 825 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHash = 2250533757, },
+ ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 924253255, },
+ ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6141 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1836676211, },
+ ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 876 }, level = 1, group = "FlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3741323227, },
+ ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2778 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 795138349, },
+ ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4500 }, level = 1, group = "BaseChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2174054121, },
+ ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 938 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHash = 2891184298, },
+ ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 929 }, level = 1, group = "CritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHash = 587431675, },
+ ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 933 }, level = 1, group = "CritMultiplierForJewel", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHash = 3556824919, },
+ ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 935 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHash = 274716455, },
+ ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 931 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHash = 737908626, },
+ ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHash = 458438597, },
+ ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1434 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2023107756, },
+ ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1440 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 1604736568, },
+ ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 1444556985, },
+ ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 789117908, },
+ ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 1942 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHash = 3119612865, },
+ ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8328 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, },
+ ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8350 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHash = 491450213, },
+ ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2547 }, level = 1, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "resistance", "minion" }, tradeHash = 1423639565, },
+ ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 9364 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 416040624, },
+ ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4129 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 3398301358, },
+ ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 966 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1444556985, },
+ ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 472520716, },
+ ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 869 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2748665614, },
+ ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 867 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 983749596, },
+ ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2475 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1389153006, },
+ ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 458438597, },
+ ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1614 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 836936635, },
+ ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 4101445926, },
+ ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2736 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 4270096386, },
+ ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6360 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2200293569, },
+ ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6359 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1102738251, },
+ ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6356 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 185580205, },
+ ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 850, 861 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences", "caster" }, tradeHash = 1131747566, },
+ ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 850, 863 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "defences", "caster" }, tradeHash = 3584035298, },
+ ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 850, 865 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHash = 1632833053, },
+ ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 861, 1089 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHash = 4215160445, },
+ ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 863, 1089 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHash = 1313000010, },
+ ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 865, 1089 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHash = 2921752643, },
+ ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 861, 1642 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences", "minion" }, tradeHash = 289988841, },
+ ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 863, 1642 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "defences", "minion" }, tradeHash = 2631111329, },
+ ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 865, 1642 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "defences", "minion" }, tradeHash = 262571738, },
+ ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 861, 9476 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 1886584833, },
+ ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 863, 9476 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1139025795, },
+ ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 865, 9476 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 721193160, },
+ ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 861, 1085 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 3834188973, },
+ ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 863, 1085 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1129700234, },
+ ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 865, 1085 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 495549257, },
+ ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 852, 2602 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "elemental", "fire" }, tradeHash = 1903981671, },
+ ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 854, 2604 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "elemental", "lightning" }, tradeHash = 4255260716, },
+ ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 853, 2603 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "elemental", "cold" }, tradeHash = 3120339385, },
+ ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4624, 4626 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { }, weightVal = { }, modTags = { "bleed", "unveiled_mod", "ailment" }, tradeHash = 3930825502, },
+ ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 8774, 8780 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { }, weightVal = { }, modTags = { "poison", "unveiled_mod", "ailment" }, tradeHash = 1762956693, },
+ ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 9702, 9705 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, tradeHash = 1025420770, },
+ ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5287, 5289 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "minion" }, tradeHash = 577252853, },
+ ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1118, 4259 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHash = 622659131, },
+ ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1647, 4123 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHash = 2415303479, },
+ ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 855, 9734 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "chaos" }, tradeHash = 1135901605, },
+ ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 958 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "minion" }, tradeHash = 2981137407, },
+ ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 998, 2462 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "aura" }, tradeHash = 1974943988, },
+ ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6032 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "elemental" }, tradeHash = 2074866941, },
+ ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 3994 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod" }, tradeHash = 4043376133, },
+ ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 1076 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 734614379, },
+ ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1077 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 4139681126, },
+ ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1078 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 656461285, },
+ ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 6961 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHash = 3465022881, },
+ ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 1071 }, level = 65, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHash = 538848803, },
+ ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6053 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHash = 378817135, },
+ ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 1072 }, level = 65, group = "StrengthAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHash = 1535626285, },
+ ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5243 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHash = 3393628375, },
+ ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 1073 }, level = 65, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHash = 2300185227, },
+ ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 65, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 4101445926, },
+ ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8163 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2083058281, },
+ ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 933 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHash = 3556824919, },
+ ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4537 }, level = 65, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 310945763, },
+ ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4577 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, },
+ ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6381 }, level = 65, group = "GloryGeneration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3143918757, },
+ ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 998 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 101878827, },
+ ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2880 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2103650854, },
+ ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4123 }, level = 65, group = "AilmentEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHash = 1303248024, },
+ ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 8774 }, level = 65, group = "PoisonChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3481083201, },
+ ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4624 }, level = 65, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 242637938, },
+ ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5127 }, level = 65, group = "IncisionChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "ailment" }, tradeHash = 300723956, },
+ ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9160 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3313255158, },
+ ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 65, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 153777645, },
+ ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4498 }, level = 65, group = "DazeBuildup", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3146310524, },
+ ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 6858 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3561837752, },
+ ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 6655 }, level = 65, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 330530785, },
+ ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6238 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHash = 446027070, },
+ ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1663 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHash = 656291658, },
+ ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 996 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHash = 3301100256, },
+ ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 992 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 986397080, },
+ ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9057 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHash = 1692879867, },
+ ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 4864 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHash = 1658498488, },
+ ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8467 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 2590797182, },
+ ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4572 }, level = 65, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 924253255, },
+ ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 5735 }, level = 65, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 258119672, },
+ ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7371 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3396435291, },
+ ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3874 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3308030688, },
+ ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6359 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1102738251, },
+ ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3771 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 311641062, },
+ ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 6930 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 1261076060, },
+ ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9179 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { }, weightVal = { }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHash = 3839676903, },
+ ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6356 }, level = 65, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 185580205, },
+ ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9478 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHash = 287294012, },
+ ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5206 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 501873429, },
+ ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4580 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2715190555, },
+ ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6360 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2200293569, },
+ ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7370 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, tradeHash = 514290151, },
+ ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3771 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHash = 311641062, },
+ ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 789117908, },
+ ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2736 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHash = 4270096386, },
+ ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 966 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHash = 1444556985, },
+ ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1832 }, level = 65, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 3407849389, },
+ ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 973 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 472520716, },
+ ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 8933 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2896115339, },
+ ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4480 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3972229254, },
+ ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4509 }, level = 65, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3552135623, },
+ ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9028 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3413635271, },
+ ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4577 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, },
+ ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, },
+ ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1655 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHash = 480796730, },
+ ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 8657 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 818877178, },
+ ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 8670 }, level = 65, group = "ParryDuration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3401186585, },
+ ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "You take (8-15)% of damage from Blocked Hits while Active Blocking", "(30-40)% of Physical Damage taken as Lightning while Active Blocking", statOrder = { 4759, 8757 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { }, weightVal = { }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHash = 1524959514, },
+ ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6198 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1689748350, },
+ ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6451 }, level = 65, group = "HeavyStunDecayRate", weightKey = { }, weightVal = { }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 886088880, },
+ ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1417 }, level = 65, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHash = 569299859, },
+ ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1443 }, level = 65, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2122183138, },
+ ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 5947 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1079292660, },
+ ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9263 }, level = 65, group = "AdditionalSpellTotem", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2474424958, },
+ ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9240 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 4136346606, },
+ ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9275 }, level = 65, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHash = 3544050945, },
+ ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9267 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, },
+ ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2256 }, level = 65, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 2353576063, },
+ ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3609 }, level = 65, group = "OfferingEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3191479793, },
+ ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 927 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHash = 2162097452, },
+ ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5469 }, level = 65, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHash = 1104825894, },
+ ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6824 }, level = 65, group = "InvocationSpellDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, },
+ ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9229 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1967040409, },
+ ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4061, 4061.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3927679277, },
+ ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4287 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 414821772, },
+ ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 8823 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, },
+ ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 65, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, },
+ ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 8830 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2468595624, },
+ ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5365 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2573406169, },
+ ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8829 }, level = 65, group = "ProjectileDamageFar", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2825946427, },
+ ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5378 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, },
+ ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage when on Low Life", statOrder = { 4366 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 4246007234, },
+ ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 826 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 970213192, },
+ ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1434 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2023107756, },
+ ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants have (8-15)% increased effect", statOrder = { 9001 }, level = 65, group = "RemnantEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1999910726, },
+ ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8357 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHash = 2337295272, },
+ ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1569 }, level = 65, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3377888098, },
+ ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (15-25)% further away", statOrder = { 9003 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3482326075, },
+ ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2689 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHash = 3176481473, },
+ ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6032 }, level = 65, group = "ElementalExposureEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2074866941, },
+ ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4507 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1004011302, },
+ ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1440 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 1604736568, },
+ ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9096 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 324210709, },
+ ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 6716 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHash = 916833363, },
+ ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1816 }, level = 65, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2112395885, },
+ ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 6654 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHash = 232701452, },
+ ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1818 }, level = 65, group = "ManaLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2839066308, },
+ ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4774 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3509362078, },
+ ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5655 }, level = 65, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3040571529, },
+ ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "Skills have a (10-15)% chance to not consume Glory", statOrder = { 5136 }, level = 65, group = "ChanceToNotConsumeGlory", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3200877707, },
+ ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9029 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1697191405, },
+ ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 4149 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHash = 4283407333, },
+ ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4773 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1015576579, },
+ ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2475 }, level = 65, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1389153006, },
+ ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2214 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 752930724, },
+ ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2462 }, level = 65, group = "AuraMagnitude", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 315791320, },
+ ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8191 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1195319608, },
+ ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 6821 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 3711973554, },
+ ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8349 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHash = 1691403182, },
+ ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2352 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, },
+ ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 4150 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHash = 3655769732, },
+ ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9245 }, level = 65, group = "SpellDamagePer100Life", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHash = 3491815140, },
+ ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(31-49)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 5605 }, level = 65, group = "DamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 1381474422, },
+ ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1662 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHash = 1136768410, },
+ ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9267 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, },
+ ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(91-116)% increased Spell Damage with Spells that cost Life", statOrder = { 9241 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, },
+ ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 871 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3981240776, },
+ ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9275 }, level = 65, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 3544050945, },
+ ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4203 }, level = 65, group = "ArchonDuration", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2158617060, },
+ ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 2124 }, level = 65, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 1702195217, },
+ ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9247 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHash = 1850249186, },
+ ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8201 }, level = 65, group = "MaximumElementalInfusion", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHash = 4097212302, },
+ ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4202 }, level = 65, group = "ArchonDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2586152168, },
+ ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 4933 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHash = 1914226331, },
+ ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1598 }, level = 65, group = "DamageasExtraPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHash = 4019237939, },
+ ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4626 }, level = 65, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, },
+ ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4259 }, level = 65, group = "ArmourBreak", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1776411443, },
+ ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4263 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHash = 1286199571, },
+ ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 6649 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 359357545, },
+ ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1647 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, tradeHash = 3141070085, },
+ ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 850, 1642 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHash = 835637773, },
+ ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9241 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, },
+ ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9229 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1967040409, },
+ ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4568, 9275 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 1817305991, },
+ ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 6648 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 212649958, },
+ ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 6824 }, level = 65, group = "InvocationSpellDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, },
+ ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 4922 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1518586897, },
+ ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 6647 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1746561819, },
+ ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3322 }, level = 65, group = "LocalLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 2387539034, },
+ ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4569 }, level = 65, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, },
+ ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3320 }, level = 65, group = "LocalFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 3398283493, },
+ ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4577 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, },
+ ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3321 }, level = 65, group = "LocalColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1740229525, },
+ ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4488 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, },
+ ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8236 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2013356568, },
+ ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 819, 916 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHash = 235192658, },
+ ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4488 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, },
+ ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2807 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, },
+ ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2240 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, },
+ ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5492 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, },
+ ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4265 }, level = 65, group = "ArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, },
+ ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Fissure Skills have a (15-25)% chance to create an additional Fissure", statOrder = { 9142 }, level = 65, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, },
+ ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause Aftershocks", statOrder = { 9792 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, },
+ ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 5844 }, level = 65, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, },
+ ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 2918 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, },
+ ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2807 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, },
+ ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2240 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, },
+ ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5492 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, },
+ ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4265 }, level = 65, group = "ArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, },
+ ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Fissure Skills have a (25-31)% chance to create an additional Fissure", statOrder = { 9142 }, level = 65, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, },
+ ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause Aftershocks", statOrder = { 9792 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, },
+ ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 5844 }, level = 65, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, },
+ ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 2918 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, },
+ ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 854, 9095 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHash = 4224952984, },
+ ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 8968 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 4033618138, },
+ ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 852, 1005 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 3899332927, },
+ ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4053 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 4258524206, },
+ ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 853, 986 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHash = 849707263, },
+ ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 8971 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2991045011, },
+ ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4043 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1823942939, },
+ ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3673 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3868118796, },
+ ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5365 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2573406169, },
+ ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6405 }, level = 65, group = "GrenadeCooldownUse", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2250681686, },
+ ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6407, 6408 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 1566806250, },
+ ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6403 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 538981065, },
+ ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 8830 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHash = 2468595624, },
+ ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 917 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHash = 710476746, },
+ ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2760344900, },
+ ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8829 }, level = 65, group = "ProjectileDamageFar", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2825946427, },
+ ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 8823 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, },
+ ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 916, 4391 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3821569985, },
+ ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5287, 5504 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1131423929, },
+ ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4335 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 1840985759, },
+ ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 916, 5283 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 244271083, },
+ ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 997 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2321178454, },
+ ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 8825 }, level = 65, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4081947835, },
+ ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5378 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, },
+ ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 6655 }, level = 65, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 330530785, },
+ ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 8882 }, level = 65, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1200678966, },
+ ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8239 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3028809864, },
+ ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4577 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHash = 53386210, },
+ ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4547 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 4101445926, },
+ ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1872 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 153777645, },
+ ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2256 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 2353576063, },
+ ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 958 }, level = 1, group = "UniqueMinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHash = 770672621, },
+ ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 998 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHash = 101878827, },
+ ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 972 }, level = 1, group = "UniqueManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 789117908, },
+ ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 891 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHash = 289128254, },
+ ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 892 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHash = 3850614073, },
+ ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 893 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHash = 4010677958, },
+ ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 888 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHash = 1250712710, },
+ ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(13-31)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4584, 6441 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kulemak_abyss_prefix" }, tradeHash = 3662638480, },
+ ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(80-120)% increased Chaos Damage", "Enemies you Kill have a (5-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 855, 2895 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_prefix", "damage", "chaos" }, tradeHash = 3097696978, },
+ ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(80-120)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 857, 4500 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_prefix", "damage", "physical" }, tradeHash = 2866075484, },
+ ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(80-120)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 855, 3606 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_prefix", "damage", "chaos" }, tradeHash = 2171087599, },
+ ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 870, 4577 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "kulemak_abyss_prefix" }, tradeHash = 3748685373, },
+ ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(80-120)% increased Elemental Damage", statOrder = { 1541, 1647 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_prefix", "damage", "elemental" }, tradeHash = 3369599297, },
+}
\ No newline at end of file
diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua
index 9ffb8cb398..0779382c0b 100644
--- a/src/Data/QueryMods.lua
+++ b/src/Data/QueryMods.lua
@@ -57,6 +57,24 @@ return {
["type"] = "enchant",
},
},
+ ["10499"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|10499",
+ ["text"] = "Allocates Necromantic Ward",
+ ["type"] = "enchant",
+ },
+ },
+ ["10500"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|10500",
+ ["text"] = "Allocates Dazing Blocks",
+ ["type"] = "enchant",
+ },
+ },
["10602"] = {
["specialCaseData"] = {
},
@@ -71,7 +89,7 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|10681",
- ["text"] = "Allocates Offensive Stance",
+ ["text"] = "Allocates Defensive Stance",
["type"] = "enchant",
},
},
@@ -84,6 +102,15 @@ return {
["type"] = "enchant",
},
},
+ ["10774"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|10774",
+ ["text"] = "Allocates Unyielding",
+ ["type"] = "enchant",
+ },
+ },
["1087"] = {
["specialCaseData"] = {
},
@@ -120,15 +147,6 @@ return {
["type"] = "enchant",
},
},
- ["11178"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|11178",
- ["text"] = "Allocates Whirling Onslaught",
- ["type"] = "enchant",
- },
- },
["11366"] = {
["specialCaseData"] = {
},
@@ -147,6 +165,15 @@ return {
["type"] = "enchant",
},
},
+ ["11392"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|11392",
+ ["text"] = "Allocates Molten Being",
+ ["type"] = "enchant",
+ },
+ },
["11526"] = {
["specialCaseData"] = {
},
@@ -183,6 +210,15 @@ return {
["type"] = "enchant",
},
},
+ ["11774"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|11774",
+ ["text"] = "Allocates The Spring Hare",
+ ["type"] = "enchant",
+ },
+ },
["11826"] = {
["specialCaseData"] = {
},
@@ -210,6 +246,15 @@ return {
["type"] = "enchant",
},
},
+ ["12412"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|12412",
+ ["text"] = "Allocates Temporal Mastery",
+ ["type"] = "enchant",
+ },
+ },
["12611"] = {
["specialCaseData"] = {
},
@@ -246,6 +291,24 @@ return {
["type"] = "enchant",
},
},
+ ["12906"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|12906",
+ ["text"] = "Allocates Sitting Duck",
+ ["type"] = "enchant",
+ },
+ },
+ ["12964"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|12964",
+ ["text"] = "Allocates Lone Warrior",
+ ["type"] = "enchant",
+ },
+ },
["12998"] = {
["specialCaseData"] = {
},
@@ -273,6 +336,24 @@ return {
["type"] = "enchant",
},
},
+ ["13482"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|13482",
+ ["text"] = "Allocates Punctured Lung",
+ ["type"] = "enchant",
+ },
+ },
+ ["13515"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|13515",
+ ["text"] = "Allocates Stormwalker",
+ ["type"] = "enchant",
+ },
+ },
["1352"] = {
["specialCaseData"] = {
},
@@ -354,6 +435,15 @@ return {
["type"] = "enchant",
},
},
+ ["14294"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|14294",
+ ["text"] = "Allocates Sacrificial Blood",
+ ["type"] = "enchant",
+ },
+ },
["14324"] = {
["specialCaseData"] = {
},
@@ -381,6 +471,15 @@ return {
["type"] = "enchant",
},
},
+ ["14761"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|14761",
+ ["text"] = "Allocates Warlord Leader",
+ ["type"] = "enchant",
+ },
+ },
["14777"] = {
["specialCaseData"] = {
},
@@ -435,6 +534,15 @@ return {
["type"] = "enchant",
},
},
+ ["15443"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|15443",
+ ["text"] = "Allocates Endured Suffering",
+ ["type"] = "enchant",
+ },
+ },
["1546"] = {
["specialCaseData"] = {
},
@@ -444,6 +552,15 @@ return {
["type"] = "enchant",
},
},
+ ["15606"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|15606",
+ ["text"] = "Allocates Thrill of the Fight",
+ ["type"] = "enchant",
+ },
+ },
["15617"] = {
["specialCaseData"] = {
},
@@ -480,6 +597,24 @@ return {
["type"] = "enchant",
},
},
+ ["15991"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|15991",
+ ["text"] = "Allocates Embodiment of Lightning",
+ ["type"] = "enchant",
+ },
+ },
+ ["1603"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|1603",
+ ["text"] = "Allocates Storm Driven",
+ ["type"] = "enchant",
+ },
+ },
["16150"] = {
["specialCaseData"] = {
},
@@ -534,6 +669,15 @@ return {
["type"] = "enchant",
},
},
+ ["16790"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|16790",
+ ["text"] = "Allocates Efficient Casting",
+ ["type"] = "enchant",
+ },
+ },
["16816"] = {
["specialCaseData"] = {
},
@@ -588,6 +732,15 @@ return {
["type"] = "enchant",
},
},
+ ["17303"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|17303",
+ ["text"] = "Allocates Utility Ordnance",
+ ["type"] = "enchant",
+ },
+ },
["17330"] = {
["specialCaseData"] = {
},
@@ -651,6 +804,15 @@ return {
["type"] = "enchant",
},
},
+ ["17825"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|17825",
+ ["text"] = "Allocates Tactical Retreat",
+ ["type"] = "enchant",
+ },
+ },
["17854"] = {
["specialCaseData"] = {
},
@@ -687,6 +849,15 @@ return {
["type"] = "enchant",
},
},
+ ["18157"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|18157",
+ ["text"] = "Allocates Tempered Defences",
+ ["type"] = "enchant",
+ },
+ },
["1823"] = {
["specialCaseData"] = {
},
@@ -813,6 +984,15 @@ return {
["type"] = "enchant",
},
},
+ ["19546"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|19546",
+ ["text"] = "Allocates Favourable Odds",
+ ["type"] = "enchant",
+ },
+ },
["19644"] = {
["specialCaseData"] = {
},
@@ -876,6 +1056,15 @@ return {
["type"] = "enchant",
},
},
+ ["20251"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|20251",
+ ["text"] = "Allocates Splitting Ground",
+ ["type"] = "enchant",
+ },
+ },
["20388"] = {
["specialCaseData"] = {
},
@@ -912,6 +1101,15 @@ return {
["type"] = "enchant",
},
},
+ ["20511"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|20511",
+ ["text"] = "Allocates Cremating Cries",
+ ["type"] = "enchant",
+ },
+ },
["20677"] = {
["specialCaseData"] = {
},
@@ -957,6 +1155,24 @@ return {
["type"] = "enchant",
},
},
+ ["2134"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|2134",
+ ["text"] = "Allocates Toxic Tolerance",
+ ["type"] = "enchant",
+ },
+ },
+ ["21349"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|21349",
+ ["text"] = "Allocates The Cunning Fox",
+ ["type"] = "enchant",
+ },
+ },
["2138"] = {
["specialCaseData"] = {
},
@@ -1011,6 +1227,15 @@ return {
["type"] = "enchant",
},
},
+ ["22532"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|22532",
+ ["text"] = "Allocates Fearful Paralysis",
+ ["type"] = "enchant",
+ },
+ },
["22626"] = {
["specialCaseData"] = {
},
@@ -1020,6 +1245,15 @@ return {
["type"] = "enchant",
},
},
+ ["22811"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|22811",
+ ["text"] = "Allocates The Wild Cat",
+ ["type"] = "enchant",
+ },
+ },
["22817"] = {
["specialCaseData"] = {
},
@@ -1074,6 +1308,15 @@ return {
["type"] = "enchant",
},
},
+ ["23244"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|23244",
+ ["text"] = "Allocates Bounty Hunter",
+ ["type"] = "enchant",
+ },
+ },
["2335"] = {
["specialCaseData"] = {
},
@@ -1101,6 +1344,24 @@ return {
["type"] = "enchant",
},
},
+ ["23630"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|23630",
+ ["text"] = "Allocates Self Immolation",
+ ["type"] = "enchant",
+ },
+ },
+ ["23736"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|23736",
+ ["text"] = "Allocates Spray and Pray",
+ ["type"] = "enchant",
+ },
+ },
["23738"] = {
["specialCaseData"] = {
},
@@ -1146,6 +1407,15 @@ return {
["type"] = "enchant",
},
},
+ ["2397"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|2397",
+ ["text"] = "Allocates Last Stand",
+ ["type"] = "enchant",
+ },
+ },
["24062"] = {
["specialCaseData"] = {
},
@@ -1155,6 +1425,15 @@ return {
["type"] = "enchant",
},
},
+ ["24087"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|24087",
+ ["text"] = "Allocates Everlasting Infusions",
+ ["type"] = "enchant",
+ },
+ },
["24120"] = {
["specialCaseData"] = {
},
@@ -1218,6 +1497,24 @@ return {
["type"] = "enchant",
},
},
+ ["24764"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|24764",
+ ["text"] = "Allocates Infusing Power",
+ ["type"] = "enchant",
+ },
+ },
+ ["24766"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|24766",
+ ["text"] = "Allocates Paranoia",
+ ["type"] = "enchant",
+ },
+ },
["2486"] = {
["specialCaseData"] = {
},
@@ -1236,6 +1533,24 @@ return {
["type"] = "enchant",
},
},
+ ["25211"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|25211",
+ ["text"] = "Allocates Waning Hindrances",
+ ["type"] = "enchant",
+ },
+ },
+ ["25362"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|25362",
+ ["text"] = "Allocates Chakra of Impact",
+ ["type"] = "enchant",
+ },
+ },
["25482"] = {
["specialCaseData"] = {
},
@@ -1362,6 +1677,15 @@ return {
["type"] = "enchant",
},
},
+ ["26479"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|26479",
+ ["text"] = "Allocates Steadfast Resolve",
+ ["type"] = "enchant",
+ },
+ },
["26518"] = {
["specialCaseData"] = {
},
@@ -1371,6 +1695,15 @@ return {
["type"] = "enchant",
},
},
+ ["26563"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|26563",
+ ["text"] = "Allocates Bone Chains",
+ ["type"] = "enchant",
+ },
+ },
["27009"] = {
["specialCaseData"] = {
},
@@ -1398,15 +1731,6 @@ return {
["type"] = "enchant",
},
},
- ["27290"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|27290",
- ["text"] = "Allocates Heavy Blade",
- ["type"] = "enchant",
- },
- },
["27303"] = {
["specialCaseData"] = {
},
@@ -1425,12 +1749,12 @@ return {
["type"] = "enchant",
},
},
- ["27417"] = {
+ ["27434"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|27417",
- ["text"] = "Allocates Destructive Apparatus",
+ ["id"] = "enchant.stat_2954116742|27434",
+ ["text"] = "Allocates Archon of the Storm",
["type"] = "enchant",
},
},
@@ -1443,6 +1767,15 @@ return {
["type"] = "enchant",
},
},
+ ["27513"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|27513",
+ ["text"] = "Allocates Material Solidification",
+ ["type"] = "enchant",
+ },
+ },
["27626"] = {
["specialCaseData"] = {
},
@@ -1515,30 +1848,48 @@ return {
["type"] = "enchant",
},
},
- ["28482"] = {
+ ["2843"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|28482",
- ["text"] = "Allocates Total Incineration",
+ ["id"] = "enchant.stat_2954116742|2843",
+ ["text"] = "Allocates Tolerant Equipment",
["type"] = "enchant",
},
},
- ["2863"] = {
+ ["28482"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|2863",
- ["text"] = "Allocates Perpetual Freeze",
+ ["id"] = "enchant.stat_2954116742|28482",
+ ["text"] = "Allocates Total Incineration",
["type"] = "enchant",
},
},
- ["28963"] = {
+ ["28613"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|28613",
+ ["text"] = "Allocates Roaring Cries",
+ ["type"] = "enchant",
+ },
+ },
+ ["2863"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|2863",
+ ["text"] = "Allocates Perpetual Freeze",
+ ["type"] = "enchant",
+ },
+ },
+ ["28963"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|28963",
- ["text"] = "Allocates Way of the Wind",
+ ["text"] = "Allocates Chakra of Rhythm",
["type"] = "enchant",
},
},
@@ -1551,6 +1902,15 @@ return {
["type"] = "enchant",
},
},
+ ["29306"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|29306",
+ ["text"] = "Allocates Chakra of Thought",
+ ["type"] = "enchant",
+ },
+ },
["29372"] = {
["specialCaseData"] = {
},
@@ -1749,6 +2109,24 @@ return {
["type"] = "enchant",
},
},
+ ["31745"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|31745",
+ ["text"] = "Allocates Lockdown",
+ ["type"] = "enchant",
+ },
+ },
+ ["31773"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|31773",
+ ["text"] = "Allocates Resurging Archon",
+ ["type"] = "enchant",
+ },
+ },
["31826"] = {
["specialCaseData"] = {
},
@@ -1785,21 +2163,21 @@ return {
["type"] = "enchant",
},
},
- ["32148"] = {
+ ["3215"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|32148",
- ["text"] = "Allocates Rattling Ball",
+ ["id"] = "enchant.stat_2954116742|3215",
+ ["text"] = "Allocates Melding",
["type"] = "enchant",
},
},
- ["3215"] = {
+ ["32151"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|3215",
- ["text"] = "Allocates Melding",
+ ["id"] = "enchant.stat_2954116742|32151",
+ ["text"] = "Allocates Crystalline Resistance",
["type"] = "enchant",
},
},
@@ -1830,6 +2208,15 @@ return {
["type"] = "enchant",
},
},
+ ["32448"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|32448",
+ ["text"] = "Allocates Shockproof",
+ ["type"] = "enchant",
+ },
+ },
["32507"] = {
["specialCaseData"] = {
},
@@ -1862,7 +2249,25 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|32664",
- ["text"] = "Allocates Flurry",
+ ["text"] = "Allocates Chakra of Breathing",
+ ["type"] = "enchant",
+ },
+ },
+ ["32721"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|32721",
+ ["text"] = "Allocates Distracted Target",
+ ["type"] = "enchant",
+ },
+ },
+ ["32799"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|32799",
+ ["text"] = "Allocates Man's Beast Friend",
["type"] = "enchant",
},
},
@@ -1875,6 +2280,15 @@ return {
["type"] = "enchant",
},
},
+ ["32976"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|32976",
+ ["text"] = "Allocates Gem Enthusiast",
+ ["type"] = "enchant",
+ },
+ },
["33059"] = {
["specialCaseData"] = {
},
@@ -1911,6 +2325,15 @@ return {
["type"] = "enchant",
},
},
+ ["33229"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|33229",
+ ["text"] = "Allocates Haemorrhaging Cuts",
+ ["type"] = "enchant",
+ },
+ },
["33240"] = {
["specialCaseData"] = {
},
@@ -1938,6 +2361,24 @@ return {
["type"] = "enchant",
},
},
+ ["33646"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|33646",
+ ["text"] = "Allocates Archon of the Flame",
+ ["type"] = "enchant",
+ },
+ },
+ ["338"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|338",
+ ["text"] = "Allocates Invocated Limit",
+ ["type"] = "enchant",
+ },
+ },
["33887"] = {
["specialCaseData"] = {
},
@@ -1947,6 +2388,15 @@ return {
["type"] = "enchant",
},
},
+ ["33922"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|33922",
+ ["text"] = "Allocates Stripped Defences",
+ ["type"] = "enchant",
+ },
+ },
["33978"] = {
["specialCaseData"] = {
},
@@ -2001,6 +2451,15 @@ return {
["type"] = "enchant",
},
},
+ ["34425"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|34425",
+ ["text"] = "Allocates Precise Volatility",
+ ["type"] = "enchant",
+ },
+ },
["34473"] = {
["specialCaseData"] = {
},
@@ -2019,6 +2478,42 @@ return {
["type"] = "enchant",
},
},
+ ["34541"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|34541",
+ ["text"] = "Allocates Energising Deflection",
+ ["type"] = "enchant",
+ },
+ },
+ ["34543"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|34543",
+ ["text"] = "Allocates The Frenzied Bear",
+ ["type"] = "enchant",
+ },
+ },
+ ["34553"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|34553",
+ ["text"] = "Allocates Emboldening Lead",
+ ["type"] = "enchant",
+ },
+ },
+ ["34908"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|34908",
+ ["text"] = "Allocates Staunch Deflection",
+ ["type"] = "enchant",
+ },
+ },
["3492"] = {
["specialCaseData"] = {
},
@@ -2037,6 +2532,15 @@ return {
["type"] = "enchant",
},
},
+ ["35031"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|35031",
+ ["text"] = "Allocates Chakra of Life",
+ ["type"] = "enchant",
+ },
+ },
["35324"] = {
["specialCaseData"] = {
},
@@ -2064,6 +2568,15 @@ return {
["type"] = "enchant",
},
},
+ ["35560"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|35560",
+ ["text"] = "Allocates At your Command",
+ ["type"] = "enchant",
+ },
+ },
["35564"] = {
["specialCaseData"] = {
},
@@ -2100,6 +2613,15 @@ return {
["type"] = "enchant",
},
},
+ ["35792"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|35792",
+ ["text"] = "Allocates Blood of Rage",
+ ["type"] = "enchant",
+ },
+ },
["35809"] = {
["specialCaseData"] = {
},
@@ -2136,6 +2658,15 @@ return {
["type"] = "enchant",
},
},
+ ["35918"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|35918",
+ ["text"] = "Allocates One For All",
+ ["type"] = "enchant",
+ },
+ },
["35966"] = {
["specialCaseData"] = {
},
@@ -2154,6 +2685,15 @@ return {
["type"] = "enchant",
},
},
+ ["36333"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|36333",
+ ["text"] = "Allocates Explosive Empowerment",
+ ["type"] = "enchant",
+ },
+ },
["36341"] = {
["specialCaseData"] = {
},
@@ -2217,6 +2757,15 @@ return {
["type"] = "enchant",
},
},
+ ["36931"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|36931",
+ ["text"] = "Allocates Concussive Attack",
+ ["type"] = "enchant",
+ },
+ },
["36976"] = {
["specialCaseData"] = {
},
@@ -2240,7 +2789,7 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|372",
- ["text"] = "Allocates Heatproofing",
+ ["text"] = "Allocates Heatproof",
["type"] = "enchant",
},
},
@@ -2307,15 +2856,6 @@ return {
["type"] = "enchant",
},
},
- ["37688"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|37688",
- ["text"] = "Allocates Devestating Devices",
- ["type"] = "enchant",
- },
- },
["37742"] = {
["specialCaseData"] = {
},
@@ -2415,6 +2955,15 @@ return {
["type"] = "enchant",
},
},
+ ["38570"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|38570",
+ ["text"] = "Allocates Demolitionist",
+ ["type"] = "enchant",
+ },
+ },
["38614"] = {
["specialCaseData"] = {
},
@@ -2460,6 +3009,15 @@ return {
["type"] = "enchant",
},
},
+ ["38965"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|38965",
+ ["text"] = "Allocates Infused Limits",
+ ["type"] = "enchant",
+ },
+ },
["38969"] = {
["specialCaseData"] = {
},
@@ -2649,6 +3207,15 @@ return {
["type"] = "enchant",
},
},
+ ["40687"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|40687",
+ ["text"] = "Allocates Lead by Example",
+ ["type"] = "enchant",
+ },
+ },
["40803"] = {
["specialCaseData"] = {
},
@@ -2658,6 +3225,15 @@ return {
["type"] = "enchant",
},
},
+ ["40985"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|40985",
+ ["text"] = "Allocates Empowering Remnants",
+ ["type"] = "enchant",
+ },
+ },
["40990"] = {
["specialCaseData"] = {
},
@@ -2667,6 +3243,24 @@ return {
["type"] = "enchant",
},
},
+ ["41033"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|41033",
+ ["text"] = "Allocates Utmost Offering",
+ ["type"] = "enchant",
+ },
+ },
+ ["41394"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|41394",
+ ["text"] = "Allocates Invigorating Archon",
+ ["type"] = "enchant",
+ },
+ },
["41512"] = {
["specialCaseData"] = {
},
@@ -2685,6 +3279,15 @@ return {
["type"] = "enchant",
},
},
+ ["41753"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|41753",
+ ["text"] = "Allocates Evocational Practitioner",
+ ["type"] = "enchant",
+ },
+ },
["41811"] = {
["specialCaseData"] = {
},
@@ -2730,6 +3333,15 @@ return {
["type"] = "enchant",
},
},
+ ["42045"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|42045",
+ ["text"] = "Allocates Archon of the Blizzard",
+ ["type"] = "enchant",
+ },
+ },
["42065"] = {
["specialCaseData"] = {
},
@@ -2748,6 +3360,15 @@ return {
["type"] = "enchant",
},
},
+ ["42103"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|42103",
+ ["text"] = "Allocates Enduring Deflection",
+ ["type"] = "enchant",
+ },
+ },
["42177"] = {
["specialCaseData"] = {
},
@@ -2757,6 +3378,15 @@ return {
["type"] = "enchant",
},
},
+ ["42245"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|42245",
+ ["text"] = "Allocates Efficient Inscriptions",
+ ["type"] = "enchant",
+ },
+ },
["42302"] = {
["specialCaseData"] = {
},
@@ -2766,6 +3396,15 @@ return {
["type"] = "enchant",
},
},
+ ["42347"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|42347",
+ ["text"] = "Allocates Chakra of Sight",
+ ["type"] = "enchant",
+ },
+ },
["42354"] = {
["specialCaseData"] = {
},
@@ -2802,21 +3441,21 @@ return {
["type"] = "enchant",
},
},
- ["42813"] = {
+ ["42760"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|42813",
- ["text"] = "Allocates Tides of Change",
+ ["id"] = "enchant.stat_2954116742|42760",
+ ["text"] = "Allocates Chakra of Stability",
["type"] = "enchant",
},
},
- ["42914"] = {
+ ["42813"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|42914",
- ["text"] = "Allocates Ball and Chain",
+ ["id"] = "enchant.stat_2954116742|42813",
+ ["text"] = "Allocates Tides of Change",
["type"] = "enchant",
},
},
@@ -2856,6 +3495,15 @@ return {
["type"] = "enchant",
},
},
+ ["43088"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|43088",
+ ["text"] = "Allocates Agonising Calamity",
+ ["type"] = "enchant",
+ },
+ },
["43090"] = {
["specialCaseData"] = {
},
@@ -2892,6 +3540,15 @@ return {
["type"] = "enchant",
},
},
+ ["43633"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|43633",
+ ["text"] = "Allocates Energising Archon",
+ ["type"] = "enchant",
+ },
+ },
["43677"] = {
["specialCaseData"] = {
},
@@ -2928,12 +3585,21 @@ return {
["type"] = "enchant",
},
},
+ ["43854"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|43854",
+ ["text"] = "Allocates All For One",
+ ["type"] = "enchant",
+ },
+ },
["43939"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|43939",
- ["text"] = "Allocates Fireproof",
+ ["text"] = "Allocates Melting Flames",
["type"] = "enchant",
},
},
@@ -2955,12 +3621,12 @@ return {
["type"] = "enchant",
},
},
- ["4423"] = {
+ ["44293"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|4423",
- ["text"] = "Allocates Coated Knife",
+ ["id"] = "enchant.stat_2954116742|44293",
+ ["text"] = "Allocates Hastening Barrier",
["type"] = "enchant",
},
},
@@ -2991,20 +3657,38 @@ return {
["type"] = "enchant",
},
},
- ["44566"] = {
+ ["4447"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|44566",
- ["text"] = "Allocates Lightning Rod",
+ ["id"] = "enchant.stat_2954116742|4447",
+ ["text"] = "Allocates Pin their Motivation",
["type"] = "enchant",
},
},
- ["44756"] = {
+ ["44566"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|44756",
+ ["id"] = "enchant.stat_2954116742|44566",
+ ["text"] = "Allocates Lightning Rod",
+ ["type"] = "enchant",
+ },
+ },
+ ["44753"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|44753",
+ ["text"] = "Allocates One With Flame",
+ ["type"] = "enchant",
+ },
+ },
+ ["44756"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|44756",
["text"] = "Allocates Marked Agility",
["type"] = "enchant",
},
@@ -3045,6 +3729,15 @@ return {
["type"] = "enchant",
},
},
+ ["45177"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|45177",
+ ["text"] = "Allocates Strike True",
+ ["type"] = "enchant",
+ },
+ },
["45244"] = {
["specialCaseData"] = {
},
@@ -3063,6 +3756,15 @@ return {
["type"] = "enchant",
},
},
+ ["4544"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|4544",
+ ["text"] = "Allocates The Ancient Serpent",
+ ["type"] = "enchant",
+ },
+ },
["4547"] = {
["specialCaseData"] = {
},
@@ -3117,6 +3819,24 @@ return {
["type"] = "enchant",
},
},
+ ["45751"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|45751",
+ ["text"] = "Allocates Frightening Shield",
+ ["type"] = "enchant",
+ },
+ },
+ ["4579"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|4579",
+ ["text"] = "Allocates Unbothering Cold",
+ ["type"] = "enchant",
+ },
+ },
["46024"] = {
["specialCaseData"] = {
},
@@ -3135,6 +3855,15 @@ return {
["type"] = "enchant",
},
},
+ ["46124"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|46124",
+ ["text"] = "Allocates Arcane Remnants",
+ ["type"] = "enchant",
+ },
+ },
["46197"] = {
["specialCaseData"] = {
},
@@ -3171,6 +3900,15 @@ return {
["type"] = "enchant",
},
},
+ ["46365"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|46365",
+ ["text"] = "Allocates Gigantic Following",
+ ["type"] = "enchant",
+ },
+ },
["46384"] = {
["specialCaseData"] = {
},
@@ -3189,21 +3927,21 @@ return {
["type"] = "enchant",
},
},
- ["46565"] = {
+ ["4661"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|46565",
- ["text"] = "Allocates Stance Breaker",
+ ["id"] = "enchant.stat_2954116742|4661",
+ ["text"] = "Allocates Inspiring Leader",
["type"] = "enchant",
},
},
- ["4661"] = {
+ ["46683"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|4661",
- ["text"] = "Allocates Inspiring Leader",
+ ["id"] = "enchant.stat_2954116742|46683",
+ ["text"] = "Allocates Inherited Strength ",
["type"] = "enchant",
},
},
@@ -3225,6 +3963,15 @@ return {
["type"] = "enchant",
},
},
+ ["46726"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|46726",
+ ["text"] = "Allocates Reformed Barrier",
+ ["type"] = "enchant",
+ },
+ },
["4673"] = {
["specialCaseData"] = {
},
@@ -3243,6 +3990,15 @@ return {
["type"] = "enchant",
},
},
+ ["47088"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|47088",
+ ["text"] = "Allocates Sic 'Em",
+ ["type"] = "enchant",
+ },
+ },
["4709"] = {
["specialCaseData"] = {
},
@@ -3297,6 +4053,15 @@ return {
["type"] = "enchant",
},
},
+ ["47420"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|47420",
+ ["text"] = "Allocates Expendable Army",
+ ["type"] = "enchant",
+ },
+ },
["47441"] = {
["specialCaseData"] = {
},
@@ -3306,6 +4071,15 @@ return {
["type"] = "enchant",
},
},
+ ["47514"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|47514",
+ ["text"] = "Allocates Dizzying Hits",
+ ["type"] = "enchant",
+ },
+ },
["47635"] = {
["specialCaseData"] = {
},
@@ -3320,7 +4094,7 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|47782",
- ["text"] = "Allocates Quick-change Act",
+ ["text"] = "Allocates Steady Footing",
["type"] = "enchant",
},
},
@@ -3342,6 +4116,15 @@ return {
["type"] = "enchant",
},
},
+ ["4810"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|4810",
+ ["text"] = "Allocates Sanguine Tolerance",
+ ["type"] = "enchant",
+ },
+ },
["48103"] = {
["specialCaseData"] = {
},
@@ -3351,6 +4134,15 @@ return {
["type"] = "enchant",
},
},
+ ["48215"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|48215",
+ ["text"] = "Allocates Headshot",
+ ["type"] = "enchant",
+ },
+ },
["48240"] = {
["specialCaseData"] = {
},
@@ -3369,6 +4161,15 @@ return {
["type"] = "enchant",
},
},
+ ["48524"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|48524",
+ ["text"] = "Allocates Blood Transfusion",
+ ["type"] = "enchant",
+ },
+ },
["48565"] = {
["specialCaseData"] = {
},
@@ -3387,6 +4188,15 @@ return {
["type"] = "enchant",
},
},
+ ["48617"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|48617",
+ ["text"] = "Allocates Hunter",
+ ["type"] = "enchant",
+ },
+ },
["48658"] = {
["specialCaseData"] = {
},
@@ -3396,6 +4206,24 @@ return {
["type"] = "enchant",
},
},
+ ["48699"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|48699",
+ ["text"] = "Allocates Frostwalker",
+ ["type"] = "enchant",
+ },
+ },
+ ["48734"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|48734",
+ ["text"] = "Allocates The Howling Primate",
+ ["type"] = "enchant",
+ },
+ },
["48774"] = {
["specialCaseData"] = {
},
@@ -3419,25 +4247,25 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|49088",
- ["text"] = "Allocates Fear of Death",
+ ["text"] = "Allocates Splintering Force",
["type"] = "enchant",
},
},
- ["4931"] = {
+ ["49150"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|4931",
- ["text"] = "Allocates Dependable Ward",
+ ["id"] = "enchant.stat_2954116742|49150",
+ ["text"] = "Allocates Precise Invocations",
["type"] = "enchant",
},
},
- ["49370"] = {
+ ["4931"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|49370",
- ["text"] = "Allocates Morning Star",
+ ["id"] = "enchant.stat_2954116742|4931",
+ ["text"] = "Allocates Dependable Ward",
["type"] = "enchant",
},
},
@@ -3504,6 +4332,15 @@ return {
["type"] = "enchant",
},
},
+ ["50023"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|50023",
+ ["text"] = "Allocates Invigorating Grandeur",
+ ["type"] = "enchant",
+ },
+ },
["50062"] = {
["specialCaseData"] = {
},
@@ -3540,6 +4377,15 @@ return {
["type"] = "enchant",
},
},
+ ["50392"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|50392",
+ ["text"] = "Allocates Brute Strength",
+ ["type"] = "enchant",
+ },
+ },
["50485"] = {
["specialCaseData"] = {
},
@@ -3558,6 +4404,15 @@ return {
["type"] = "enchant",
},
},
+ ["50673"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|50673",
+ ["text"] = "Allocates Avoiding Deflection",
+ ["type"] = "enchant",
+ },
+ },
["50687"] = {
["specialCaseData"] = {
},
@@ -3567,6 +4422,15 @@ return {
["type"] = "enchant",
},
},
+ ["50715"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|50715",
+ ["text"] = "Allocates Frozen Limit",
+ ["type"] = "enchant",
+ },
+ },
["50795"] = {
["specialCaseData"] = {
},
@@ -3585,6 +4449,15 @@ return {
["type"] = "enchant",
},
},
+ ["50912"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|50912",
+ ["text"] = "Allocates Imbibed Power",
+ ["type"] = "enchant",
+ },
+ },
["51105"] = {
["specialCaseData"] = {
},
@@ -3693,6 +4566,15 @@ return {
["type"] = "enchant",
},
},
+ ["51868"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|51868",
+ ["text"] = "Allocates Molten Carapace",
+ ["type"] = "enchant",
+ },
+ },
["51871"] = {
["specialCaseData"] = {
},
@@ -3720,6 +4602,15 @@ return {
["type"] = "enchant",
},
},
+ ["52180"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|52180",
+ ["text"] = "Allocates Trained Deflection",
+ ["type"] = "enchant",
+ },
+ },
["52191"] = {
["specialCaseData"] = {
},
@@ -3738,6 +4629,33 @@ return {
["type"] = "enchant",
},
},
+ ["52229"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|52229",
+ ["text"] = "Allocates Secrets of the Orb",
+ ["type"] = "enchant",
+ },
+ },
+ ["52245"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|52245",
+ ["text"] = "Allocates Distant Dreamer",
+ ["type"] = "enchant",
+ },
+ },
+ ["52257"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|52257",
+ ["text"] = "Allocates Conductive Embrace",
+ ["type"] = "enchant",
+ },
+ },
["5227"] = {
["specialCaseData"] = {
},
@@ -3783,6 +4701,15 @@ return {
["type"] = "enchant",
},
},
+ ["52684"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|52684",
+ ["text"] = "Allocates Eroding Chains",
+ ["type"] = "enchant",
+ },
+ },
["52803"] = {
["specialCaseData"] = {
},
@@ -3819,6 +4746,15 @@ return {
["type"] = "enchant",
},
},
+ ["53131"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53131",
+ ["text"] = "Allocates Tukohama's Brew",
+ ["type"] = "enchant",
+ },
+ },
["53150"] = {
["specialCaseData"] = {
},
@@ -3828,6 +4764,24 @@ return {
["type"] = "enchant",
},
},
+ ["53185"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53185",
+ ["text"] = "Allocates The Winter Owl",
+ ["type"] = "enchant",
+ },
+ },
+ ["53187"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53187",
+ ["text"] = "Allocates Warlord Berserker",
+ ["type"] = "enchant",
+ },
+ },
["53294"] = {
["specialCaseData"] = {
},
@@ -3837,6 +4791,15 @@ return {
["type"] = "enchant",
},
},
+ ["5332"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|5332",
+ ["text"] = "Allocates Crystallised Immunities",
+ ["type"] = "enchant",
+ },
+ },
["5335"] = {
["specialCaseData"] = {
},
@@ -3864,6 +4827,33 @@ return {
["type"] = "enchant",
},
},
+ ["53566"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53566",
+ ["text"] = "Allocates Run and Gun",
+ ["type"] = "enchant",
+ },
+ },
+ ["53607"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53607",
+ ["text"] = "Allocates Fortified Location",
+ ["type"] = "enchant",
+ },
+ },
+ ["53683"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|53683",
+ ["text"] = "Allocates Efficient Loading",
+ ["type"] = "enchant",
+ },
+ },
["53823"] = {
["specialCaseData"] = {
},
@@ -3909,6 +4899,24 @@ return {
["type"] = "enchant",
},
},
+ ["54031"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|54031",
+ ["text"] = "Allocates The Great Boar",
+ ["type"] = "enchant",
+ },
+ },
+ ["5410"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|5410",
+ ["text"] = "Allocates Channelled Heritage",
+ ["type"] = "enchant",
+ },
+ },
["54148"] = {
["specialCaseData"] = {
},
@@ -3990,6 +4998,15 @@ return {
["type"] = "enchant",
},
},
+ ["55131"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|55131",
+ ["text"] = "Allocates Light on your Feet",
+ ["type"] = "enchant",
+ },
+ },
["55149"] = {
["specialCaseData"] = {
},
@@ -4062,30 +5079,57 @@ return {
["type"] = "enchant",
},
},
- ["56063"] = {
+ ["5594"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|56063",
- ["text"] = "Allocates Lingering Horror",
+ ["id"] = "enchant.stat_2954116742|5594",
+ ["text"] = "Allocates Decrepifying Curse",
["type"] = "enchant",
},
},
- ["56265"] = {
+ ["56016"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|56265",
- ["text"] = "Allocates Throatseeker",
+ ["id"] = "enchant.stat_2954116742|56016",
+ ["text"] = "Allocates Passthrough Rounds",
["type"] = "enchant",
},
},
- ["56366"] = {
+ ["56063"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56063",
+ ["text"] = "Allocates Lingering Horror",
+ ["type"] = "enchant",
+ },
+ },
+ ["56265"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56265",
+ ["text"] = "Allocates Throatseeker",
+ ["type"] = "enchant",
+ },
+ },
+ ["56388"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56388",
+ ["text"] = "Allocates Reinforced Rallying",
+ ["type"] = "enchant",
+ },
+ },
+ ["5642"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|56366",
- ["text"] = "Allocates Silent Shiv",
+ ["id"] = "enchant.stat_2954116742|5642",
+ ["text"] = "Allocates Behemoth",
["type"] = "enchant",
},
},
@@ -4098,6 +5142,24 @@ return {
["type"] = "enchant",
},
},
+ ["56488"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56488",
+ ["text"] = "Allocates Glancing Deflection",
+ ["type"] = "enchant",
+ },
+ },
+ ["56493"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56493",
+ ["text"] = "Allocates Agile Succession",
+ ["type"] = "enchant",
+ },
+ },
["56616"] = {
["specialCaseData"] = {
},
@@ -4116,6 +5178,15 @@ return {
["type"] = "enchant",
},
},
+ ["56767"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56767",
+ ["text"] = "Allocates Electrifying Daze",
+ ["type"] = "enchant",
+ },
+ },
["56776"] = {
["specialCaseData"] = {
},
@@ -4130,7 +5201,25 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|56806",
- ["text"] = "Allocates Parrying Motion",
+ ["text"] = "Allocates Swift Blocking",
+ ["type"] = "enchant",
+ },
+ },
+ ["5686"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|5686",
+ ["text"] = "Allocates Chillproof",
+ ["type"] = "enchant",
+ },
+ },
+ ["56860"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56860",
+ ["text"] = "Allocates Resolute Reprisal",
["type"] = "enchant",
},
},
@@ -4143,6 +5232,15 @@ return {
["type"] = "enchant",
},
},
+ ["56988"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|56988",
+ ["text"] = "Allocates Electric Blood",
+ ["type"] = "enchant",
+ },
+ },
["56997"] = {
["specialCaseData"] = {
},
@@ -4224,6 +5322,15 @@ return {
["type"] = "enchant",
},
},
+ ["57286"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|57286",
+ ["text"] = "Allocates Embodiment of Flame",
+ ["type"] = "enchant",
+ },
+ },
["57379"] = {
["specialCaseData"] = {
},
@@ -4251,6 +5358,15 @@ return {
["type"] = "enchant",
},
},
+ ["57785"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|57785",
+ ["text"] = "Allocates Trained Turrets",
+ ["type"] = "enchant",
+ },
+ },
["57805"] = {
["specialCaseData"] = {
},
@@ -4296,6 +5412,15 @@ return {
["type"] = "enchant",
},
},
+ ["58215"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|58215",
+ ["text"] = "Allocates Sanguimantic Rituals",
+ ["type"] = "enchant",
+ },
+ },
["58397"] = {
["specialCaseData"] = {
},
@@ -4323,6 +5448,15 @@ return {
["type"] = "enchant",
},
},
+ ["58817"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|58817",
+ ["text"] = "Allocates Artillery Strike",
+ ["type"] = "enchant",
+ },
+ },
["58939"] = {
["specialCaseData"] = {
},
@@ -4332,21 +5466,21 @@ return {
["type"] = "enchant",
},
},
- ["59214"] = {
+ ["59208"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|59214",
- ["text"] = "Allocates Fated End",
+ ["id"] = "enchant.stat_2954116742|59208",
+ ["text"] = "Allocates Frantic Fighter",
["type"] = "enchant",
},
},
- ["59263"] = {
+ ["59214"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|59263",
- ["text"] = "Allocates Ripping Blade",
+ ["id"] = "enchant.stat_2954116742|59214",
+ ["text"] = "Allocates Fated End",
["type"] = "enchant",
},
},
@@ -4521,6 +5655,15 @@ return {
["type"] = "enchant",
},
},
+ ["61354"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|61354",
+ ["text"] = "Allocates Infernal Limit",
+ ["type"] = "enchant",
+ },
+ },
["61404"] = {
["specialCaseData"] = {
},
@@ -4593,15 +5736,6 @@ return {
["type"] = "enchant",
},
},
- ["62001"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|62001",
- ["text"] = "Allocates Backstabbing",
- ["type"] = "enchant",
- },
- },
["62034"] = {
["specialCaseData"] = {
},
@@ -4647,15 +5781,6 @@ return {
["type"] = "enchant",
},
},
- ["62439"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|62439",
- ["text"] = "Allocates Enraged Reaver",
- ["type"] = "enchant",
- },
- },
["62455"] = {
["specialCaseData"] = {
},
@@ -4692,6 +5817,24 @@ return {
["type"] = "enchant",
},
},
+ ["62963"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|62963",
+ ["text"] = "Allocates Flamewalker",
+ ["type"] = "enchant",
+ },
+ },
+ ["63031"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|63031",
+ ["text"] = "Allocates Glorious Anticipation",
+ ["type"] = "enchant",
+ },
+ },
["63037"] = {
["specialCaseData"] = {
},
@@ -4728,6 +5871,15 @@ return {
["type"] = "enchant",
},
},
+ ["63400"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|63400",
+ ["text"] = "Allocates Chakra of Elements",
+ ["type"] = "enchant",
+ },
+ },
["63431"] = {
["specialCaseData"] = {
},
@@ -4746,6 +5898,15 @@ return {
["type"] = "enchant",
},
},
+ ["63579"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|63579",
+ ["text"] = "Allocates Momentum",
+ ["type"] = "enchant",
+ },
+ },
["63585"] = {
["specialCaseData"] = {
},
@@ -4755,12 +5916,12 @@ return {
["type"] = "enchant",
},
},
- ["63659"] = {
+ ["63739"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|63659",
- ["text"] = "Allocates Clever Construction",
+ ["id"] = "enchant.stat_2954116742|63739",
+ ["text"] = "Allocates Vigorous Remnants",
["type"] = "enchant",
},
},
@@ -4791,12 +5952,21 @@ return {
["type"] = "enchant",
},
},
+ ["64050"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|64050",
+ ["text"] = "Allocates Marathon Runner",
+ ["type"] = "enchant",
+ },
+ },
["64119"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|64119",
- ["text"] = "Allocates Instant Reload",
+ ["text"] = "Allocates Rapid Reload",
["type"] = "enchant",
},
},
@@ -4809,6 +5979,15 @@ return {
["type"] = "enchant",
},
},
+ ["64415"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|64415",
+ ["text"] = "Allocates Shattering Daze",
+ ["type"] = "enchant",
+ },
+ },
["64443"] = {
["specialCaseData"] = {
},
@@ -4818,6 +5997,15 @@ return {
["type"] = "enchant",
},
},
+ ["64525"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|64525",
+ ["text"] = "Allocates Easy Target",
+ ["type"] = "enchant",
+ },
+ },
["64543"] = {
["specialCaseData"] = {
},
@@ -4832,7 +6020,7 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|64851",
- ["text"] = "Allocates Flashy Deflection",
+ ["text"] = "Allocates Flashy Parrying",
["type"] = "enchant",
},
},
@@ -4899,12 +6087,21 @@ return {
["type"] = "enchant",
},
},
+ ["65256"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|65256",
+ ["text"] = "Allocates Widespread Coverage",
+ ["type"] = "enchant",
+ },
+ },
["65265"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
["id"] = "enchant.stat_2954116742|65265",
- ["text"] = "Allocates Swift Deflection",
+ ["text"] = "Allocates Swift Interruption",
["type"] = "enchant",
},
},
@@ -4953,6 +6150,15 @@ return {
["type"] = "enchant",
},
},
+ ["7275"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|7275",
+ ["text"] = "Allocates Electrocuting Exposure",
+ ["type"] = "enchant",
+ },
+ },
["7302"] = {
["specialCaseData"] = {
},
@@ -4989,6 +6195,15 @@ return {
["type"] = "enchant",
},
},
+ ["7449"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|7449",
+ ["text"] = "Allocates Splinters",
+ ["type"] = "enchant",
+ },
+ },
["7604"] = {
["specialCaseData"] = {
},
@@ -5025,6 +6240,15 @@ return {
["type"] = "enchant",
},
},
+ ["7782"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|7782",
+ ["text"] = "Allocates Rupturing Pins",
+ ["type"] = "enchant",
+ },
+ },
["7809"] = {
["specialCaseData"] = {
},
@@ -5034,6 +6258,15 @@ return {
["type"] = "enchant",
},
},
+ ["7847"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|7847",
+ ["text"] = "Allocates The Fabled Stag",
+ ["type"] = "enchant",
+ },
+ },
["8273"] = {
["specialCaseData"] = {
},
@@ -5043,6 +6276,15 @@ return {
["type"] = "enchant",
},
},
+ ["8397"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|8397",
+ ["text"] = "Allocates Empowering Remains",
+ ["type"] = "enchant",
+ },
+ },
["8483"] = {
["specialCaseData"] = {
},
@@ -5061,21 +6303,21 @@ return {
["type"] = "enchant",
},
},
- ["8535"] = {
+ ["8554"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|8535",
- ["text"] = "Allocates Spiked Whip",
+ ["id"] = "enchant.stat_2954116742|8554",
+ ["text"] = "Allocates Burning Nature",
["type"] = "enchant",
},
},
- ["8554"] = {
+ ["8607"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_2954116742|8554",
- ["text"] = "Allocates Burning Nature",
+ ["id"] = "enchant.stat_2954116742|8607",
+ ["text"] = "Allocates Lavianga's Brew",
["type"] = "enchant",
},
},
@@ -5088,6 +6330,15 @@ return {
["type"] = "enchant",
},
},
+ ["8782"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|8782",
+ ["text"] = "Allocates Empowering Infusions",
+ ["type"] = "enchant",
+ },
+ },
["8791"] = {
["specialCaseData"] = {
},
@@ -5133,6 +6384,15 @@ return {
["type"] = "enchant",
},
},
+ ["8896"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|8896",
+ ["text"] = "Allocates Agile Sprinter",
+ ["type"] = "enchant",
+ },
+ },
["8904"] = {
["specialCaseData"] = {
},
@@ -5187,6 +6447,15 @@ return {
["type"] = "enchant",
},
},
+ ["9290"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|9290",
+ ["text"] = "Allocates Rusted Pins",
+ ["type"] = "enchant",
+ },
+ },
["934"] = {
["specialCaseData"] = {
},
@@ -5196,6 +6465,15 @@ return {
["type"] = "enchant",
},
},
+ ["94"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|94",
+ ["text"] = "Allocates Efficient Killing",
+ ["type"] = "enchant",
+ },
+ },
["9421"] = {
["specialCaseData"] = {
},
@@ -5223,6 +6501,24 @@ return {
["type"] = "enchant",
},
},
+ ["9604"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|9604",
+ ["text"] = "Allocates Thirst of Kitava",
+ ["type"] = "enchant",
+ },
+ },
+ ["9652"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|9652",
+ ["text"] = "Allocates Mending Deflection",
+ ["type"] = "enchant",
+ },
+ },
["9736"] = {
["specialCaseData"] = {
},
@@ -5232,6 +6528,15 @@ return {
["type"] = "enchant",
},
},
+ ["9896"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|9896",
+ ["text"] = "Allocates Heartstopping Presence",
+ ["type"] = "enchant",
+ },
+ },
["9908"] = {
["specialCaseData"] = {
},
@@ -5241,6 +6546,15 @@ return {
["type"] = "enchant",
},
},
+ ["9928"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_2954116742|9928",
+ ["text"] = "Allocates Embracing Frost",
+ ["type"] = "enchant",
+ },
+ },
["9968"] = {
["specialCaseData"] = {
},
@@ -5252,7 +6566,7 @@ return {
},
},
["Corrupted"] = {
- ["1095_AllDamage"] = {
+ ["1083_AllDamage"] = {
["Quiver"] = {
["max"] = 30,
["min"] = 20,
@@ -5269,7 +6583,7 @@ return {
["type"] = "enchant",
},
},
- ["1235_LocalChaosDamage"] = {
+ ["1223_LocalChaosDamage"] = {
["1HMace"] = {
["max"] = 14.5,
["min"] = 9.5,
@@ -5314,20 +6628,7 @@ return {
["type"] = "enchant",
},
},
- ["1379_EnergyShieldDelay"] = {
- ["Focus"] = {
- ["max"] = 30,
- ["min"] = 20,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_1782086450",
- ["text"] = "#% faster start of Energy Shield Recharge",
- ["type"] = "enchant",
- },
- },
- ["1416_GlobalIncreasePhysicalSpellSkillGemLevel"] = {
+ ["1399_GlobalIncreasePhysicalSpellSkillGemLevel"] = {
["1HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -5353,7 +6654,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1459_GainLifeOnBlock"] = {
+ ["1442_GainLifeOnBlock"] = {
["Shield"] = {
["max"] = 25,
["min"] = 20,
@@ -5366,7 +6667,7 @@ return {
["type"] = "enchant",
},
},
- ["1460_GainManaOnBlock"] = {
+ ["1443_GainManaOnBlock"] = {
["Shield"] = {
["max"] = 15,
["min"] = 10,
@@ -5379,7 +6680,7 @@ return {
["type"] = "enchant",
},
},
- ["1500_MaximumEnduranceCharges"] = {
+ ["1483_MaximumEnduranceCharges"] = {
["Belt"] = {
["max"] = 1,
["min"] = 1,
@@ -5393,7 +6694,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1505_MaximumFrenzyCharges"] = {
+ ["1488_MaximumFrenzyCharges"] = {
["Gloves"] = {
["max"] = 1,
["min"] = 1,
@@ -5407,7 +6708,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1510_MaximumPowerCharges"] = {
+ ["1493_MaximumPowerCharges"] = {
["Helmet"] = {
["max"] = 1,
["min"] = 1,
@@ -5421,7 +6722,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1571_AreaOfEffect"] = {
+ ["1554_AreaOfEffect"] = {
["Helmet"] = {
["max"] = 25,
["min"] = 15,
@@ -5434,7 +6735,7 @@ return {
["type"] = "enchant",
},
},
- ["1586_SkillEffectDuration"] = {
+ ["1569_SkillEffectDuration"] = {
["Helmet"] = {
["max"] = 25,
["min"] = 15,
@@ -5447,7 +6748,7 @@ return {
["type"] = "enchant",
},
},
- ["1620_DamageGainedAsChaos"] = {
+ ["1599_DamageGainedAsChaos"] = {
["Helmet"] = {
["max"] = 8,
["min"] = 5,
@@ -5460,7 +6761,7 @@ return {
["type"] = "enchant",
},
},
- ["1635_LifeRegenerationRatePercentage"] = {
+ ["1614_LifeRegenerationRatePercentage"] = {
["Helmet"] = {
["max"] = 2,
["min"] = 1,
@@ -5477,7 +6778,7 @@ return {
["type"] = "enchant",
},
},
- ["1676_MaximumBlockChance"] = {
+ ["1655_MaximumBlockChance"] = {
["Shield"] = {
["max"] = 3,
["min"] = 3,
@@ -5491,7 +6792,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1964_BlindingHit"] = {
+ ["1933_BlindingHit"] = {
["2HWeapon"] = {
["max"] = 10,
["min"] = 5,
@@ -5512,7 +6813,7 @@ return {
["type"] = "enchant",
},
},
- ["2178_LocalChanceToBleed"] = {
+ ["2147_LocalChanceToBleed"] = {
["1HMace"] = {
["max"] = 15,
["min"] = 10,
@@ -5537,7 +6838,7 @@ return {
["type"] = "enchant",
},
},
- ["2288_CurseEffectiveness"] = {
+ ["2256_CurseEffectiveness"] = {
["Helmet"] = {
["max"] = 10,
["min"] = 5,
@@ -5550,7 +6851,7 @@ return {
["type"] = "enchant",
},
},
- ["2638_ImmunityToBlind"] = {
+ ["2597_ImmunityToBlind"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -5567,7 +6868,7 @@ return {
["type"] = "enchant",
},
},
- ["2643_FireResistancePenetration"] = {
+ ["2602_FireResistancePenetration"] = {
["Gloves"] = {
["max"] = 15,
["min"] = 10,
@@ -5580,7 +6881,7 @@ return {
["type"] = "enchant",
},
},
- ["2644_ColdResistancePenetration"] = {
+ ["2603_ColdResistancePenetration"] = {
["Gloves"] = {
["max"] = 15,
["min"] = 10,
@@ -5593,7 +6894,7 @@ return {
["type"] = "enchant",
},
},
- ["2645_LightningResistancePenetration"] = {
+ ["2604_LightningResistancePenetration"] = {
["Gloves"] = {
["max"] = 15,
["min"] = 10,
@@ -5606,7 +6907,7 @@ return {
["type"] = "enchant",
},
},
- ["2914_IncreasedStunThreshold"] = {
+ ["2867_IncreasedStunThreshold"] = {
["Boots"] = {
["max"] = 30,
["min"] = 20,
@@ -5619,7 +6920,7 @@ return {
["type"] = "enchant",
},
},
- ["2915_FreezeThreshold"] = {
+ ["2868_FreezeThreshold"] = {
["Boots"] = {
["max"] = 30,
["min"] = 20,
@@ -5632,7 +6933,7 @@ return {
["type"] = "enchant",
},
},
- ["2920_WarcrySpeed"] = {
+ ["2873_WarcrySpeed"] = {
["Helmet"] = {
["max"] = 25,
["min"] = 15,
@@ -5645,7 +6946,7 @@ return {
["type"] = "enchant",
},
},
- ["4180_GlobalSkillGemLevel"] = {
+ ["4149_GlobalSkillGemLevel"] = {
["Amulet"] = {
["max"] = 1,
["min"] = 1,
@@ -5659,7 +6960,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["4275_ArmourBreak"] = {
+ ["4259_ArmourBreak"] = {
["Gloves"] = {
["max"] = 15,
["min"] = 10,
@@ -5672,7 +6973,7 @@ return {
["type"] = "enchant",
},
},
- ["4504_GlobalCooldownRecovery"] = {
+ ["4507_GlobalCooldownRecovery"] = {
["Helmet"] = {
["max"] = 12,
["min"] = 8,
@@ -5685,7 +6986,7 @@ return {
["type"] = "enchant",
},
},
- ["4512_SlowEffect"] = {
+ ["4519_SlowEffect"] = {
["Gloves"] = {
["max"] = 30,
["min"] = 20,
@@ -5698,7 +6999,7 @@ return {
["type"] = "enchant",
},
},
- ["4548_SlowPotency"] = {
+ ["4572_SlowPotency"] = {
["Boots"] = {
["max"] = -20,
["min"] = -30,
@@ -5712,7 +7013,7 @@ return {
["type"] = "enchant",
},
},
- ["4832_CorruptedBloodImmunity"] = {
+ ["4864_CorruptedBloodImmunity"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -5729,7 +7030,7 @@ return {
["type"] = "enchant",
},
},
- ["5847_EnergyGeneration"] = {
+ ["5919_EnergyGeneration"] = {
["Helmet"] = {
["max"] = 30,
["min"] = 20,
@@ -5742,7 +7043,7 @@ return {
["type"] = "enchant",
},
},
- ["6258_CharmChargeGeneration"] = {
+ ["6356_CharmChargeGeneration"] = {
["Amulet"] = {
["max"] = 0.17,
["min"] = 0.08,
@@ -5755,7 +7056,7 @@ return {
["type"] = "enchant",
},
},
- ["6260_LifeFlaskChargeGeneration"] = {
+ ["6359_LifeFlaskChargeGeneration"] = {
["Amulet"] = {
["max"] = 0.17,
["min"] = 0.08,
@@ -5768,7 +7069,7 @@ return {
["type"] = "enchant",
},
},
- ["6261_ManaFlaskChargeGeneration"] = {
+ ["6360_ManaFlaskChargeGeneration"] = {
["Amulet"] = {
["max"] = 0.17,
["min"] = 0.08,
@@ -5781,7 +7082,7 @@ return {
["type"] = "enchant",
},
},
- ["6281_GoldFoundIncrease"] = {
+ ["6384_GoldFoundIncrease"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -5790,7 +7091,7 @@ return {
["type"] = "enchant",
},
},
- ["6624_ImmuneToMaim"] = {
+ ["6749_ImmuneToMaim"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -5807,7 +7108,7 @@ return {
["type"] = "enchant",
},
},
- ["6883_LocalWeaponRangeIncrease"] = {
+ ["7022_LocalWeaponRangeIncrease"] = {
["1HMace"] = {
["max"] = 20,
["min"] = 10,
@@ -5836,7 +7137,7 @@ return {
["type"] = "enchant",
},
},
- ["6989_LocalRageOnHit"] = {
+ ["7129_LocalRageOnHit"] = {
["1HMace"] = {
["max"] = 1,
["min"] = 1,
@@ -5865,7 +7166,7 @@ return {
["type"] = "enchant",
},
},
- ["7044_LocalChanceToMaim"] = {
+ ["7210_LocalChanceToMaim"] = {
["2HWeapon"] = {
["max"] = 15,
["min"] = 10,
@@ -5886,7 +7187,7 @@ return {
["type"] = "enchant",
},
},
- ["7059_LocalChanceToPoisonOnHit"] = {
+ ["7224_LocalChanceToPoisonOnHit"] = {
["2HWeapon"] = {
["max"] = 15,
["min"] = 10,
@@ -5903,7 +7204,7 @@ return {
["type"] = "enchant",
},
},
- ["823_LocalPhysicalDamagePercent"] = {
+ ["819_LocalPhysicalDamagePercent"] = {
["1HMace"] = {
["max"] = 25,
["min"] = 15,
@@ -5948,7 +7249,7 @@ return {
["type"] = "enchant",
},
},
- ["825_LocalFireDamage"] = {
+ ["821_LocalFireDamage"] = {
["1HMace"] = {
["max"] = 18,
["min"] = 12,
@@ -5993,7 +7294,7 @@ return {
["type"] = "enchant",
},
},
- ["826_LocalColdDamage"] = {
+ ["822_LocalColdDamage"] = {
["1HMace"] = {
["max"] = 15.5,
["min"] = 10.5,
@@ -6038,7 +7339,7 @@ return {
["type"] = "enchant",
},
},
- ["827_LocalLightningDamage"] = {
+ ["823_LocalLightningDamage"] = {
["1HMace"] = {
["max"] = 22.5,
["min"] = 15,
@@ -6083,7 +7384,7 @@ return {
["type"] = "enchant",
},
},
- ["829_MovementVelocity"] = {
+ ["825_MovementVelocity"] = {
["Boots"] = {
["max"] = 5,
["min"] = 3,
@@ -6096,7 +7397,7 @@ return {
["type"] = "enchant",
},
},
- ["830_IncreasedSkillSpeed"] = {
+ ["826_IncreasedSkillSpeed"] = {
["Quiver"] = {
["max"] = 6,
["min"] = 4,
@@ -6113,7 +7414,7 @@ return {
["type"] = "enchant",
},
},
- ["837_LocalPhysicalDamageReductionRatingPercent"] = {
+ ["832_LocalPhysicalDamageReductionRatingPercent"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6142,7 +7443,7 @@ return {
["type"] = "enchant",
},
},
- ["838_LocalEvasionRatingIncreasePercent"] = {
+ ["833_LocalEvasionRatingIncreasePercent"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6171,7 +7472,7 @@ return {
["type"] = "enchant",
},
},
- ["839_LocalEnergyShieldPercent"] = {
+ ["834_LocalEnergyShieldPercent"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6200,7 +7501,7 @@ return {
["type"] = "enchant",
},
},
- ["840_LocalArmourAndEvasion"] = {
+ ["835_LocalArmourAndEvasion"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6229,7 +7530,7 @@ return {
["type"] = "enchant",
},
},
- ["841_LocalArmourAndEnergyShield"] = {
+ ["836_LocalArmourAndEnergyShield"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6258,7 +7559,7 @@ return {
["type"] = "enchant",
},
},
- ["842_LocalEvasionAndEnergyShield"] = {
+ ["837_LocalEvasionAndEnergyShield"] = {
["Boots"] = {
["max"] = 25,
["min"] = 15,
@@ -6283,7 +7584,7 @@ return {
["type"] = "enchant",
},
},
- ["844_LocalIncreasedSpiritPercent"] = {
+ ["839_LocalIncreasedSpiritPercent"] = {
["1HWeapon"] = {
["max"] = 25,
["min"] = 15,
@@ -6300,7 +7601,7 @@ return {
["type"] = "enchant",
},
},
- ["855_WeaponSpellDamage"] = {
+ ["850_WeaponSpellDamage"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 20,
@@ -6329,20 +7630,7 @@ return {
["type"] = "enchant",
},
},
- ["8581_ChainFromTerrain"] = {
- ["Quiver"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_4081947835",
- ["text"] = "Projectiles have #% chance to Chain an additional time from terrain",
- ["type"] = "enchant",
- },
- },
- ["861_IncreasedWeaponElementalDamagePercent"] = {
+ ["856_IncreasedWeaponElementalDamagePercent"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 20,
@@ -6387,7 +7675,7 @@ return {
["type"] = "enchant",
},
},
- ["864_IncreasedAccuracy"] = {
+ ["859_IncreasedAccuracy"] = {
["Helmet"] = {
["max"] = 100,
["min"] = 50,
@@ -6405,7 +7693,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["867_GlobalPhysicalDamageReductionRatingPercent"] = {
+ ["861_GlobalPhysicalDamageReductionRatingPercent"] = {
["Belt"] = {
["max"] = 25,
["min"] = 15,
@@ -6418,7 +7706,7 @@ return {
["type"] = "enchant",
},
},
- ["869_GlobalEvasionRatingPercent"] = {
+ ["863_GlobalEvasionRatingPercent"] = {
["Belt"] = {
["max"] = 25,
["min"] = 15,
@@ -6431,7 +7719,7 @@ return {
["type"] = "enchant",
},
},
- ["871_GlobalEnergyShieldPercent"] = {
+ ["865_GlobalEnergyShieldPercent"] = {
["Belt"] = {
["max"] = 25,
["min"] = 15,
@@ -6444,7 +7732,7 @@ return {
["type"] = "enchant",
},
},
- ["872_IncreasedLife"] = {
+ ["866_IncreasedLife"] = {
["Belt"] = {
["max"] = 40,
["min"] = 30,
@@ -6462,7 +7750,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_IncreasedMana"] = {
+ ["868_IncreasedMana"] = {
["Focus"] = {
["max"] = 25,
["min"] = 20,
@@ -6484,7 +7772,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["877_BaseSpirit"] = {
+ ["871_BaseSpirit"] = {
["Helmet"] = {
["max"] = 30,
["min"] = 20,
@@ -6498,7 +7786,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["884_AlliesInPresenceAllDamage"] = {
+ ["878_AlliesInPresenceAllDamage"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 20,
@@ -6515,7 +7803,20 @@ return {
["type"] = "enchant",
},
},
- ["892_AlliesInPresenceCriticalStrikeMultiplier"] = {
+ ["8825_ChainFromTerrain"] = {
+ ["Quiver"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_4081947835",
+ ["text"] = "Projectiles have #% chance to Chain an additional time from terrain",
+ ["type"] = "enchant",
+ },
+ },
+ ["889_AlliesInPresenceCriticalStrikeMultiplier"] = {
["1HWeapon"] = {
["max"] = 15,
["min"] = 10,
@@ -6532,7 +7833,7 @@ return {
["type"] = "enchant",
},
},
- ["893_AlliesInPresenceIncreasedAttackSpeed"] = {
+ ["890_AlliesInPresenceIncreasedAttackSpeed"] = {
["1HWeapon"] = {
["max"] = 10,
["min"] = 5,
@@ -6549,7 +7850,7 @@ return {
["type"] = "enchant",
},
},
- ["894_AlliesInPresenceIncreasedCastSpeed"] = {
+ ["891_AlliesInPresenceIncreasedCastSpeed"] = {
["1HWeapon"] = {
["max"] = 10,
["min"] = 5,
@@ -6566,7 +7867,7 @@ return {
["type"] = "enchant",
},
},
- ["916_ItemFoundRarityIncrease"] = {
+ ["913_ItemFoundRarityIncrease"] = {
["Amulet"] = {
["max"] = 15,
["min"] = 10,
@@ -6583,42 +7884,42 @@ return {
["type"] = "enchant",
},
},
- ["918_LocalCriticalStrikeMultiplier"] = {
+ ["915_LocalCriticalStrikeMultiplier"] = {
["1HMace"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["1HWeapon"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["2HMace"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["2HWeapon"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["Bow"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["Crossbow"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["Flail"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["Quarterstaff"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["Spear"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["specialCaseData"] = {
},
@@ -6629,24 +7930,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["9211_ThornsDamageIncrease"] = {
- ["Chest"] = {
- ["max"] = 50,
- ["min"] = 40,
- },
- ["Shield"] = {
- ["max"] = 50,
- ["min"] = 40,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_1315743832",
- ["text"] = "#% increased Thorns damage",
- ["type"] = "enchant",
- },
- },
- ["921_LocalAttributeRequirements"] = {
+ ["918_LocalAttributeRequirements"] = {
["1HMace"] = {
["max"] = -10,
["min"] = -20,
@@ -6728,7 +8012,7 @@ return {
["type"] = "enchant",
},
},
- ["923_GlobalIncreaseFireSpellSkillGemLevel"] = {
+ ["920_GlobalIncreaseFireSpellSkillGemLevel"] = {
["1HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6754,7 +8038,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["924_GlobalIncreaseColdSpellSkillGemLevel"] = {
+ ["921_GlobalIncreaseColdSpellSkillGemLevel"] = {
["1HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6780,7 +8064,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["925_GlobalIncreaseLightningSpellSkillGemLevel"] = {
+ ["922_GlobalIncreaseLightningSpellSkillGemLevel"] = {
["1HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6806,7 +8090,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["926_GlobalIncreaseChaosSpellSkillGemLevel"] = {
+ ["923_GlobalIncreaseChaosSpellSkillGemLevel"] = {
["1HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6832,7 +8116,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["927_GlobalIncreaseMeleeSkillGemLevel"] = {
+ ["924_GlobalIncreaseMeleeSkillGemLevel"] = {
["Gloves"] = {
["max"] = 1,
["min"] = 1,
@@ -6846,7 +8130,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["929_GlobalIncreaseMinionSpellSkillGemLevel"] = {
+ ["927_GlobalIncreaseMinionSpellSkillGemLevel"] = {
["Helmet"] = {
["max"] = 1,
["min"] = 1,
@@ -6860,7 +8144,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["933_SpellCriticalStrikeChance"] = {
+ ["931_SpellCriticalStrikeChance"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 20,
@@ -6885,7 +8169,7 @@ return {
["type"] = "enchant",
},
},
- ["935_CriticalStrikeMultiplier"] = {
+ ["933_CriticalStrikeMultiplier"] = {
["Quiver"] = {
["max"] = 20,
["min"] = 15,
@@ -6902,7 +8186,7 @@ return {
["type"] = "enchant",
},
},
- ["940_IncreasedCastSpeed"] = {
+ ["938_IncreasedCastSpeed"] = {
["1HWeapon"] = {
["max"] = 15,
["min"] = 10,
@@ -6927,7 +8211,7 @@ return {
["type"] = "enchant",
},
},
- ["941_AdditionalAmmo"] = {
+ ["939_AdditionalAmmo"] = {
["2HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6944,20 +8228,7 @@ return {
["type"] = "enchant",
},
},
- ["9436_WeaponSwapSpeed"] = {
- ["Gloves"] = {
- ["max"] = 30,
- ["min"] = 20,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "enchant.stat_3233599707",
- ["text"] = "#% increased Weapon Swap Speed",
- ["type"] = "enchant",
- },
- },
- ["943_AdditionalArrows"] = {
+ ["941_AdditionalArrows"] = {
["2HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -6975,7 +8246,7 @@ return {
["type"] = "enchant",
},
},
- ["945_Strength"] = {
+ ["943_Strength"] = {
["Amulet"] = {
["max"] = 15,
["min"] = 10,
@@ -7005,7 +8276,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["946_Dexterity"] = {
+ ["944_Dexterity"] = {
["Amulet"] = {
["max"] = 15,
["min"] = 10,
@@ -7035,7 +8306,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["947_Intelligence"] = {
+ ["945_Intelligence"] = {
["Amulet"] = {
["max"] = 15,
["min"] = 10,
@@ -7065,24 +8336,24 @@ return {
},
["usePositiveSign"] = true,
},
- ["9482_YouCannotBeHindered"] = {
- ["AnyJewel"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["9476_ThornsDamageIncrease"] = {
+ ["Chest"] = {
+ ["max"] = 50,
+ ["min"] = 40,
},
- ["BaseJewel"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["Shield"] = {
+ ["max"] = 50,
+ ["min"] = 40,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "enchant.stat_721014846",
- ["text"] = "You cannot be Hindered",
+ ["id"] = "enchant.stat_1315743832",
+ ["text"] = "#% increased Thorns damage",
["type"] = "enchant",
},
},
- ["949_ReducedPhysicalDamageTaken"] = {
+ ["947_ReducedPhysicalDamageTaken"] = {
["Chest"] = {
["max"] = 5,
["min"] = 3,
@@ -7095,7 +8366,7 @@ return {
["type"] = "enchant",
},
},
- ["950_MaximumElementalResistance"] = {
+ ["948_MaximumElementalResistance"] = {
["Amulet"] = {
["max"] = 1,
["min"] = 1,
@@ -7113,7 +8384,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["951_MaximumFireResist"] = {
+ ["949_MaximumFireResist"] = {
["Belt"] = {
["max"] = 3,
["min"] = 1,
@@ -7127,7 +8398,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["952_MaximumColdResist"] = {
+ ["950_MaximumColdResist"] = {
["Helmet"] = {
["max"] = 3,
["min"] = 1,
@@ -7141,7 +8412,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["953_MaximumLightningResistance"] = {
+ ["951_MaximumLightningResistance"] = {
["Boots"] = {
["max"] = 3,
["min"] = 1,
@@ -7155,7 +8426,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["955_AllResistances"] = {
+ ["953_AllResistances"] = {
["Amulet"] = {
["max"] = 10,
["min"] = 5,
@@ -7173,7 +8444,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["956_FireResistance"] = {
+ ["954_FireResistance"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -7199,7 +8470,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["957_ColdResistance"] = {
+ ["955_ColdResistance"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -7225,7 +8496,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["958_LightningResistance"] = {
+ ["956_LightningResistance"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -7251,7 +8522,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["959_ChaosResistance"] = {
+ ["957_ChaosResistance"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -7277,7 +8548,20 @@ return {
},
["usePositiveSign"] = true,
},
- ["964_LifeRegenerationRate"] = {
+ ["963_EnergyShieldDelay"] = {
+ ["Focus"] = {
+ ["max"] = 30,
+ ["min"] = 20,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_1782086450",
+ ["text"] = "#% faster start of Energy Shield Recharge",
+ ["type"] = "enchant",
+ },
+ },
+ ["965_LifeRegenerationRate"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -7286,7 +8570,7 @@ return {
["type"] = "enchant",
},
},
- ["965_DamageTakenGainedAsLife"] = {
+ ["966_DamageTakenGainedAsLife"] = {
["Chest"] = {
["max"] = 20,
["min"] = 10,
@@ -7299,7 +8583,7 @@ return {
["type"] = "enchant",
},
},
- ["966_LifeLeechPermyriad"] = {
+ ["967_LifeLeechPermyriad"] = {
["Amulet"] = {
["max"] = 3,
["min"] = 3,
@@ -7312,7 +8596,20 @@ return {
["type"] = "enchant",
},
},
- ["970_LifeGainedFromEnemyDeath"] = {
+ ["9716_WeaponSwapSpeed"] = {
+ ["Gloves"] = {
+ ["max"] = 30,
+ ["min"] = 20,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_3233599707",
+ ["text"] = "#% increased Weapon Swap Speed",
+ ["type"] = "enchant",
+ },
+ },
+ ["971_LifeGainedFromEnemyDeath"] = {
["1HWeapon"] = {
["max"] = 25,
["min"] = 20,
@@ -7341,7 +8638,7 @@ return {
["type"] = "enchant",
},
},
- ["971_ManaRegeneration"] = {
+ ["972_ManaRegeneration"] = {
["Helmet"] = {
["max"] = 30,
["min"] = 20,
@@ -7358,7 +8655,7 @@ return {
["type"] = "enchant",
},
},
- ["972_PercentDamageGoesToMana"] = {
+ ["973_PercentDamageGoesToMana"] = {
["Chest"] = {
["max"] = 20,
["min"] = 10,
@@ -7371,7 +8668,7 @@ return {
["type"] = "enchant",
},
},
- ["974_ManaLeechPermyriad"] = {
+ ["975_ManaLeechPermyriad"] = {
["Amulet"] = {
["max"] = 2,
["min"] = 2,
@@ -7384,7 +8681,24 @@ return {
["type"] = "enchant",
},
},
- ["975_ManaGainedFromEnemyDeath"] = {
+ ["9763_YouCannotBeHindered"] = {
+ ["AnyJewel"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "enchant.stat_721014846",
+ ["text"] = "You cannot be Hindered",
+ ["type"] = "enchant",
+ },
+ },
+ ["976_ManaGainedFromEnemyDeath"] = {
["1HWeapon"] = {
["max"] = 15,
["min"] = 10,
@@ -7413,7 +8727,7 @@ return {
["type"] = "enchant",
},
},
- ["980_LocalStunDamageIncrease"] = {
+ ["981_LocalStunDamageIncrease"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 20,
@@ -7463,7 +8777,7 @@ return {
},
["tradeMod"] = {
["id"] = "enchant.stat_2968503605",
- ["text"] = "#% increased chance to Ignite",
+ ["text"] = "#% increased Flammability Magnitude",
["type"] = "enchant",
},
},
@@ -7632,7 +8946,24 @@ return {
["type"] = "explicit",
},
},
- ["1074_IncreasedBlockChance"] = {
+ ["1005_IgniteEffect"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 5,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 5,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3791899485",
+ ["text"] = "#% increased Ignite Magnitude",
+ ["type"] = "explicit",
+ },
+ },
+ ["1060_IncreasedBlockChance"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -7649,7 +8980,34 @@ return {
["type"] = "explicit",
},
},
- ["1097_TotemDamageForJewel"] = {
+ ["1076_PercentageStrength"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_734614379",
+ ["text"] = "#% increased Strength",
+ ["type"] = "explicit",
+ },
+ },
+ ["1077_PercentageDexterity"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_4139681126",
+ ["text"] = "#% increased Dexterity",
+ ["type"] = "explicit",
+ },
+ },
+ ["1078_PercentageIntelligence"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_656461285",
+ ["text"] = "#% increased Intelligence",
+ ["type"] = "explicit",
+ },
+ },
+ ["1085_TotemDamageForJewel"] = {
["AnyJewel"] = {
["max"] = 18,
["min"] = 10,
@@ -7666,7 +9024,7 @@ return {
["type"] = "explicit",
},
},
- ["1101_AttackDamage"] = {
+ ["1089_AttackDamage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -7683,7 +9041,7 @@ return {
["type"] = "explicit",
},
},
- ["1130_PhysicalDamagePercent"] = {
+ ["1118_PhysicalDamagePercent"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -7700,7 +9058,7 @@ return {
["type"] = "explicit",
},
},
- ["1132_MeleeDamage"] = {
+ ["1120_MeleeDamage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -7717,7 +9075,7 @@ return {
["type"] = "explicit",
},
},
- ["1183_IncreasedStaffDamageForJewel"] = {
+ ["1171_IncreasedStaffDamageForJewel"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -7734,7 +9092,7 @@ return {
["type"] = "explicit",
},
},
- ["1194_IncreasedMaceDamageForJewel"] = {
+ ["1182_IncreasedMaceDamageForJewel"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -7751,7 +9109,7 @@ return {
["type"] = "explicit",
},
},
- ["1198_IncreasedBowDamageForJewel"] = {
+ ["1186_IncreasedBowDamageForJewel"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -7768,7 +9126,7 @@ return {
["type"] = "explicit",
},
},
- ["1212_SpearDamage"] = {
+ ["1200_SpearDamage"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -7785,7 +9143,7 @@ return {
["type"] = "explicit",
},
},
- ["1233_ChaosDamage"] = {
+ ["1221_ChaosDamage"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -7794,7 +9152,7 @@ return {
["type"] = "explicit",
},
},
- ["1235_LocalChaosDamage"] = {
+ ["1223_LocalChaosDamage"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -7803,7 +9161,7 @@ return {
["type"] = "explicit",
},
},
- ["1235_LocalChaosDamageTwoHand"] = {
+ ["1223_LocalChaosDamageTwoHand"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -7812,7 +9170,7 @@ return {
["type"] = "explicit",
},
},
- ["1264_StaffAttackSpeedForJewel"] = {
+ ["1252_StaffAttackSpeedForJewel"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -7829,7 +9187,7 @@ return {
["type"] = "explicit",
},
},
- ["1268_BowAttackSpeedForJewel"] = {
+ ["1256_BowAttackSpeedForJewel"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -7846,7 +9204,7 @@ return {
["type"] = "explicit",
},
},
- ["1271_SpearAttackSpeed"] = {
+ ["1259_SpearAttackSpeed"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -7863,7 +9221,7 @@ return {
["type"] = "explicit",
},
},
- ["1276_IncreasedAccuracyPercent"] = {
+ ["1264_IncreasedAccuracyPercent"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -7880,7 +9238,7 @@ return {
["type"] = "explicit",
},
},
- ["1285_BowIncreasedAccuracyRating"] = {
+ ["1273_BowIncreasedAccuracyRating"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -7897,7 +9255,7 @@ return {
["type"] = "explicit",
},
},
- ["1336_SpearCriticalDamage"] = {
+ ["1324_SpearCriticalDamage"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -7914,24 +9272,7 @@ return {
["type"] = "explicit",
},
},
- ["1379_EnergyShieldDelay"] = {
- ["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1782086450",
- ["text"] = "#% faster start of Energy Shield Recharge",
- ["type"] = "explicit",
- },
- },
- ["1416_GlobalIncreasePhysicalSpellSkillGemLevel"] = {
+ ["1399_GlobalIncreasePhysicalSpellSkillGemLevel"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -7941,18 +9282,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["1416_GlobalIncreasePhysicalSpellSkillGemLevelWeapon"] = {
+ ["1399_GlobalIncreasePhysicalSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 5,
@@ -7967,7 +9308,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["1451_MaximumLifeOnKillPercent"] = {
+ ["1434_MaximumLifeOnKillPercent"] = {
["AnyJewel"] = {
["max"] = 2,
["min"] = 1,
@@ -7984,7 +9325,7 @@ return {
["type"] = "explicit",
},
},
- ["1457_ManaGainedOnKillPercentage"] = {
+ ["1440_ManaGainedOnKillPercentage"] = {
["AnyJewel"] = {
["max"] = 2,
["min"] = 1,
@@ -8001,7 +9342,16 @@ return {
["type"] = "explicit",
},
},
- ["1473_IncreasedTotemLife"] = {
+ ["1443_GainManaOnBlock"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2122183138",
+ ["text"] = "# Mana gained when you Block",
+ ["type"] = "explicit",
+ },
+ },
+ ["1456_IncreasedTotemLife"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8018,7 +9368,7 @@ return {
["type"] = "explicit",
},
},
- ["1480_BaseCurseDuration"] = {
+ ["1463_BaseCurseDuration"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -8035,7 +9385,7 @@ return {
["type"] = "explicit",
},
},
- ["1553_IncreasedChillDuration"] = {
+ ["1536_IncreasedChillDuration"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -8052,7 +9402,7 @@ return {
["type"] = "explicit",
},
},
- ["1554_ShockDuration"] = {
+ ["1537_ShockDuration"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -8069,7 +9419,7 @@ return {
["type"] = "explicit",
},
},
- ["1571_AreaOfEffect"] = {
+ ["1554_AreaOfEffect"] = {
["AnyJewel"] = {
["max"] = 6,
["min"] = 4,
@@ -8086,7 +9436,7 @@ return {
["type"] = "explicit",
},
},
- ["1586_SkillEffectDuration"] = {
+ ["1569_SkillEffectDuration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8103,7 +9453,16 @@ return {
["type"] = "explicit",
},
},
- ["1663_MinionDamage"] = {
+ ["1598_DamageasExtraPhysical"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_4019237939",
+ ["text"] = "Gain #% of Damage as Extra Physical Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["1642_MinionDamage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8120,7 +9479,7 @@ return {
["type"] = "explicit",
},
},
- ["1668_ElementalDamagePercent"] = {
+ ["1647_ElementalDamagePercent"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8137,7 +9496,7 @@ return {
["type"] = "explicit",
},
},
- ["1682_ProjectileDamage"] = {
+ ["1659_ProjectileDamage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8154,7 +9513,7 @@ return {
["type"] = "explicit",
},
},
- ["1688_KnockbackDistance"] = {
+ ["1665_KnockbackDistance"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8171,7 +9530,7 @@ return {
["type"] = "explicit",
},
},
- ["1725_AttackAndCastSpeed"] = {
+ ["1702_AttackAndCastSpeed"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -8180,7 +9539,7 @@ return {
["type"] = "explicit",
},
},
- ["1738_GlobalFlaskLifeRecovery"] = {
+ ["1715_GlobalFlaskLifeRecovery"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8197,7 +9556,7 @@ return {
["type"] = "explicit",
},
},
- ["1739_FlaskManaRecovery"] = {
+ ["1716_FlaskManaRecovery"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8214,7 +9573,7 @@ return {
["type"] = "explicit",
},
},
- ["1839_LifeLeechAmount"] = {
+ ["1816_LifeLeechAmount"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8231,7 +9590,7 @@ return {
["type"] = "explicit",
},
},
- ["1841_ManaLeechAmount"] = {
+ ["1818_ManaLeechAmount"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8248,7 +9607,7 @@ return {
["type"] = "explicit",
},
},
- ["1889_MarkCastSpeed"] = {
+ ["1868_MarkCastSpeed"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8260,12 +9619,12 @@ return {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_4189061307",
- ["text"] = "Mark Skills have #% increased Cast Speed",
+ ["id"] = "explicit.stat_1714971114",
+ ["text"] = "Mark Skills have #% increased Use Speed",
["type"] = "explicit",
},
},
- ["1893_CurseAreaOfEffect"] = {
+ ["1872_CurseAreaOfEffect"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -8282,7 +9641,7 @@ return {
["type"] = "explicit",
},
},
- ["1974_MinionPhysicalDamageReduction"] = {
+ ["1942_MinionPhysicalDamageReduction"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -8299,7 +9658,16 @@ return {
["type"] = "explicit",
},
},
- ["2272_SummonTotemCastSpeed"] = {
+ ["2118_PhysicalDamageTakenAsChaos"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_4129825612",
+ ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["2240_SummonTotemCastSpeed"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8316,7 +9684,7 @@ return {
["type"] = "explicit",
},
},
- ["2288_CurseEffectiveness"] = {
+ ["2256_CurseEffectiveness"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -8325,7 +9693,7 @@ return {
["type"] = "explicit",
},
},
- ["2288_CurseEffectivenessForJewel"] = {
+ ["2256_CurseEffectivenessForJewel"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -8342,7 +9710,7 @@ return {
["type"] = "explicit",
},
},
- ["2290_MarkEffect"] = {
+ ["2258_MarkEffect"] = {
["AnyJewel"] = {
["max"] = 8,
["min"] = 4,
@@ -8359,7 +9727,7 @@ return {
["type"] = "explicit",
},
},
- ["2384_DamageRemovedFromManaBeforeLife"] = {
+ ["2352_DamageRemovedFromManaBeforeLife"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -8376,7 +9744,7 @@ return {
["type"] = "explicit",
},
},
- ["2498_AuraEffectForJewel"] = {
+ ["2462_AuraEffectForJewel"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -8393,7 +9761,25 @@ return {
["type"] = "explicit",
},
},
- ["2585_MinionElementalResistance"] = {
+ ["2462_EssenceAuraEffect"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_315791320",
+ ["text"] = "Aura Skills have #% increased Magnitudes",
+ ["type"] = "explicit",
+ },
+ },
+ ["2475_AllDefences"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1389153006",
+ ["text"] = "#% increased Global Defences",
+ ["type"] = "explicit",
+ },
+ },
+ ["2547_MinionElementalResistance"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8411,7 +9797,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["2586_MinionChaosResistance"] = {
+ ["2548_MinionChaosResistance"] = {
["AnyJewel"] = {
["max"] = 13,
["min"] = 7,
@@ -8429,7 +9815,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["2643_FireResistancePenetration"] = {
+ ["2602_FireResistancePenetration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8446,7 +9832,7 @@ return {
["type"] = "explicit",
},
},
- ["2644_ColdResistancePenetration"] = {
+ ["2603_ColdResistancePenetration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8463,7 +9849,7 @@ return {
["type"] = "explicit",
},
},
- ["2645_LightningResistancePenetration"] = {
+ ["2604_LightningResistancePenetration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8480,13 +9866,13 @@ return {
["type"] = "explicit",
},
},
- ["2683_MinionAreaOfEffect"] = {
+ ["2638_MinionAreaOfEffect"] = {
["AnyJewel"] = {
- ["max"] = 10,
+ ["max"] = 8,
["min"] = 5,
},
["BaseJewel"] = {
- ["max"] = 10,
+ ["max"] = 8,
["min"] = 5,
},
["specialCaseData"] = {
@@ -8497,7 +9883,7 @@ return {
["type"] = "explicit",
},
},
- ["2820_PoisonDuration"] = {
+ ["2775_PoisonDuration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8514,7 +9900,7 @@ return {
["type"] = "explicit",
},
},
- ["2820_PoisonDurationChaosDamage"] = {
+ ["2775_PoisonDurationChaosDamage"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -8523,7 +9909,7 @@ return {
["type"] = "explicit",
},
},
- ["2823_BaseChanceToPoison"] = {
+ ["2778_BaseChanceToPoison"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8540,7 +9926,7 @@ return {
["type"] = "explicit",
},
},
- ["2855_DamageVsRareOrUnique"] = {
+ ["2810_DamageVsRareOrUnique"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8557,7 +9943,7 @@ return {
["type"] = "explicit",
},
},
- ["2914_IncreasedStunThreshold"] = {
+ ["2867_IncreasedStunThreshold"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -8574,7 +9960,7 @@ return {
["type"] = "explicit",
},
},
- ["2915_FreezeThreshold"] = {
+ ["2868_FreezeThreshold"] = {
["AnyJewel"] = {
["max"] = 32,
["min"] = 18,
@@ -8591,7 +9977,7 @@ return {
["type"] = "explicit",
},
},
- ["2920_WarcrySpeed"] = {
+ ["2873_WarcrySpeed"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8608,7 +9994,7 @@ return {
["type"] = "explicit",
},
},
- ["2967_WarcryCooldownSpeed"] = {
+ ["2918_WarcryCooldownSpeed"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8625,7 +10011,7 @@ return {
["type"] = "explicit",
},
},
- ["3005_CannotBePoisoned"] = {
+ ["2956_CannotBePoisoned"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -8634,7 +10020,7 @@ return {
["type"] = "explicit",
},
},
- ["3850_DamageIfConsumedCorpse"] = {
+ ["3791_DamageIfConsumedCorpse"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8651,7 +10037,7 @@ return {
["type"] = "explicit",
},
},
- ["3897_CrossbowDamage"] = {
+ ["3838_CrossbowDamage"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -8668,7 +10054,7 @@ return {
["type"] = "explicit",
},
},
- ["3901_CrossbowSpeed"] = {
+ ["3842_CrossbowSpeed"] = {
["AnyJewel"] = {
["max"] = 4,
["min"] = 2,
@@ -8685,7 +10071,7 @@ return {
["type"] = "explicit",
},
},
- ["4155_AilmentChance"] = {
+ ["4119_AilmentChance"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8702,7 +10088,7 @@ return {
["type"] = "explicit",
},
},
- ["4156_AilmentEffect"] = {
+ ["4123_AilmentEffect"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8719,7 +10105,7 @@ return {
["type"] = "explicit",
},
},
- ["4161_AilmentThresholdfromEnergyShield"] = {
+ ["4129_AilmentThresholdfromEnergyShield"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8736,7 +10122,7 @@ return {
["type"] = "explicit",
},
},
- ["4162_IncreasedAilmentThreshold"] = {
+ ["4130_IncreasedAilmentThreshold"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8753,7 +10139,7 @@ return {
["type"] = "explicit",
},
},
- ["4275_ArmourBreak"] = {
+ ["4259_ArmourBreak"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8770,7 +10156,7 @@ return {
["type"] = "explicit",
},
},
- ["4278_ArmourBreakDuration"] = {
+ ["4261_ArmourBreakDuration"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -8782,12 +10168,12 @@ return {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2215233444",
+ ["id"] = "explicit.stat_2637470878",
["text"] = "#% increased Armour Break Duration",
["type"] = "explicit",
},
},
- ["4428_AttacksBlindOnHitChance"] = {
+ ["4422_AttacksBlindOnHitChance"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -8838,23 +10224,6 @@ return {
["type"] = "explicit",
},
},
- ["4469_BannerValourGained"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1050359418",
- ["text"] = "#% increased Valour gained",
- ["type"] = "explicit",
- },
- },
["4491_BleedDuration"] = {
["AnyJewel"] = {
["max"] = 10,
@@ -8872,7 +10241,7 @@ return {
["type"] = "explicit",
},
},
- ["4498_BaseChanceToBleed"] = {
+ ["4500_BaseChanceToBleed"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -8889,7 +10258,7 @@ return {
["type"] = "explicit",
},
},
- ["4504_GlobalCooldownRecovery"] = {
+ ["4507_GlobalCooldownRecovery"] = {
["AnyJewel"] = {
["max"] = 5,
["min"] = 3,
@@ -8906,7 +10275,16 @@ return {
["type"] = "explicit",
},
},
- ["4545_LifeCost"] = {
+ ["4547_ManaCostEfficiency"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_4101445926",
+ ["text"] = "#% increased Mana Cost Efficiency",
+ ["type"] = "explicit",
+ },
+ },
+ ["4569_LifeCost"] = {
["AnyJewel"] = {
["max"] = 6,
["min"] = 4,
@@ -8923,7 +10301,7 @@ return {
["type"] = "explicit",
},
},
- ["4548_SlowPotency"] = {
+ ["4572_SlowPotency"] = {
["AnyJewel"] = {
["max"] = -5,
["min"] = -10,
@@ -8941,7 +10319,7 @@ return {
["type"] = "explicit",
},
},
- ["4598_BleedDotMultiplier"] = {
+ ["4626_BleedDotMultiplier"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -8958,7 +10336,7 @@ return {
["type"] = "explicit",
},
},
- ["4715_BlindEffect"] = {
+ ["4745_BlindEffect"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -8975,7 +10353,7 @@ return {
["type"] = "explicit",
},
},
- ["5064_ForkingProjectiles"] = {
+ ["5092_ForkingProjectiles"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 10,
@@ -8992,7 +10370,7 @@ return {
["type"] = "explicit",
},
},
- ["5146_BeltIncreasedCharmChargesGained"] = {
+ ["5177_BeltIncreasedCharmChargesGained"] = {
["Belt"] = {
["max"] = 40,
["min"] = 5,
@@ -9005,7 +10383,7 @@ return {
["type"] = "explicit",
},
},
- ["5146_CharmChargesGained"] = {
+ ["5177_CharmChargesGained"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -9022,7 +10400,7 @@ return {
["type"] = "explicit",
},
},
- ["5148_BeltReducedCharmChargesUsed"] = {
+ ["5179_BeltReducedCharmChargesUsed"] = {
["Belt"] = {
["max"] = 25,
["min"] = 8,
@@ -9035,7 +10413,16 @@ return {
["type"] = "explicit",
},
},
- ["5252_CompanionDamage"] = {
+ ["5256_EssenceColdRecoupLife"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3679418014",
+ ["text"] = "#% of Cold Damage taken Recouped as Life",
+ ["type"] = "explicit",
+ },
+ },
+ ["5287_CompanionDamage"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9052,7 +10439,7 @@ return {
["type"] = "explicit",
},
},
- ["5254_CompanionLife"] = {
+ ["5289_CompanionLife"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9069,7 +10456,7 @@ return {
["type"] = "explicit",
},
},
- ["5327_CriticalAilmentEffect"] = {
+ ["5366_CriticalAilmentEffect"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9086,7 +10473,7 @@ return {
["type"] = "explicit",
},
},
- ["5425_CurseDelay"] = {
+ ["5469_CurseDelay"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -9103,7 +10490,7 @@ return {
["type"] = "explicit",
},
},
- ["5445_DamagevsArmourBrokenEnemies"] = {
+ ["5492_DamagevsArmourBrokenEnemies"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -9120,7 +10507,7 @@ return {
["type"] = "explicit",
},
},
- ["5511_CharmDamageWhileUsing"] = {
+ ["5562_CharmDamageWhileUsing"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9137,7 +10524,7 @@ return {
["type"] = "explicit",
},
},
- ["5516_HeraldDamage"] = {
+ ["5567_HeraldDamage"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -9154,7 +10541,7 @@ return {
["type"] = "explicit",
},
},
- ["5550_DamagingAilmentDuration"] = {
+ ["5603_DamagingAilmentDuration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -9171,7 +10558,7 @@ return {
["type"] = "explicit",
},
},
- ["5552_FasterAilmentDamageForJewel"] = {
+ ["5606_FasterAilmentDamageForJewel"] = {
["AnyJewel"] = {
["max"] = 7,
["min"] = 3,
@@ -9188,24 +10575,7 @@ return {
["type"] = "explicit",
},
},
- ["5560_DazeBuildup"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1949833742",
- ["text"] = "#% increased Daze Buildup",
- ["type"] = "explicit",
- },
- },
- ["5583_DebuffTimePassed"] = {
+ ["5638_DebuffTimePassed"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -9222,7 +10592,7 @@ return {
["type"] = "explicit",
},
},
- ["5778_ExertedAttackDamage"] = {
+ ["5844_ExertedAttackDamage"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9239,7 +10609,7 @@ return {
["type"] = "explicit",
},
},
- ["5847_EnergyGeneration"] = {
+ ["5919_EnergyGeneration"] = {
["AnyJewel"] = {
["max"] = 8,
["min"] = 4,
@@ -9256,7 +10626,7 @@ return {
["type"] = "explicit",
},
},
- ["5857_FocusEnergyShield"] = {
+ ["5931_FocusEnergyShield"] = {
["AnyJewel"] = {
["max"] = 50,
["min"] = 30,
@@ -9273,7 +10643,46 @@ return {
["type"] = "explicit",
},
},
- ["6050_BeltIncreasedFlaskChargesGained"] = {
+ ["5974_AbyssTargetMod"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_335885735",
+ ["text"] = "Bears the Mark of the Abyssal Lord",
+ ["type"] = "explicit",
+ },
+ },
+ ["6075_EssenceFireRecoupLife"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1742651309",
+ ["text"] = "#% of Fire Damage taken Recouped as Life",
+ ["type"] = "explicit",
+ },
+ },
+ ["607_FlaskGainChargePerMinute"] = {
+ ["Charm"] = {
+ ["max"] = 0.25,
+ ["min"] = 0.15,
+ },
+ ["LifeFlask"] = {
+ ["max"] = 0.25,
+ ["min"] = 0.15,
+ },
+ ["ManaFlask"] = {
+ ["max"] = 0.25,
+ ["min"] = 0.15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1873752457",
+ ["text"] = "Gains # Charges per Second",
+ ["type"] = "explicit",
+ },
+ },
+ ["6141_BeltIncreasedFlaskChargesGained"] = {
["Belt"] = {
["max"] = 40,
["min"] = 5,
@@ -9286,7 +10695,7 @@ return {
["type"] = "explicit",
},
},
- ["6050_IncreasedFlaskChargesGained"] = {
+ ["6141_IncreasedFlaskChargesGained"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -9303,7 +10712,7 @@ return {
["type"] = "explicit",
},
},
- ["6240_RageOnHit"] = {
+ ["6339_RageOnHit"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -9320,7 +10729,7 @@ return {
["type"] = "explicit",
},
},
- ["6242_GainRageWhenHit"] = {
+ ["6341_GainRageWhenHit"] = {
["AnyJewel"] = {
["max"] = 3,
["min"] = 1,
@@ -9337,24 +10746,33 @@ return {
["type"] = "explicit",
},
},
- ["6336_HazardDamage"] = {
+ ["6382_BannerValourGained"] = {
["AnyJewel"] = {
["max"] = 20,
- ["min"] = 10,
+ ["min"] = 15,
},
["BaseJewel"] = {
["max"] = 20,
- ["min"] = 10,
+ ["min"] = 15,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_1697951953",
- ["text"] = "#% increased Hazard Damage",
+ ["id"] = "explicit.stat_1869147066",
+ ["text"] = "#% increased Glory generation for Banner Skills",
+ ["type"] = "explicit",
+ },
+ },
+ ["6384_EssenceGoldDropped"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3175163625",
+ ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies",
["type"] = "explicit",
},
},
- ["6540_PinBuildup"] = {
+ ["6444_HazardDamage"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9366,29 +10784,29 @@ return {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_3473929743",
- ["text"] = "#% increased Pin Buildup",
+ ["id"] = "explicit.stat_1697951953",
+ ["text"] = "#% increased Hazard Damage",
["type"] = "explicit",
},
},
- ["6596_IgniteEffect"] = {
+ ["6657_PinBuildup"] = {
["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
+ ["max"] = 20,
+ ["min"] = 10,
},
["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
+ ["max"] = 20,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_3791899485",
- ["text"] = "#% increased Magnitude of Ignite you inflict",
+ ["id"] = "explicit.stat_3473929743",
+ ["text"] = "#% increased Pin Buildup",
["type"] = "explicit",
},
},
- ["6598_ElementalAilmentDuration"] = {
+ ["6717_ElementalAilmentDuration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -9405,7 +10823,7 @@ return {
["type"] = "explicit",
},
},
- ["6734_LifeFlaskChargePercentGeneration"] = {
+ ["6865_LifeFlaskChargePercentGeneration"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9422,28 +10840,25 @@ return {
["type"] = "explicit",
},
},
- ["6985_FlaskGainChargePerMinute"] = {
- ["Charm"] = {
- ["max"] = 0.25,
- ["min"] = 0.15,
- },
- ["LifeFlask"] = {
- ["max"] = 0.25,
- ["min"] = 0.15,
+ ["6972_EssenceLightningRecoupLife"] = {
+ ["specialCaseData"] = {
},
- ["ManaFlask"] = {
- ["max"] = 0.25,
- ["min"] = 0.15,
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2970621759",
+ ["text"] = "#% of Lightning Damage taken Recouped as Life",
+ ["type"] = "explicit",
},
+ },
+ ["7064_EssenceOnslaughtonKill"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_1873752457",
- ["text"] = "Gains # Charges per Second",
+ ["id"] = "explicit.stat_1881230714",
+ ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon",
["type"] = "explicit",
},
},
- ["6987_CorruptForTwoEnchantments"] = {
+ ["7127_CorruptForTwoEnchantments"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -9452,16 +10867,16 @@ return {
["type"] = "explicit",
},
},
- ["7073_LocalRuneAndSoulCoreEffect"] = {
+ ["7241_LocalSocketItemsEffect"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2748623647",
+ ["id"] = "explicit.stat_2081918629",
["text"] = "#% increased effect of Socketed Items",
["type"] = "explicit",
},
},
- ["7183_MaceStun"] = {
+ ["7348_MaceStun"] = {
["AnyJewel"] = {
["max"] = 25,
["min"] = 15,
@@ -9478,7 +10893,7 @@ return {
["type"] = "explicit",
},
},
- ["7212_ManaFlaskChargePercentGeneration"] = {
+ ["7380_ManaFlaskChargePercentGeneration"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -9495,7 +10910,7 @@ return {
["type"] = "explicit",
},
},
- ["7977_MarkDuration"] = {
+ ["8158_MarkDuration"] = {
["AnyJewel"] = {
["max"] = 32,
["min"] = 18,
@@ -9512,101 +10927,7 @@ return {
["type"] = "explicit",
},
},
- ["8046_MeleeDamageIfProjectileHitRecently"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3028809864",
- ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds",
- ["type"] = "explicit",
- },
- },
- ["8126_MinionAccuracyRatingForJewel"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1718147982",
- ["text"] = "#% increased Minion Accuracy Rating",
- ["type"] = "explicit",
- },
- },
- ["8131_MinionAttackSpeedAndCastSpeed"] = {
- ["AnyJewel"] = {
- ["max"] = 4,
- ["min"] = 2,
- },
- ["BaseJewel"] = {
- ["max"] = 4,
- ["min"] = 2,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3091578504",
- ["text"] = "Minions have #% increased Attack and Cast Speed",
- ["type"] = "explicit",
- },
- },
- ["8149_MinionCriticalStrikeChanceIncrease"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_491450213",
- ["text"] = "Minions have #% increased Critical Hit Chance",
- ["type"] = "explicit",
- },
- },
- ["8151_MinionCriticalStrikeMultiplier"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1854213750",
- ["text"] = "Minions have #% increased Critical Damage Bonus",
- ["type"] = "explicit",
- },
- },
- ["8197_MinionReviveSpeed"] = {
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_2639966148",
- ["text"] = "Minions Revive #% faster",
- ["type"] = "explicit",
- },
- },
- ["823_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = {
+ ["819_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = {
["1HMace"] = {
["max"] = 79,
["min"] = 15,
@@ -9651,7 +10972,7 @@ return {
["type"] = "explicit",
},
},
- ["823_LocalPhysicalDamagePercent"] = {
+ ["819_LocalPhysicalDamagePercent"] = {
["1HMace"] = {
["max"] = 179,
["min"] = 40,
@@ -9696,7 +11017,7 @@ return {
["type"] = "explicit",
},
},
- ["824_LocalPhysicalDamage"] = {
+ ["820_LocalPhysicalDamage"] = {
["1HMace"] = {
["max"] = 52.5,
["min"] = 2.5,
@@ -9741,41 +11062,41 @@ return {
["type"] = "explicit",
},
},
- ["825_LocalFireDamage"] = {
+ ["821_LocalFireDamage"] = {
["1HMace"] = {
- ["max"] = 98.5,
+ ["max"] = 127.5,
["min"] = 2,
},
["1HWeapon"] = {
- ["max"] = 98.5,
+ ["max"] = 127.5,
["min"] = 2,
},
["2HMace"] = {
- ["max"] = 140.5,
+ ["max"] = 196,
["min"] = 3.5,
},
["2HWeapon"] = {
- ["max"] = 140.5,
+ ["max"] = 196,
["min"] = 2,
},
["Bow"] = {
- ["max"] = 98.5,
+ ["max"] = 127.5,
["min"] = 2,
},
["Crossbow"] = {
- ["max"] = 140.5,
+ ["max"] = 196,
["min"] = 3.5,
},
["Flail"] = {
- ["max"] = 98.5,
+ ["max"] = 127.5,
["min"] = 2,
},
["Quarterstaff"] = {
- ["max"] = 140.5,
+ ["max"] = 196,
["min"] = 3.5,
},
["Spear"] = {
- ["max"] = 98.5,
+ ["max"] = 127.5,
["min"] = 2,
},
["specialCaseData"] = {
@@ -9786,41 +11107,41 @@ return {
["type"] = "explicit",
},
},
- ["826_LocalColdDamage"] = {
+ ["822_LocalColdDamage"] = {
["1HMace"] = {
- ["max"] = 79,
+ ["max"] = 102,
["min"] = 2,
},
["1HWeapon"] = {
- ["max"] = 79,
+ ["max"] = 102,
["min"] = 2,
},
["2HMace"] = {
- ["max"] = 112,
+ ["max"] = 156.5,
["min"] = 3,
},
["2HWeapon"] = {
- ["max"] = 112,
+ ["max"] = 156.5,
["min"] = 2,
},
["Bow"] = {
- ["max"] = 79,
+ ["max"] = 102,
["min"] = 2,
},
["Crossbow"] = {
- ["max"] = 112,
+ ["max"] = 156.5,
["min"] = 3,
},
["Flail"] = {
- ["max"] = 79,
+ ["max"] = 102,
["min"] = 2,
},
["Quarterstaff"] = {
- ["max"] = 112,
+ ["max"] = 156.5,
["min"] = 3,
},
["Spear"] = {
- ["max"] = 79,
+ ["max"] = 102,
["min"] = 2,
},
["specialCaseData"] = {
@@ -9831,41 +11152,58 @@ return {
["type"] = "explicit",
},
},
- ["827_LocalLightningDamage"] = {
+ ["8239_MeleeDamageIfProjectileHitRecently"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3028809864",
+ ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds",
+ ["type"] = "explicit",
+ },
+ },
+ ["823_LocalLightningDamage"] = {
["1HMace"] = {
- ["max"] = 95,
+ ["max"] = 123,
["min"] = 2.5,
},
["1HWeapon"] = {
- ["max"] = 95,
+ ["max"] = 123,
["min"] = 2.5,
},
["2HMace"] = {
- ["max"] = 135,
+ ["max"] = 188.5,
["min"] = 4,
},
["2HWeapon"] = {
- ["max"] = 135,
+ ["max"] = 188.5,
["min"] = 2.5,
},
["Bow"] = {
- ["max"] = 95,
+ ["max"] = 123,
["min"] = 2.5,
},
["Crossbow"] = {
- ["max"] = 135,
+ ["max"] = 188.5,
["min"] = 4,
},
["Flail"] = {
- ["max"] = 95,
+ ["max"] = 123,
["min"] = 2.5,
},
["Quarterstaff"] = {
- ["max"] = 135,
+ ["max"] = 188.5,
["min"] = 4,
},
["Spear"] = {
- ["max"] = 95,
+ ["max"] = 123,
["min"] = 2.5,
},
["specialCaseData"] = {
@@ -9876,7 +11214,7 @@ return {
["type"] = "explicit",
},
},
- ["828_LocalAccuracyRating"] = {
+ ["824_LocalAccuracyRating"] = {
["1HMace"] = {
["max"] = 550,
["min"] = 11,
@@ -9922,7 +11260,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["828_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = {
+ ["824_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = {
["1HMace"] = {
["max"] = 200,
["min"] = 16,
@@ -9968,7 +11306,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["828_LocalLightRadiusAndAccuracy"] = {
+ ["824_LocalLightRadiusAndAccuracy"] = {
["1HMace"] = {
["max"] = 60,
["min"] = 10,
@@ -10014,7 +11352,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["829_MovementVelocity"] = {
+ ["825_MovementVelocity"] = {
["AnyJewel"] = {
["max"] = 2,
["min"] = 1,
@@ -10035,10 +11373,10 @@ return {
["type"] = "explicit",
},
},
- ["832_LocalIncreasedBlockPercentage"] = {
+ ["828_LocalIncreasedBlockPercentage"] = {
["Shield"] = {
- ["max"] = 81,
- ["min"] = 40,
+ ["max"] = 30,
+ ["min"] = 15,
},
["specialCaseData"] = {
},
@@ -10048,7 +11386,7 @@ return {
["type"] = "explicit",
},
},
- ["834_LocalBaseArmourAndEnergyShield"] = {
+ ["829_LocalBaseArmourAndEnergyShield"] = {
["Boots"] = {
["max"] = 65,
["min"] = 8,
@@ -10078,7 +11416,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["834_LocalBaseArmourAndEvasionRating"] = {
+ ["829_LocalBaseArmourAndEvasionRating"] = {
["Boots"] = {
["max"] = 65,
["min"] = 8,
@@ -10108,7 +11446,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["834_LocalIncreasedArmourAndBase"] = {
+ ["829_LocalIncreasedArmourAndBase"] = {
["Chest"] = {
["max"] = 86,
["min"] = 7,
@@ -10122,7 +11460,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["834_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
+ ["829_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 43,
["min"] = 4,
@@ -10136,7 +11474,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["834_LocalIncreasedArmourAndEvasionAndBase"] = {
+ ["829_LocalIncreasedArmourAndEvasionAndBase"] = {
["Chest"] = {
["max"] = 43,
["min"] = 4,
@@ -10150,7 +11488,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["834_LocalPhysicalDamageReductionRating"] = {
+ ["829_LocalPhysicalDamageReductionRating"] = {
["Boots"] = {
["max"] = 160,
["min"] = 16,
@@ -10180,7 +11518,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalBaseArmourAndEvasionRating"] = {
+ ["830_LocalBaseArmourAndEvasionRating"] = {
["Boots"] = {
["max"] = 57,
["min"] = 6,
@@ -10210,7 +11548,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalBaseEvasionRatingAndEnergyShield"] = {
+ ["830_LocalBaseEvasionRatingAndEnergyShield"] = {
["Boots"] = {
["max"] = 57,
["min"] = 6,
@@ -10236,7 +11574,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalEvasionRating"] = {
+ ["830_LocalEvasionRating"] = {
["Boots"] = {
["max"] = 142,
["min"] = 11,
@@ -10266,7 +11604,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalIncreasedArmourAndEvasionAndBase"] = {
+ ["830_LocalIncreasedArmourAndEvasionAndBase"] = {
["Chest"] = {
["max"] = 39,
["min"] = 3,
@@ -10280,7 +11618,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalIncreasedEvasionAndBase"] = {
+ ["830_LocalIncreasedEvasionAndBase"] = {
["Chest"] = {
["max"] = 79,
["min"] = 5,
@@ -10294,7 +11632,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["835_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
+ ["830_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 39,
["min"] = 3,
@@ -10308,7 +11646,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalBaseArmourAndEnergyShield"] = {
+ ["831_LocalBaseArmourAndEnergyShield"] = {
["Boots"] = {
["max"] = 25,
["min"] = 5,
@@ -10338,7 +11676,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalBaseEvasionRatingAndEnergyShield"] = {
+ ["831_LocalBaseEvasionRatingAndEnergyShield"] = {
["Boots"] = {
["max"] = 25,
["min"] = 5,
@@ -10364,7 +11702,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalEnergyShield"] = {
+ ["831_LocalEnergyShield"] = {
["Boots"] = {
["max"] = 60,
["min"] = 10,
@@ -10394,7 +11732,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
+ ["831_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 15,
["min"] = 2,
@@ -10408,7 +11746,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalIncreasedEnergyShieldAndBase"] = {
+ ["831_LocalIncreasedEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 30,
["min"] = 4,
@@ -10422,7 +11760,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["836_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
+ ["831_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 15,
["min"] = 2,
@@ -10436,7 +11774,33 @@ return {
},
["usePositiveSign"] = true,
},
- ["837_LocalArmourAndStunThreshold"] = {
+ ["8321_MinionAccuracyRatingForJewel"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1718147982",
+ ["text"] = "#% increased Minion Accuracy Rating",
+ ["type"] = "explicit",
+ },
+ },
+ ["8328_MinionAttackSpeedAndCastSpeed"] = {
+ ["AnyJewel"] = {
+ ["max"] = 4,
+ ["min"] = 2,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 4,
+ ["min"] = 2,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3091578504",
+ ["text"] = "Minions have #% increased Attack and Cast Speed",
+ ["type"] = "explicit",
+ },
+ },
+ ["832_LocalArmourAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10453,7 +11817,7 @@ return {
["type"] = "explicit",
},
},
- ["837_LocalIncreasedArmourAndBase"] = {
+ ["832_LocalIncreasedArmourAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10466,7 +11830,7 @@ return {
["type"] = "explicit",
},
},
- ["837_LocalIncreasedArmourAndLife"] = {
+ ["832_LocalIncreasedArmourAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10487,7 +11851,7 @@ return {
["type"] = "explicit",
},
},
- ["837_LocalIncreasedArmourAndMana"] = {
+ ["832_LocalIncreasedArmourAndMana"] = {
["Helmet"] = {
["max"] = 42,
["min"] = 6,
@@ -10500,7 +11864,7 @@ return {
["type"] = "explicit",
},
},
- ["837_LocalPhysicalDamageReductionRatingPercent"] = {
+ ["832_LocalPhysicalDamageReductionRatingPercent"] = {
["Boots"] = {
["max"] = 100,
["min"] = 15,
@@ -10529,7 +11893,7 @@ return {
["type"] = "explicit",
},
},
- ["838_LocalEvasionAndStunThreshold"] = {
+ ["833_LocalEvasionAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10546,7 +11910,7 @@ return {
["type"] = "explicit",
},
},
- ["838_LocalEvasionRatingIncreasePercent"] = {
+ ["833_LocalEvasionRatingIncreasePercent"] = {
["Boots"] = {
["max"] = 100,
["min"] = 15,
@@ -10575,7 +11939,7 @@ return {
["type"] = "explicit",
},
},
- ["838_LocalIncreasedEvasionAndBase"] = {
+ ["833_LocalIncreasedEvasionAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10588,7 +11952,7 @@ return {
["type"] = "explicit",
},
},
- ["838_LocalIncreasedEvasionAndLife"] = {
+ ["833_LocalIncreasedEvasionAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10609,7 +11973,7 @@ return {
["type"] = "explicit",
},
},
- ["838_LocalIncreasedEvasionAndMana"] = {
+ ["833_LocalIncreasedEvasionAndMana"] = {
["Helmet"] = {
["max"] = 42,
["min"] = 6,
@@ -10622,7 +11986,7 @@ return {
["type"] = "explicit",
},
},
- ["839_LocalEnergyShieldAndStunThreshold"] = {
+ ["834_LocalEnergyShieldAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10635,7 +11999,7 @@ return {
["type"] = "explicit",
},
},
- ["839_LocalEnergyShieldPercent"] = {
+ ["834_LocalEnergyShieldPercent"] = {
["Boots"] = {
["max"] = 100,
["min"] = 15,
@@ -10668,7 +12032,7 @@ return {
["type"] = "explicit",
},
},
- ["839_LocalIncreasedEnergyShieldAndBase"] = {
+ ["834_LocalIncreasedEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10681,7 +12045,7 @@ return {
["type"] = "explicit",
},
},
- ["839_LocalIncreasedEnergyShieldAndLife"] = {
+ ["834_LocalIncreasedEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10702,7 +12066,7 @@ return {
["type"] = "explicit",
},
},
- ["839_LocalIncreasedEnergyShieldAndMana"] = {
+ ["834_LocalIncreasedEnergyShieldAndMana"] = {
["Focus"] = {
["max"] = 42,
["min"] = 6,
@@ -10719,36 +12083,70 @@ return {
["type"] = "explicit",
},
},
- ["840_LocalArmourAndEvasion"] = {
- ["Boots"] = {
- ["max"] = 100,
- ["min"] = 15,
- },
- ["Chest"] = {
- ["max"] = 110,
- ["min"] = 15,
- },
- ["Gloves"] = {
- ["max"] = 100,
- ["min"] = 15,
- },
- ["Helmet"] = {
- ["max"] = 100,
- ["min"] = 15,
+ ["8350_MinionCriticalStrikeChanceIncrease"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
},
- ["Shield"] = {
- ["max"] = 110,
- ["min"] = 15,
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2451402625",
- ["text"] = "#% increased Armour and Evasion",
+ ["id"] = "explicit.stat_491450213",
+ ["text"] = "Minions have #% increased Critical Hit Chance",
["type"] = "explicit",
},
},
- ["840_LocalArmourAndEvasionAndStunThreshold"] = {
+ ["8352_MinionCriticalStrikeMultiplier"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1854213750",
+ ["text"] = "Minions have #% increased Critical Damage Bonus",
+ ["type"] = "explicit",
+ },
+ },
+ ["835_LocalArmourAndEvasion"] = {
+ ["Boots"] = {
+ ["max"] = 100,
+ ["min"] = 15,
+ },
+ ["Chest"] = {
+ ["max"] = 110,
+ ["min"] = 15,
+ },
+ ["Gloves"] = {
+ ["max"] = 100,
+ ["min"] = 15,
+ },
+ ["Helmet"] = {
+ ["max"] = 100,
+ ["min"] = 15,
+ },
+ ["Shield"] = {
+ ["max"] = 110,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2451402625",
+ ["text"] = "#% increased Armour and Evasion",
+ ["type"] = "explicit",
+ },
+ },
+ ["835_LocalArmourAndEvasionAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10765,7 +12163,7 @@ return {
["type"] = "explicit",
},
},
- ["840_LocalIncreasedArmourAndEvasionAndBase"] = {
+ ["835_LocalIncreasedArmourAndEvasionAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10778,7 +12176,7 @@ return {
["type"] = "explicit",
},
},
- ["840_LocalIncreasedArmourAndEvasionAndLife"] = {
+ ["835_LocalIncreasedArmourAndEvasionAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10799,7 +12197,7 @@ return {
["type"] = "explicit",
},
},
- ["840_LocalIncreasedArmourAndEvasionAndMana"] = {
+ ["835_LocalIncreasedArmourAndEvasionAndMana"] = {
["Helmet"] = {
["max"] = 42,
["min"] = 6,
@@ -10812,41 +12210,7 @@ return {
["type"] = "explicit",
},
},
- ["8411_OfferingDuration"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_2957407601",
- ["text"] = "Offering Skills have #% increased Duration",
- ["type"] = "explicit",
- },
- },
- ["8412_OfferingLife"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3787460122",
- ["text"] = "Offerings have #% increased Maximum Life",
- ["type"] = "explicit",
- },
- },
- ["841_LocalArmourAndEnergyShield"] = {
+ ["836_LocalArmourAndEnergyShield"] = {
["Boots"] = {
["max"] = 100,
["min"] = 15,
@@ -10875,7 +12239,7 @@ return {
["type"] = "explicit",
},
},
- ["841_LocalArmourAndEnergyShieldAndStunThreshold"] = {
+ ["836_LocalArmourAndEnergyShieldAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10892,7 +12256,7 @@ return {
["type"] = "explicit",
},
},
- ["841_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
+ ["836_LocalIncreasedArmourAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10905,7 +12269,7 @@ return {
["type"] = "explicit",
},
},
- ["841_LocalIncreasedArmourAndEnergyShieldAndLife"] = {
+ ["836_LocalIncreasedArmourAndEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10926,7 +12290,7 @@ return {
["type"] = "explicit",
},
},
- ["841_LocalIncreasedArmourAndEnergyShieldAndMana"] = {
+ ["836_LocalIncreasedArmourAndEnergyShieldAndMana"] = {
["Helmet"] = {
["max"] = 42,
["min"] = 6,
@@ -10939,7 +12303,7 @@ return {
["type"] = "explicit",
},
},
- ["842_LocalEvasionAndEnergyShield"] = {
+ ["837_LocalEvasionAndEnergyShield"] = {
["Boots"] = {
["max"] = 100,
["min"] = 15,
@@ -10968,7 +12332,7 @@ return {
["type"] = "explicit",
},
},
- ["842_LocalEvasionAndEnergyShieldAndStunThreshold"] = {
+ ["837_LocalEvasionAndEnergyShieldAndStunThreshold"] = {
["Boots"] = {
["max"] = 42,
["min"] = 6,
@@ -10981,7 +12345,7 @@ return {
["type"] = "explicit",
},
},
- ["842_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
+ ["837_LocalIncreasedEvasionAndEnergyShieldAndBase"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -10994,7 +12358,7 @@ return {
["type"] = "explicit",
},
},
- ["842_LocalIncreasedEvasionAndEnergyShieldAndLife"] = {
+ ["837_LocalIncreasedEvasionAndEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 42,
["min"] = 6,
@@ -11015,7 +12379,7 @@ return {
["type"] = "explicit",
},
},
- ["842_LocalIncreasedEvasionAndEnergyShieldAndMana"] = {
+ ["837_LocalIncreasedEvasionAndEnergyShieldAndMana"] = {
["Helmet"] = {
["max"] = 42,
["min"] = 6,
@@ -11028,58 +12392,7 @@ return {
["type"] = "explicit",
},
},
- ["8433_ParryDamage"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1569159338",
- ["text"] = "#% increased Parry Damage",
- ["type"] = "explicit",
- },
- },
- ["8439_ParriedDebuffDuration"] = {
- ["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3401186585",
- ["text"] = "#% increased Parried Debuff Duration",
- ["type"] = "explicit",
- },
- },
- ["8440_StunThresholdDuringParry"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1911237468",
- ["text"] = "#% increased Stun Threshold while Parrying",
- ["type"] = "explicit",
- },
- },
- ["844_LocalIncreasedSpiritAndMana"] = {
+ ["839_LocalIncreasedSpiritAndMana"] = {
["1HWeapon"] = {
["max"] = 38,
["min"] = 10,
@@ -11096,7 +12409,7 @@ return {
["type"] = "explicit",
},
},
- ["844_LocalIncreasedSpiritPercent"] = {
+ ["839_LocalIncreasedSpiritPercent"] = {
["1HWeapon"] = {
["max"] = 65,
["min"] = 27,
@@ -11113,7 +12426,16 @@ return {
["type"] = "explicit",
},
},
- ["845_PhysicalDamage"] = {
+ ["8402_MinionReviveSpeed"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2639966148",
+ ["text"] = "Minions Revive #% faster",
+ ["type"] = "explicit",
+ },
+ },
+ ["840_PhysicalDamage"] = {
["Gloves"] = {
["max"] = 25.5,
["min"] = 2,
@@ -11134,7 +12456,7 @@ return {
["type"] = "explicit",
},
},
- ["846_FireDamage"] = {
+ ["841_FireDamage"] = {
["Gloves"] = {
["max"] = 37,
["min"] = 2,
@@ -11155,7 +12477,7 @@ return {
["type"] = "explicit",
},
},
- ["847_ColdDamage"] = {
+ ["842_ColdDamage"] = {
["Gloves"] = {
["max"] = 30.5,
["min"] = 1.5,
@@ -11176,7 +12498,7 @@ return {
["type"] = "explicit",
},
},
- ["848_LightningDamage"] = {
+ ["843_LightningDamage"] = {
["Gloves"] = {
["max"] = 37.5,
["min"] = 2.5,
@@ -11197,18 +12519,18 @@ return {
["type"] = "explicit",
},
},
- ["849_DamageGainedAsFire"] = {
+ ["844_DamageGainedAsFire"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 13,
},
["2HWeapon"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Staff"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Wand"] = {
["max"] = 30,
@@ -11222,18 +12544,27 @@ return {
["type"] = "explicit",
},
},
- ["851_DamageGainedAsCold"] = {
+ ["844_DamageasExtraFire"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3015669065",
+ ["text"] = "Gain #% of Damage as Extra Fire Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["846_DamageGainedAsCold"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 13,
},
["2HWeapon"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Staff"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Wand"] = {
["max"] = 30,
@@ -11247,35 +12578,27 @@ return {
["type"] = "explicit",
},
},
- ["8536_PoisonEffect"] = {
- ["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
- },
- ["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
- },
+ ["846_DamageasExtraCold"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2487305362",
- ["text"] = "#% increased Magnitude of Poison you inflict",
+ ["id"] = "explicit.stat_2505884597",
+ ["text"] = "Gain #% of Damage as Extra Cold Damage",
["type"] = "explicit",
},
},
- ["853_DamageGainedAsLightning"] = {
+ ["848_DamageGainedAsLightning"] = {
["1HWeapon"] = {
["max"] = 30,
["min"] = 13,
},
["2HWeapon"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Staff"] = {
- ["max"] = 30,
- ["min"] = 13,
+ ["max"] = 45,
+ ["min"] = 20,
},
["Wand"] = {
["max"] = 30,
@@ -11289,7 +12612,16 @@ return {
["type"] = "explicit",
},
},
- ["855_SpellDamage"] = {
+ ["848_DamageasExtraLightning"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3278136794",
+ ["text"] = "Gain #% of Damage as Extra Lightning Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["850_SpellDamage"] = {
["Amulet"] = {
["max"] = 30,
["min"] = 3,
@@ -11302,7 +12634,7 @@ return {
["type"] = "explicit",
},
},
- ["855_WeaponSpellDamage"] = {
+ ["850_WeaponSpellDamage"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11339,7 +12671,7 @@ return {
["type"] = "explicit",
},
},
- ["855_WeaponSpellDamageAndMana"] = {
+ ["850_WeaponSpellDamageAndMana"] = {
["1HWeapon"] = {
["max"] = 49,
["min"] = 15,
@@ -11364,7 +12696,7 @@ return {
["type"] = "explicit",
},
},
- ["857_FireDamagePercentage"] = {
+ ["852_FireDamagePercentage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -11385,7 +12717,7 @@ return {
["type"] = "explicit",
},
},
- ["857_FireDamageWeaponPrefix"] = {
+ ["852_FireDamageWeaponPrefix"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11414,41 +12746,7 @@ return {
["type"] = "explicit",
},
},
- ["8581_ChainFromTerrain"] = {
- ["AnyJewel"] = {
- ["max"] = 5,
- ["min"] = 3,
- },
- ["BaseJewel"] = {
- ["max"] = 5,
- ["min"] = 3,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_4081947835",
- ["text"] = "Projectiles have #% chance to Chain an additional time from terrain",
- ["type"] = "explicit",
- },
- },
- ["8584_ProjectileDamageIfMeleeHitRecently"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3596695232",
- ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds",
- ["type"] = "explicit",
- },
- },
- ["858_ColdDamagePercentage"] = {
+ ["853_ColdDamagePercentage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -11469,7 +12767,7 @@ return {
["type"] = "explicit",
},
},
- ["858_ColdDamageWeaponPrefix"] = {
+ ["853_ColdDamageWeaponPrefix"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11498,7 +12796,7 @@ return {
["type"] = "explicit",
},
},
- ["859_LightningDamagePercentage"] = {
+ ["854_LightningDamagePercentage"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -11519,7 +12817,7 @@ return {
["type"] = "explicit",
},
},
- ["859_LightningDamageWeaponPrefix"] = {
+ ["854_LightningDamageWeaponPrefix"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11548,7 +12846,7 @@ return {
["type"] = "explicit",
},
},
- ["860_ChaosDamageWeaponPrefix"] = {
+ ["855_ChaosDamageWeaponPrefix"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11577,7 +12875,7 @@ return {
["type"] = "explicit",
},
},
- ["860_IncreasedChaosDamage"] = {
+ ["855_IncreasedChaosDamage"] = {
["AnyJewel"] = {
["max"] = 12,
["min"] = 6,
@@ -11598,7 +12896,7 @@ return {
["type"] = "explicit",
},
},
- ["860_PoisonDurationChaosDamage"] = {
+ ["855_PoisonDurationChaosDamage"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -11607,7 +12905,7 @@ return {
["type"] = "explicit",
},
},
- ["861_IncreasedWeaponElementalDamagePercent"] = {
+ ["856_IncreasedWeaponElementalDamagePercent"] = {
["1HMace"] = {
["max"] = 100,
["min"] = 19,
@@ -11652,24 +12950,7 @@ return {
["type"] = "explicit",
},
},
- ["8628_QuarterstaffFreezeBuildup"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1697447343",
- ["text"] = "#% increased Freeze Buildup with Quarterstaves",
- ["type"] = "explicit",
- },
- },
- ["862_PhysicalSpellDamageWeaponPrefix"] = {
+ ["857_PhysicalSpellDamageWeaponPrefix"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -11698,24 +12979,7 @@ return {
["type"] = "explicit",
},
},
- ["8636_QuiverModifierEffect"] = {
- ["AnyJewel"] = {
- ["max"] = 6,
- ["min"] = 4,
- },
- ["BaseJewel"] = {
- ["max"] = 6,
- ["min"] = 4,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1200678966",
- ["text"] = "#% increased bonuses gained from Equipped Quiver",
- ["type"] = "explicit",
- },
- },
- ["863_DamageWithBowSkills"] = {
+ ["858_DamageWithBowSkills"] = {
["Quiver"] = {
["max"] = 59,
["min"] = 11,
@@ -11728,28 +12992,10 @@ return {
["type"] = "explicit",
},
},
- ["8640_MaximumRage"] = {
- ["AnyJewel"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["BaseJewel"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1181501418",
- ["text"] = "# to Maximum Rage",
- ["type"] = "explicit",
- },
- ["usePositiveSign"] = true,
- },
- ["864_IncreasedAccuracy"] = {
- ["Amulet"] = {
- ["max"] = 450,
- ["min"] = 11,
+ ["859_IncreasedAccuracy"] = {
+ ["Amulet"] = {
+ ["max"] = 450,
+ ["min"] = 11,
},
["Gloves"] = {
["max"] = 550,
@@ -11776,7 +13022,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["864_LightRadiusAndAccuracy"] = {
+ ["859_LightRadiusAndAccuracy"] = {
["Helmet"] = {
["max"] = 60,
["min"] = 10,
@@ -11790,7 +13036,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["866_PhysicalDamageReductionRating"] = {
+ ["860_PhysicalDamageReductionRating"] = {
["Belt"] = {
["max"] = 255,
["min"] = 12,
@@ -11804,7 +13050,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["867_GlobalPhysicalDamageReductionRatingPercent"] = {
+ ["861_GlobalPhysicalDamageReductionRatingPercent"] = {
["Amulet"] = {
["max"] = 50,
["min"] = 10,
@@ -11825,7 +13071,7 @@ return {
["type"] = "explicit",
},
},
- ["868_EvasionRating"] = {
+ ["862_EvasionRating"] = {
["Ring"] = {
["max"] = 203,
["min"] = 8,
@@ -11839,7 +13085,24 @@ return {
},
["usePositiveSign"] = true,
},
- ["869_GlobalEvasionRatingPercent"] = {
+ ["8639_OfferingDuration"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2957407601",
+ ["text"] = "Offering Skills have #% increased Duration",
+ ["type"] = "explicit",
+ },
+ },
+ ["863_GlobalEvasionRatingPercent"] = {
["Amulet"] = {
["max"] = 50,
["min"] = 10,
@@ -11860,7 +13123,24 @@ return {
["type"] = "explicit",
},
},
- ["870_EnergyShield"] = {
+ ["8640_OfferingLife"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3787460122",
+ ["text"] = "Offerings have #% increased Maximum Life",
+ ["type"] = "explicit",
+ },
+ },
+ ["864_EnergyShield"] = {
["Amulet"] = {
["max"] = 89,
["min"] = 8,
@@ -11874,7 +13154,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["871_GlobalEnergyShieldPercent"] = {
+ ["865_GlobalEnergyShieldPercent"] = {
["Amulet"] = {
["max"] = 50,
["min"] = 10,
@@ -11895,7 +13175,24 @@ return {
["type"] = "explicit",
},
},
- ["872_IncreasedLife"] = {
+ ["8661_ParryDamage"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1569159338",
+ ["text"] = "#% increased Parry Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["866_IncreasedLife"] = {
["Amulet"] = {
["max"] = 149,
["min"] = 10,
@@ -11937,7 +13234,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedArmourAndEnergyShieldAndLife"] = {
+ ["866_LocalIncreasedArmourAndEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -11959,7 +13256,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedArmourAndEvasionAndLife"] = {
+ ["866_LocalIncreasedArmourAndEvasionAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -11981,7 +13278,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedArmourAndLife"] = {
+ ["866_LocalIncreasedArmourAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -12003,7 +13300,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedEnergyShieldAndLife"] = {
+ ["866_LocalIncreasedEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -12025,7 +13322,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedEvasionAndEnergyShieldAndLife"] = {
+ ["866_LocalIncreasedEvasionAndEnergyShieldAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -12047,7 +13344,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["872_LocalIncreasedEvasionAndLife"] = {
+ ["866_LocalIncreasedEvasionAndLife"] = {
["Chest"] = {
["max"] = 49,
["min"] = 7,
@@ -12069,37 +13366,54 @@ return {
},
["usePositiveSign"] = true,
},
- ["873_MaximumLifeIncreasePercent"] = {
- ["Amulet"] = {
- ["max"] = 8,
- ["min"] = 3,
+ ["8670_ParriedDebuffDuration"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_983749596",
- ["text"] = "#% increased maximum Life",
+ ["id"] = "explicit.stat_3401186585",
+ ["text"] = "#% increased Parried Debuff Duration",
["type"] = "explicit",
},
},
- ["8749_CrossbowReloadSpeed"] = {
+ ["8671_StunThresholdDuringParry"] = {
["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 25,
+ ["min"] = 15,
},
["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 25,
+ ["min"] = 15,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_3192728503",
- ["text"] = "#% increased Crossbow Reload Speed",
+ ["id"] = "explicit.stat_1911237468",
+ ["text"] = "#% increased Stun Threshold while Parrying",
+ ["type"] = "explicit",
+ },
+ },
+ ["867_MaximumLifeIncreasePercent"] = {
+ ["Amulet"] = {
+ ["max"] = 8,
+ ["min"] = 3,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_983749596",
+ ["text"] = "#% increased maximum Life",
["type"] = "explicit",
},
},
- ["874_IncreasedMana"] = {
+ ["868_IncreasedMana"] = {
["1HWeapon"] = {
["max"] = 164,
["min"] = 10,
@@ -12157,7 +13471,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedArmourAndEnergyShieldAndMana"] = {
+ ["868_LocalIncreasedArmourAndEnergyShieldAndMana"] = {
["Helmet"] = {
["max"] = 39,
["min"] = 6,
@@ -12171,7 +13485,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedArmourAndEvasionAndMana"] = {
+ ["868_LocalIncreasedArmourAndEvasionAndMana"] = {
["Helmet"] = {
["max"] = 39,
["min"] = 6,
@@ -12185,7 +13499,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedArmourAndMana"] = {
+ ["868_LocalIncreasedArmourAndMana"] = {
["Helmet"] = {
["max"] = 39,
["min"] = 6,
@@ -12199,7 +13513,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedEnergyShieldAndMana"] = {
+ ["868_LocalIncreasedEnergyShieldAndMana"] = {
["Focus"] = {
["max"] = 39,
["min"] = 6,
@@ -12217,7 +13531,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedEvasionAndEnergyShieldAndMana"] = {
+ ["868_LocalIncreasedEvasionAndEnergyShieldAndMana"] = {
["Helmet"] = {
["max"] = 39,
["min"] = 6,
@@ -12231,7 +13545,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedEvasionAndMana"] = {
+ ["868_LocalIncreasedEvasionAndMana"] = {
["Helmet"] = {
["max"] = 39,
["min"] = 6,
@@ -12245,7 +13559,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_LocalIncreasedSpiritAndMana"] = {
+ ["868_LocalIncreasedSpiritAndMana"] = {
["1HWeapon"] = {
["max"] = 45,
["min"] = 17,
@@ -12263,7 +13577,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_WeaponSpellDamageAndMana"] = {
+ ["868_WeaponSpellDamageAndMana"] = {
["1HWeapon"] = {
["max"] = 45,
["min"] = 17,
@@ -12289,7 +13603,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["874_WeaponTrapDamageAndMana"] = {
+ ["868_WeaponTrapDamageAndMana"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -12299,7 +13613,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["875_MaximumManaIncreasePercent"] = {
+ ["869_MaximumManaIncreasePercent"] = {
["Amulet"] = {
["max"] = 8,
["min"] = 3,
@@ -12312,7 +13626,7 @@ return {
["type"] = "explicit",
},
},
- ["877_BaseSpirit"] = {
+ ["871_BaseSpirit"] = {
["Amulet"] = {
["max"] = 50,
["min"] = 30,
@@ -12330,7 +13644,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["878_ProjectileSpeed"] = {
+ ["872_ProjectileSpeed"] = {
["AnyJewel"] = {
["max"] = 8,
["min"] = 4,
@@ -12351,7 +13665,7 @@ return {
["type"] = "explicit",
},
},
- ["879_BeltFlaskLifeRecoveryRate"] = {
+ ["873_BeltFlaskLifeRecoveryRate"] = {
["Belt"] = {
["max"] = 40,
["min"] = 5,
@@ -12364,7 +13678,7 @@ return {
["type"] = "explicit",
},
},
- ["880_BeltFlaskManaRecoveryRate"] = {
+ ["874_BeltFlaskManaRecoveryRate"] = {
["Belt"] = {
["max"] = 40,
["min"] = 5,
@@ -12377,7 +13691,7 @@ return {
["type"] = "explicit",
},
},
- ["881_BeltIncreasedCharmDuration"] = {
+ ["875_BeltIncreasedCharmDuration"] = {
["Belt"] = {
["max"] = 33,
["min"] = 4,
@@ -12390,7 +13704,7 @@ return {
["type"] = "explicit",
},
},
- ["881_CharmDuration"] = {
+ ["875_CharmDuration"] = {
["AnyJewel"] = {
["max"] = 15,
["min"] = 5,
@@ -12407,24 +13721,7 @@ return {
["type"] = "explicit",
},
},
- ["8825_ShieldArmourIncrease"] = {
- ["AnyJewel"] = {
- ["max"] = 32,
- ["min"] = 18,
- },
- ["BaseJewel"] = {
- ["max"] = 32,
- ["min"] = 18,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_145497481",
- ["text"] = "#% increased Defences from Equipped Shield",
- ["type"] = "explicit",
- },
- },
- ["882_FlaskDuration"] = {
+ ["876_FlaskDuration"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -12441,24 +13738,24 @@ return {
["type"] = "explicit",
},
},
- ["8831_ShockEffect"] = {
+ ["8780_PoisonEffect"] = {
["AnyJewel"] = {
["max"] = 15,
- ["min"] = 10,
+ ["min"] = 5,
},
["BaseJewel"] = {
["max"] = 15,
- ["min"] = 10,
+ ["min"] = 5,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2527686725",
- ["text"] = "#% increased Magnitude of Shock you inflict",
+ ["id"] = "explicit.stat_2487305362",
+ ["text"] = "#% increased Magnitude of Poison you inflict",
["type"] = "explicit",
},
},
- ["884_AlliesInPresenceAllDamage"] = {
+ ["878_AlliesInPresenceAllDamage"] = {
["1HWeapon"] = {
["max"] = 119,
["min"] = 25,
@@ -12475,7 +13772,7 @@ return {
["type"] = "explicit",
},
},
- ["885_AlliesInPresenceAddedPhysicalDamage"] = {
+ ["879_AlliesInPresenceAddedPhysicalDamage"] = {
["1HWeapon"] = {
["max"] = 25.5,
["min"] = 2,
@@ -12492,7 +13789,7 @@ return {
["type"] = "explicit",
},
},
- ["886_AlliesInPresenceAddedFireDamage"] = {
+ ["880_AlliesInPresenceAddedFireDamage"] = {
["1HWeapon"] = {
["max"] = 37,
["min"] = 2,
@@ -12509,7 +13806,7 @@ return {
["type"] = "explicit",
},
},
- ["887_AlliesInPresenceAddedColdDamage"] = {
+ ["881_AlliesInPresenceAddedColdDamage"] = {
["1HWeapon"] = {
["max"] = 30.5,
["min"] = 2,
@@ -12526,7 +13823,41 @@ return {
["type"] = "explicit",
},
},
- ["888_AlliesInPresenceAddedLightningDamage"] = {
+ ["8825_ChainFromTerrain"] = {
+ ["AnyJewel"] = {
+ ["max"] = 5,
+ ["min"] = 3,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 5,
+ ["min"] = 3,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_4081947835",
+ ["text"] = "Projectiles have #% chance to Chain an additional time from terrain",
+ ["type"] = "explicit",
+ },
+ },
+ ["8828_ProjectileDamageIfMeleeHitRecently"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3596695232",
+ ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds",
+ ["type"] = "explicit",
+ },
+ },
+ ["882_AlliesInPresenceAddedLightningDamage"] = {
["1HWeapon"] = {
["max"] = 37.5,
["min"] = 3,
@@ -12543,15 +13874,24 @@ return {
["type"] = "explicit",
},
},
- ["890_AlliesInPresenceIncreasedAccuracy"] = {
- ["1HWeapon"] = {
- ["max"] = 450,
- ["min"] = 11,
+ ["8874_QuarterstaffFreezeBuildup"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
},
- ["Sceptre"] = {
- ["max"] = 450,
- ["min"] = 11,
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1697447343",
+ ["text"] = "#% increased Freeze Buildup with Quarterstaves",
+ ["type"] = "explicit",
},
+ },
+ ["887_AlliesInPresenceIncreasedAccuracy"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -12561,7 +13901,42 @@ return {
},
["usePositiveSign"] = true,
},
- ["891_AlliesInPresenceCriticalStrikeChance"] = {
+ ["8882_QuiverModifierEffect"] = {
+ ["AnyJewel"] = {
+ ["max"] = 6,
+ ["min"] = 4,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 6,
+ ["min"] = 4,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1200678966",
+ ["text"] = "#% increased bonuses gained from Equipped Quiver",
+ ["type"] = "explicit",
+ },
+ },
+ ["8886_MaximumRage"] = {
+ ["AnyJewel"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1181501418",
+ ["text"] = "# to Maximum Rage",
+ ["type"] = "explicit",
+ },
+ ["usePositiveSign"] = true,
+ },
+ ["888_AlliesInPresenceCriticalStrikeChance"] = {
["1HWeapon"] = {
["max"] = 38,
["min"] = 10,
@@ -12578,7 +13953,7 @@ return {
["type"] = "explicit",
},
},
- ["892_AlliesInPresenceCriticalStrikeMultiplier"] = {
+ ["889_AlliesInPresenceCriticalStrikeMultiplier"] = {
["1HWeapon"] = {
["max"] = 39,
["min"] = 10,
@@ -12595,7 +13970,7 @@ return {
["type"] = "explicit",
},
},
- ["893_AlliesInPresenceIncreasedAttackSpeed"] = {
+ ["890_AlliesInPresenceIncreasedAttackSpeed"] = {
["1HWeapon"] = {
["max"] = 16,
["min"] = 5,
@@ -12612,7 +13987,7 @@ return {
["type"] = "explicit",
},
},
- ["894_AlliesInPresenceIncreasedCastSpeed"] = {
+ ["891_AlliesInPresenceIncreasedCastSpeed"] = {
["1HWeapon"] = {
["max"] = 20,
["min"] = 5,
@@ -12629,7 +14004,7 @@ return {
["type"] = "explicit",
},
},
- ["895_AlliesInPresenceAllResistances"] = {
+ ["892_AlliesInPresenceAllResistances"] = {
["1HWeapon"] = {
["max"] = 18,
["min"] = 3,
@@ -12647,7 +14022,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["896_AlliesInPresenceLifeRegeneration"] = {
+ ["893_AlliesInPresenceLifeRegeneration"] = {
["1HWeapon"] = {
["max"] = 33,
["min"] = 1,
@@ -12664,7 +14039,7 @@ return {
["type"] = "explicit",
},
},
- ["900_CharmGuardWhileActive"] = {
+ ["897_CharmGuardWhileActive"] = {
["Charm"] = {
["max"] = 500,
["min"] = 44,
@@ -12673,11 +14048,11 @@ return {
},
["tradeMod"] = {
["id"] = "explicit.stat_2676834156",
- ["text"] = "Gain # Guard during Effect",
+ ["text"] = "Also grants # Guard",
["type"] = "explicit",
},
},
- ["901_CharmGainLifeOnUse"] = {
+ ["898_CharmGainLifeOnUse"] = {
["Charm"] = {
["max"] = 350,
["min"] = 8,
@@ -12690,7 +14065,24 @@ return {
["type"] = "explicit",
},
},
- ["902_CharmGainManaOnUse"] = {
+ ["8999_CrossbowReloadSpeed"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3192728503",
+ ["text"] = "#% increased Crossbow Reload Speed",
+ ["type"] = "explicit",
+ },
+ },
+ ["899_CharmGainManaOnUse"] = {
["Charm"] = {
["max"] = 300,
["min"] = 16,
@@ -12703,7 +14095,7 @@ return {
["type"] = "explicit",
},
},
- ["904_FlaskIncreasedRecoveryOnLowMana"] = {
+ ["901_FlaskIncreasedRecoveryOnLowMana"] = {
["ManaFlask"] = {
["max"] = 100,
["min"] = 51,
@@ -12716,7 +14108,7 @@ return {
["type"] = "explicit",
},
},
- ["905_FlaskFullInstantRecovery"] = {
+ ["902_FlaskFullInstantRecovery"] = {
["LifeFlask"] = {
["max"] = -50,
["min"] = -50,
@@ -12734,7 +14126,7 @@ return {
["type"] = "explicit",
},
},
- ["905_FlaskIncreasedRecoveryAmount"] = {
+ ["902_FlaskIncreasedRecoveryAmount"] = {
["LifeFlask"] = {
["max"] = 80,
["min"] = 41,
@@ -12751,7 +14143,7 @@ return {
["type"] = "explicit",
},
},
- ["906_FlaskIncreasedRecoveryOnLowLife"] = {
+ ["903_FlaskIncreasedRecoveryOnLowLife"] = {
["LifeFlask"] = {
["max"] = 100,
["min"] = 51,
@@ -12764,37 +14156,34 @@ return {
["type"] = "explicit",
},
},
- ["908_FlaskExtraLifeCostsMana"] = {
- ["LifeFlask"] = {
- ["max"] = 100,
- ["min"] = 61,
+ ["9057_ReducedBleedDuration"] = {
+ ["Chest"] = {
+ ["max"] = -36,
+ ["min"] = -60,
},
+ ["invertOnNegative"] = true,
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_1261982764",
- ["text"] = "#% increased Life Recovered",
+ ["id"] = "explicit.stat_1692879867",
+ ["text"] = "#% increased Duration of Bleeding on You",
["type"] = "explicit",
},
},
- ["9099_StunThresholdfromEnergyShield"] = {
- ["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
- },
- ["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
+ ["905_FlaskExtraLifeCostsMana"] = {
+ ["LifeFlask"] = {
+ ["max"] = 100,
+ ["min"] = 61,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_416040624",
- ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield",
+ ["id"] = "explicit.stat_1261982764",
+ ["text"] = "#% increased Life Recovered",
["type"] = "explicit",
},
},
- ["909_FlaskExtraManaCostsLife"] = {
+ ["906_FlaskExtraManaCostsLife"] = {
["ManaFlask"] = {
["max"] = 100,
["min"] = 61,
@@ -12807,37 +14196,37 @@ return {
["type"] = "explicit",
},
},
- ["9101_IncreasedStunThresholdIfNoRecentStun"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["907_FlaskHealsMinions"] = {
+ ["LifeFlask"] = {
+ ["max"] = 80,
+ ["min"] = 51,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_1405298142",
- ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently",
+ ["id"] = "explicit.stat_2416869319",
+ ["text"] = "Grants #% of Life Recovery to Minions",
["type"] = "explicit",
},
},
- ["910_FlaskHealsMinions"] = {
- ["LifeFlask"] = {
- ["max"] = 80,
- ["min"] = 51,
+ ["9088_ShieldArmourIncrease"] = {
+ ["AnyJewel"] = {
+ ["max"] = 32,
+ ["min"] = 18,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 32,
+ ["min"] = 18,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_2416869319",
- ["text"] = "Grants #% of Life Recovery to Minions",
+ ["id"] = "explicit.stat_145497481",
+ ["text"] = "#% increased Defences from Equipped Shield",
["type"] = "explicit",
},
},
- ["911_FlaskFullInstantRecovery"] = {
+ ["908_FlaskFullInstantRecovery"] = {
["LifeFlask"] = {
["max"] = 1,
["min"] = 1,
@@ -12854,7 +14243,24 @@ return {
["type"] = "explicit",
},
},
- ["912_FlaskPartialInstantRecovery"] = {
+ ["9095_ShockEffect"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2527686725",
+ ["text"] = "#% increased Magnitude of Shock you inflict",
+ ["type"] = "explicit",
+ },
+ },
+ ["909_FlaskPartialInstantRecovery"] = {
["LifeFlask"] = {
["max"] = 30,
["min"] = 20,
@@ -12871,7 +14277,7 @@ return {
["type"] = "explicit",
},
},
- ["913_FlaskIncreasedRecoverySpeed"] = {
+ ["910_FlaskIncreasedRecoverySpeed"] = {
["LifeFlask"] = {
["max"] = 70,
["min"] = 41,
@@ -12888,7 +14294,7 @@ return {
["type"] = "explicit",
},
},
- ["914_FlaskExtraLifeCostsMana"] = {
+ ["911_FlaskExtraLifeCostsMana"] = {
["LifeFlask"] = {
["max"] = 15,
["min"] = 15,
@@ -12901,7 +14307,7 @@ return {
["type"] = "explicit",
},
},
- ["915_FlaskExtraManaCostsLife"] = {
+ ["912_FlaskExtraManaCostsLife"] = {
["ManaFlask"] = {
["max"] = 15,
["min"] = 15,
@@ -12914,7 +14320,7 @@ return {
["type"] = "explicit",
},
},
- ["916_ItemFoundRarityIncrease"] = {
+ ["913_ItemFoundRarityIncrease"] = {
["Amulet"] = {
["max"] = 25,
["min"] = 6,
@@ -12943,7 +14349,7 @@ return {
["type"] = "explicit",
},
},
- ["916_ItemFoundRarityIncreasePrefix"] = {
+ ["913_ItemFoundRarityIncreasePrefix"] = {
["Amulet"] = {
["max"] = 25,
["min"] = 8,
@@ -12964,7 +14370,7 @@ return {
["type"] = "explicit",
},
},
- ["917_LocalBaseCriticalStrikeChance"] = {
+ ["914_LocalBaseCriticalStrikeChance"] = {
["1HMace"] = {
["max"] = 5,
["min"] = 1.01,
@@ -13010,41 +14416,41 @@ return {
},
["usePositiveSign"] = true,
},
- ["918_LocalCriticalStrikeMultiplier"] = {
+ ["915_LocalCriticalStrikeMultiplier"] = {
["1HMace"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["1HWeapon"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["2HMace"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["2HWeapon"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["Bow"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["Crossbow"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["Flail"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["Quarterstaff"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["Spear"] = {
- ["max"] = 39,
+ ["max"] = 25,
["min"] = 10,
},
["specialCaseData"] = {
@@ -13056,7 +14462,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["919_LocalIncreasedAttackSpeed"] = {
+ ["916_LocalIncreasedAttackSpeed"] = {
["1HMace"] = {
["max"] = 28,
["min"] = 5,
@@ -13101,45 +14507,7 @@ return {
["type"] = "explicit",
},
},
- ["9211_ThornsDamageIncrease"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1315743832",
- ["text"] = "#% increased Thorns damage",
- ["type"] = "explicit",
- },
- },
- ["9217_ThornsPhysicalDamage"] = {
- ["Belt"] = {
- ["max"] = 185.5,
- ["min"] = 2,
- },
- ["Chest"] = {
- ["max"] = 185.5,
- ["min"] = 2,
- },
- ["Shield"] = {
- ["max"] = 185.5,
- ["min"] = 2,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_2881298780",
- ["text"] = "# to # Physical Thorns damage",
- ["type"] = "explicit",
- },
- },
- ["921_LocalAttributeRequirements"] = {
+ ["918_LocalAttributeRequirements"] = {
["1HMace"] = {
["max"] = -15,
["min"] = -35,
@@ -13221,7 +14589,17 @@ return {
["type"] = "explicit",
},
},
- ["922_GlobalIncreaseSpellSkillGemLevel"] = {
+ ["919_EssenceSpellSkillLevel"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_124131830",
+ ["text"] = "# to Level of all Spell Skills",
+ ["type"] = "explicit",
+ },
+ ["usePositiveSign"] = true,
+ },
+ ["919_GlobalIncreaseSpellSkillGemLevel"] = {
["Amulet"] = {
["max"] = 3,
["min"] = 1,
@@ -13239,18 +14617,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["922_GlobalIncreaseSpellSkillGemLevelWeapon"] = {
+ ["919_GlobalIncreaseSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 4,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 6,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 6,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 4,
@@ -13265,7 +14643,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["923_GlobalIncreaseFireSpellSkillGemLevel"] = {
+ ["920_GlobalIncreaseFireSpellSkillGemLevel"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -13275,18 +14653,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["923_GlobalIncreaseFireSpellSkillGemLevelWeapon"] = {
+ ["920_GlobalIncreaseFireSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 5,
@@ -13301,7 +14679,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["924_GlobalIncreaseColdSpellSkillGemLevel"] = {
+ ["921_GlobalIncreaseColdSpellSkillGemLevel"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -13311,18 +14689,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["924_GlobalIncreaseColdSpellSkillGemLevelWeapon"] = {
+ ["921_GlobalIncreaseColdSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 5,
@@ -13337,7 +14715,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["925_GlobalIncreaseLightningSpellSkillGemLevel"] = {
+ ["922_GlobalIncreaseLightningSpellSkillGemLevel"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -13347,18 +14725,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["925_GlobalIncreaseLightningSpellSkillGemLevelWeapon"] = {
+ ["922_GlobalIncreaseLightningSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 5,
@@ -13373,7 +14751,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["926_GlobalIncreaseChaosSpellSkillGemLevel"] = {
+ ["923_GlobalIncreaseChaosSpellSkillGemLevel"] = {
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -13383,18 +14761,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["926_GlobalIncreaseChaosSpellSkillGemLevelWeapon"] = {
+ ["923_GlobalIncreaseChaosSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Staff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Wand"] = {
["max"] = 5,
@@ -13409,24 +14787,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["9273_DamageWithTriggeredSpells"] = {
- ["AnyJewel"] = {
- ["max"] = 18,
- ["min"] = 10,
- },
- ["BaseJewel"] = {
- ["max"] = 18,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3067892458",
- ["text"] = "Triggered Spells deal #% increased Spell Damage",
- ["type"] = "explicit",
- },
- },
- ["927_GlobalIncreaseMeleeSkillGemLevel"] = {
+ ["924_GlobalIncreaseMeleeSkillGemLevel"] = {
["1HMace"] = {
["max"] = 5,
["min"] = 1,
@@ -13460,18 +14821,18 @@ return {
},
["usePositiveSign"] = true,
},
- ["927_GlobalIncreaseMeleeSkillGemLevelWeapon"] = {
+ ["924_GlobalIncreaseMeleeSkillGemLevelWeapon"] = {
["2HMace"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["2HWeapon"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Quarterstaff"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["specialCaseData"] = {
},
@@ -13482,7 +14843,17 @@ return {
},
["usePositiveSign"] = true,
},
- ["928_GlobalIncreaseProjectileSkillGemLevel"] = {
+ ["925_EssenceAttackSkillLevel"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3035140377",
+ ["text"] = "# to Level of all Attack Skills",
+ ["type"] = "explicit",
+ },
+ ["usePositiveSign"] = true,
+ },
+ ["926_GlobalIncreaseProjectileSkillGemLevel"] = {
["Amulet"] = {
["max"] = 3,
["min"] = 1,
@@ -13500,7 +14871,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["928_GlobalIncreaseProjectileSkillGemLevelWeapon"] = {
+ ["926_GlobalIncreaseProjectileSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 5,
["min"] = 1,
@@ -13515,7 +14886,7 @@ return {
},
["Crossbow"] = {
["max"] = 7,
- ["min"] = 1,
+ ["min"] = 2,
},
["Spear"] = {
["max"] = 5,
@@ -13530,7 +14901,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["929_GlobalIncreaseMinionSpellSkillGemLevel"] = {
+ ["927_GlobalIncreaseMinionSpellSkillGemLevel"] = {
["Amulet"] = {
["max"] = 3,
["min"] = 1,
@@ -13548,7 +14919,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["929_GlobalIncreaseMinionSpellSkillGemLevelWeapon"] = {
+ ["927_GlobalIncreaseMinionSpellSkillGemLevelWeapon"] = {
["1HWeapon"] = {
["max"] = 4,
["min"] = 1,
@@ -13566,7 +14937,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["931_CriticalStrikeChance"] = {
+ ["929_CriticalStrikeChance"] = {
["Amulet"] = {
["max"] = 38,
["min"] = 10,
@@ -13591,7 +14962,7 @@ return {
["type"] = "explicit",
},
},
- ["932_AttackCriticalStrikeChance"] = {
+ ["930_AttackCriticalStrikeChance"] = {
["AnyJewel"] = {
["max"] = 16,
["min"] = 6,
@@ -13612,14 +14983,14 @@ return {
["type"] = "explicit",
},
},
- ["933_SpellCriticalStrikeChance"] = {
+ ["931_SpellCriticalStrikeChance"] = {
["1HWeapon"] = {
- ["max"] = 109,
- ["min"] = 10,
+ ["max"] = 73,
+ ["min"] = 27,
},
["2HWeapon"] = {
["max"] = 109,
- ["min"] = 10,
+ ["min"] = 40,
},
["AnyJewel"] = {
["max"] = 15,
@@ -13630,16 +15001,16 @@ return {
["min"] = 5,
},
["Focus"] = {
- ["max"] = 99,
- ["min"] = 10,
+ ["max"] = 59,
+ ["min"] = 27,
},
["Staff"] = {
["max"] = 109,
- ["min"] = 10,
+ ["min"] = 40,
},
["Wand"] = {
- ["max"] = 109,
- ["min"] = 10,
+ ["max"] = 73,
+ ["min"] = 27,
},
["specialCaseData"] = {
},
@@ -13649,7 +15020,7 @@ return {
["type"] = "explicit",
},
},
- ["935_CriticalStrikeMultiplier"] = {
+ ["933_CriticalStrikeMultiplier"] = {
["Amulet"] = {
["max"] = 39,
["min"] = 10,
@@ -13674,7 +15045,7 @@ return {
["type"] = "explicit",
},
},
- ["936_AttackCriticalStrikeMultiplier"] = {
+ ["934_AttackCriticalStrikeMultiplier"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -13695,7 +15066,7 @@ return {
["type"] = "explicit",
},
},
- ["937_SpellCritMultiplierForJewel"] = {
+ ["935_SpellCritMultiplierForJewel"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -13712,22 +15083,22 @@ return {
["type"] = "explicit",
},
},
- ["937_SpellCriticalStrikeMultiplier"] = {
+ ["935_SpellCriticalStrikeMultiplier"] = {
["1HWeapon"] = {
["max"] = 39,
["min"] = 10,
},
["2HWeapon"] = {
- ["max"] = 39,
- ["min"] = 10,
+ ["max"] = 59,
+ ["min"] = 15,
},
["Focus"] = {
["max"] = 34,
["min"] = 10,
},
["Staff"] = {
- ["max"] = 39,
- ["min"] = 10,
+ ["max"] = 59,
+ ["min"] = 15,
},
["Wand"] = {
["max"] = 39,
@@ -13741,49 +15112,66 @@ return {
["type"] = "explicit",
},
},
- ["939_IncreasedAttackSpeed"] = {
+ ["9364_StunThresholdfromEnergyShield"] = {
["AnyJewel"] = {
- ["max"] = 4,
- ["min"] = 2,
+ ["max"] = 15,
+ ["min"] = 5,
},
["BaseJewel"] = {
- ["max"] = 4,
- ["min"] = 2,
- },
- ["Gloves"] = {
- ["max"] = 16,
+ ["max"] = 15,
["min"] = 5,
},
- ["Quiver"] = {
- ["max"] = 16,
- ["min"] = 5,
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_416040624",
+ ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield",
+ ["type"] = "explicit",
+ },
+ },
+ ["9366_IncreasedStunThresholdIfNoRecentStun"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_681332047",
- ["text"] = "#% increased Attack Speed",
+ ["id"] = "explicit.stat_1405298142",
+ ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently",
["type"] = "explicit",
},
},
- ["9403_VolatilityOnKillChance"] = {
+ ["937_IncreasedAttackSpeed"] = {
["AnyJewel"] = {
- ["max"] = 3,
+ ["max"] = 4,
["min"] = 2,
},
["BaseJewel"] = {
- ["max"] = 3,
+ ["max"] = 4,
["min"] = 2,
},
+ ["Gloves"] = {
+ ["max"] = 16,
+ ["min"] = 5,
+ },
+ ["Quiver"] = {
+ ["max"] = 16,
+ ["min"] = 5,
+ },
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "explicit.stat_3749502527",
- ["text"] = "#% chance to gain Volatility on Kill",
+ ["id"] = "explicit.stat_681332047",
+ ["text"] = "#% increased Attack Speed",
["type"] = "explicit",
},
},
- ["940_IncreasedCastSpeed"] = {
+ ["938_IncreasedCastSpeed"] = {
["1HWeapon"] = {
["max"] = 35,
["min"] = 9,
@@ -13828,7 +15216,7 @@ return {
["type"] = "explicit",
},
},
- ["941_AdditionalAmmo"] = {
+ ["939_AdditionalAmmo"] = {
["2HWeapon"] = {
["max"] = 1,
["min"] = 1,
@@ -13845,87 +15233,36 @@ return {
["type"] = "explicit",
},
},
- ["9424_WarcryEffect"] = {
- ["AnyJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
- },
- ["BaseJewel"] = {
- ["max"] = 15,
- ["min"] = 5,
- },
+ ["940_AdditionalCharm"] = {
["specialCaseData"] = {
+ ["overrideModLinePlural"] = "+# Charm Slots",
},
["tradeMod"] = {
- ["id"] = "explicit.stat_3037553757",
- ["text"] = "#% increased Warcry Buff Effect",
+ ["id"] = "explicit.stat_2582079000",
+ ["text"] = "# Charm Slot",
["type"] = "explicit",
},
+ ["usePositiveSign"] = true,
},
- ["9427_WarcryDamage"] = {
- ["AnyJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
+ ["941_AdditionalArrows"] = {
+ ["2HWeapon"] = {
+ ["max"] = 2,
+ ["min"] = 1,
},
- ["BaseJewel"] = {
- ["max"] = 20,
- ["min"] = 10,
+ ["Bow"] = {
+ ["max"] = 2,
+ ["min"] = 1,
},
["specialCaseData"] = {
+ ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow",
},
["tradeMod"] = {
- ["id"] = "explicit.stat_1594812856",
- ["text"] = "#% increased Damage with Warcries",
+ ["id"] = "explicit.stat_3885405204",
+ ["text"] = "Bow Attacks fire # additional Arrows",
["type"] = "explicit",
},
},
- ["942_AdditionalCharm"] = {
- ["specialCaseData"] = {
- ["overrideModLinePlural"] = "+# Charm Slots",
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_2582079000",
- ["text"] = "# Charm Slot",
- ["type"] = "explicit",
- },
- ["usePositiveSign"] = true,
- },
- ["9436_WeaponSwapSpeed"] = {
- ["AnyJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["BaseJewel"] = {
- ["max"] = 25,
- ["min"] = 15,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3233599707",
- ["text"] = "#% increased Weapon Swap Speed",
- ["type"] = "explicit",
- },
- },
- ["943_AdditionalArrows"] = {
- ["2HWeapon"] = {
- ["max"] = 2,
- ["min"] = 1,
- },
- ["Bow"] = {
- ["max"] = 2,
- ["min"] = 1,
- },
- ["specialCaseData"] = {
- ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow",
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_3885405204",
- ["text"] = "Bow Attacks fire # additional Arrows",
- ["type"] = "explicit",
- },
- },
- ["944_AllAttributes"] = {
+ ["942_AllAttributes"] = {
["Amulet"] = {
["max"] = 24,
["min"] = 2,
@@ -13943,24 +15280,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["9454_WitheredEffect"] = {
- ["AnyJewel"] = {
- ["max"] = 10,
- ["min"] = 5,
- },
- ["BaseJewel"] = {
- ["max"] = 10,
- ["min"] = 5,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_2545584555",
- ["text"] = "#% increased Effect of Withered",
- ["type"] = "explicit",
- },
- },
- ["945_Strength"] = {
+ ["943_Strength"] = {
["1HMace"] = {
["max"] = 33,
["min"] = 5,
@@ -14034,7 +15354,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["946_Dexterity"] = {
+ ["944_Dexterity"] = {
["1HWeapon"] = {
["max"] = 33,
["min"] = 5,
@@ -14100,7 +15420,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["947_Intelligence"] = {
+ ["945_Intelligence"] = {
["1HWeapon"] = {
["max"] = 33,
["min"] = 5,
@@ -14170,7 +15490,16 @@ return {
},
["usePositiveSign"] = true,
},
- ["948_ReducedExtraDamageFromCrits"] = {
+ ["946_EssenceReducedCriticalDamageAgainstYou"] = {
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3855016469",
+ ["text"] = "Hits against you have #% reduced Critical Damage Bonus",
+ ["type"] = "explicit",
+ },
+ },
+ ["946_ReducedExtraDamageFromCrits"] = {
["Shield"] = {
["max"] = 54,
["min"] = 21,
@@ -14183,7 +15512,24 @@ return {
["type"] = "explicit",
},
},
- ["949_ReducedPhysicalDamageTaken"] = {
+ ["9476_ThornsDamageIncrease"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1315743832",
+ ["text"] = "#% increased Thorns damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["947_ReducedPhysicalDamageTaken"] = {
["Shield"] = {
["max"] = 8,
["min"] = 4,
@@ -14196,7 +15542,28 @@ return {
["type"] = "explicit",
},
},
- ["950_MaximumElementalResistance"] = {
+ ["9483_ThornsPhysicalDamage"] = {
+ ["Belt"] = {
+ ["max"] = 185.5,
+ ["min"] = 2,
+ },
+ ["Chest"] = {
+ ["max"] = 185.5,
+ ["min"] = 2,
+ },
+ ["Shield"] = {
+ ["max"] = 185.5,
+ ["min"] = 2,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_2881298780",
+ ["text"] = "# to # Physical Thorns damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["948_MaximumElementalResistance"] = {
["Shield"] = {
["max"] = 2,
["min"] = 1,
@@ -14210,7 +15577,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["951_MaximumFireResist"] = {
+ ["949_MaximumFireResist"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -14232,7 +15599,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["952_MaximumColdResist"] = {
+ ["950_MaximumColdResist"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -14254,7 +15621,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["953_MaximumLightningResistance"] = {
+ ["951_MaximumLightningResistance"] = {
["AnyJewel"] = {
["max"] = 1,
["min"] = 1,
@@ -14276,7 +15643,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["954_MaximumChaosResistance"] = {
+ ["952_MaximumChaosResistance"] = {
["Shield"] = {
["max"] = 3,
["min"] = 1,
@@ -14290,7 +15657,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["955_AllResistances"] = {
+ ["953_AllResistances"] = {
["Amulet"] = {
["max"] = 18,
["min"] = 3,
@@ -14312,7 +15679,24 @@ return {
},
["usePositiveSign"] = true,
},
- ["956_FireResistance"] = {
+ ["9540_DamageWithTriggeredSpells"] = {
+ ["AnyJewel"] = {
+ ["max"] = 18,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 18,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3067892458",
+ ["text"] = "Triggered Spells deal #% increased Spell Damage",
+ ["type"] = "explicit",
+ },
+ },
+ ["954_FireResistance"] = {
["Amulet"] = {
["max"] = 45,
["min"] = 6,
@@ -14358,7 +15742,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["957_ColdResistance"] = {
+ ["955_ColdResistance"] = {
["Amulet"] = {
["max"] = 45,
["min"] = 6,
@@ -14404,7 +15788,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["958_LightningResistance"] = {
+ ["956_LightningResistance"] = {
["Amulet"] = {
["max"] = 45,
["min"] = 6,
@@ -14450,7 +15834,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["959_ChaosResistance"] = {
+ ["957_ChaosResistance"] = {
["Amulet"] = {
["max"] = 27,
["min"] = 4,
@@ -14496,7 +15880,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["961_MinionLife"] = {
+ ["958_MinionLife"] = {
["1HWeapon"] = {
["max"] = 50,
["min"] = 21,
@@ -14521,6 +15905,65 @@ return {
["type"] = "explicit",
},
},
+ ["959_ArmourAppliesToElementalDamage"] = {
+ ["Boots"] = {
+ ["max"] = 43,
+ ["min"] = 14,
+ },
+ ["Chest"] = {
+ ["max"] = 50,
+ ["min"] = 14,
+ },
+ ["Gloves"] = {
+ ["max"] = 43,
+ ["min"] = 14,
+ },
+ ["Helmet"] = {
+ ["max"] = 43,
+ ["min"] = 14,
+ },
+ ["Shield"] = {
+ ["max"] = 50,
+ ["min"] = 14,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3362812763",
+ ["text"] = "#% of Armour also applies to Elemental Damage",
+ ["type"] = "explicit",
+ },
+ ["usePositiveSign"] = true,
+ },
+ ["960_EvasionAppliesToDeflection"] = {
+ ["Boots"] = {
+ ["max"] = 23,
+ ["min"] = 8,
+ },
+ ["Chest"] = {
+ ["max"] = 26,
+ ["min"] = 8,
+ },
+ ["Gloves"] = {
+ ["max"] = 23,
+ ["min"] = 8,
+ },
+ ["Helmet"] = {
+ ["max"] = 23,
+ ["min"] = 8,
+ },
+ ["Shield"] = {
+ ["max"] = 26,
+ ["min"] = 8,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3033371881",
+ ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating",
+ ["type"] = "explicit",
+ },
+ },
["962_EnergyShieldRegeneration"] = {
["AnyJewel"] = {
["max"] = 20,
@@ -14530,8 +15973,24 @@ return {
["max"] = 20,
["min"] = 10,
},
+ ["Boots"] = {
+ ["max"] = 45,
+ ["min"] = 26,
+ },
["Focus"] = {
- ["max"] = 50,
+ ["max"] = 55,
+ ["min"] = 26,
+ },
+ ["Gloves"] = {
+ ["max"] = 45,
+ ["min"] = 26,
+ },
+ ["Helmet"] = {
+ ["max"] = 45,
+ ["min"] = 26,
+ },
+ ["Shield"] = {
+ ["max"] = 55,
["min"] = 26,
},
["specialCaseData"] = {
@@ -14542,7 +16001,32 @@ return {
["type"] = "explicit",
},
},
- ["963_LifeRegeneration"] = {
+ ["963_EnergyShieldDelay"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["Chest"] = {
+ ["max"] = 55,
+ ["min"] = 26,
+ },
+ ["Focus"] = {
+ ["max"] = 55,
+ ["min"] = 26,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1782086450",
+ ["text"] = "#% faster start of Energy Shield Recharge",
+ ["type"] = "explicit",
+ },
+ },
+ ["964_LifeRegeneration"] = {
["Amulet"] = {
["max"] = 33,
["min"] = 1,
@@ -14575,7 +16059,7 @@ return {
["type"] = "explicit",
},
},
- ["964_LifeRegenerationRate"] = {
+ ["965_LifeRegenerationRate"] = {
["AnyJewel"] = {
["max"] = 10,
["min"] = 5,
@@ -14592,7 +16076,7 @@ return {
["type"] = "explicit",
},
},
- ["965_DamageTakenGainedAsLife"] = {
+ ["966_DamageTakenGainedAsLife"] = {
["Amulet"] = {
["max"] = 24,
["min"] = 10,
@@ -14605,7 +16089,7 @@ return {
["type"] = "explicit",
},
},
- ["965_LifeRecoupForJewel"] = {
+ ["966_LifeRecoupForJewel"] = {
["AnyJewel"] = {
["max"] = 3,
["min"] = 2,
@@ -14622,7 +16106,7 @@ return {
["type"] = "explicit",
},
},
- ["966_LifeLeechPermyriad"] = {
+ ["967_LifeLeechPermyriad"] = {
["Gloves"] = {
["max"] = 9.9,
["min"] = 5,
@@ -14639,7 +16123,24 @@ return {
["type"] = "explicit",
},
},
- ["967_LifeLeechLocalPermyriad"] = {
+ ["9681_VolatilityOnKillChance"] = {
+ ["AnyJewel"] = {
+ ["max"] = 3,
+ ["min"] = 2,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 3,
+ ["min"] = 2,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3749502527",
+ ["text"] = "#% chance to gain Volatility on Kill",
+ ["type"] = "explicit",
+ },
+ },
+ ["968_LifeLeechLocalPermyriad"] = {
["1HMace"] = {
["max"] = 9.9,
["min"] = 5,
@@ -14684,7 +16185,7 @@ return {
["type"] = "explicit",
},
},
- ["968_LifeGainPerTarget"] = {
+ ["969_LifeGainPerTarget"] = {
["Gloves"] = {
["max"] = 5,
["min"] = 2,
@@ -14697,7 +16198,41 @@ return {
["type"] = "explicit",
},
},
- ["969_LifeGainPerTargetLocal"] = {
+ ["9702_WarcryEffect"] = {
+ ["AnyJewel"] = {
+ ["max"] = 15,
+ ["min"] = 5,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 15,
+ ["min"] = 5,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3037553757",
+ ["text"] = "#% increased Warcry Buff Effect",
+ ["type"] = "explicit",
+ },
+ },
+ ["9705_WarcryDamage"] = {
+ ["AnyJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 20,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_1594812856",
+ ["text"] = "#% increased Damage with Warcries",
+ ["type"] = "explicit",
+ },
+ },
+ ["970_LifeGainPerTargetLocal"] = {
["1HMace"] = {
["max"] = 5,
["min"] = 2,
@@ -14742,7 +16277,24 @@ return {
["type"] = "explicit",
},
},
- ["970_LifeGainedFromEnemyDeath"] = {
+ ["9716_WeaponSwapSpeed"] = {
+ ["AnyJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3233599707",
+ ["text"] = "#% increased Weapon Swap Speed",
+ ["type"] = "explicit",
+ },
+ },
+ ["971_LifeGainedFromEnemyDeath"] = {
["1HMace"] = {
["max"] = 84,
["min"] = 4,
@@ -14807,7 +16359,7 @@ return {
["type"] = "explicit",
},
},
- ["971_LightRadiusAndManaRegeneration"] = {
+ ["972_LightRadiusAndManaRegeneration"] = {
["1HWeapon"] = {
["max"] = 22,
["min"] = 8,
@@ -14840,14 +16392,14 @@ return {
["type"] = "explicit",
},
},
- ["971_ManaRegeneration"] = {
+ ["972_ManaRegeneration"] = {
["1HWeapon"] = {
["max"] = 69,
["min"] = 10,
},
["2HWeapon"] = {
- ["max"] = 69,
- ["min"] = 10,
+ ["max"] = 104,
+ ["min"] = 15,
},
["Amulet"] = {
["max"] = 69,
@@ -14874,8 +16426,8 @@ return {
["min"] = 10,
},
["Staff"] = {
- ["max"] = 69,
- ["min"] = 10,
+ ["max"] = 104,
+ ["min"] = 15,
},
["Wand"] = {
["max"] = 69,
@@ -14889,7 +16441,24 @@ return {
["type"] = "explicit",
},
},
- ["972_PercentDamageGoesToMana"] = {
+ ["9734_WitheredEffect"] = {
+ ["AnyJewel"] = {
+ ["max"] = 10,
+ ["min"] = 5,
+ },
+ ["BaseJewel"] = {
+ ["max"] = 10,
+ ["min"] = 5,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "explicit.stat_3973629633",
+ ["text"] = "#% increased Withered Magnitude",
+ ["type"] = "explicit",
+ },
+ },
+ ["973_PercentDamageGoesToMana"] = {
["Amulet"] = {
["max"] = 24,
["min"] = 10,
@@ -14902,7 +16471,7 @@ return {
["type"] = "explicit",
},
},
- ["973_ManaLeechLocalPermyriad"] = {
+ ["974_ManaLeechLocalPermyriad"] = {
["1HMace"] = {
["max"] = 8.9,
["min"] = 4,
@@ -14947,7 +16516,7 @@ return {
["type"] = "explicit",
},
},
- ["974_ManaLeechPermyriad"] = {
+ ["975_ManaLeechPermyriad"] = {
["Gloves"] = {
["max"] = 8.9,
["min"] = 4,
@@ -14964,7 +16533,7 @@ return {
["type"] = "explicit",
},
},
- ["975_ManaGainedFromEnemyDeath"] = {
+ ["976_ManaGainedFromEnemyDeath"] = {
["1HMace"] = {
["max"] = 45,
["min"] = 2,
@@ -15029,7 +16598,7 @@ return {
["type"] = "explicit",
},
},
- ["977_BeltReducedFlaskChargesUsed"] = {
+ ["978_BeltReducedFlaskChargesUsed"] = {
["Belt"] = {
["max"] = 25,
["min"] = 8,
@@ -15042,7 +16611,7 @@ return {
["type"] = "explicit",
},
},
- ["979_StunDamageIncrease"] = {
+ ["980_StunDamageIncrease"] = {
["AnyJewel"] = {
["max"] = 20,
["min"] = 10,
@@ -15059,7 +16628,7 @@ return {
["type"] = "explicit",
},
},
- ["980_LocalStunDamageIncrease"] = {
+ ["981_LocalStunDamageIncrease"] = {
["1HMace"] = {
["max"] = 80,
["min"] = 21,
@@ -15096,7 +16665,7 @@ return {
["type"] = "explicit",
},
},
- ["982_LocalStunDuration"] = {
+ ["983_LocalStunDuration"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 11,
@@ -15162,7 +16731,7 @@ return {
},
["tradeMod"] = {
["id"] = "explicit.stat_2968503605",
- ["text"] = "#% increased chance to Ignite",
+ ["text"] = "#% increased Flammability Magnitude",
["type"] = "explicit",
},
},
@@ -15358,20 +16927,6 @@ return {
},
["usePositiveSign"] = true,
},
- ["991_ReducedBleedDuration"] = {
- ["Chest"] = {
- ["max"] = -36,
- ["min"] = -60,
- },
- ["invertOnNegative"] = true,
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "explicit.stat_1692879867",
- ["text"] = "#% increased Bleeding Duration on you",
- ["type"] = "explicit",
- },
- },
["992_ReducedBurnDuration"] = {
["Chest"] = {
["max"] = 60,
@@ -15700,16 +17255,16 @@ return {
["type"] = "implicit",
},
},
- ["implicit.stat_1443060084"] = {
- ["Quiver"] = {
- ["max"] = 30,
- ["min"] = 20,
+ ["implicit.stat_1444556985"] = {
+ ["Chest"] = {
+ ["max"] = 14,
+ ["min"] = 8,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "implicit.stat_1443060084",
- ["text"] = "#% reduced Enemy Stun Threshold",
+ ["id"] = "implicit.stat_1444556985",
+ ["text"] = "#% of Damage taken Recouped as Life",
["type"] = "implicit",
},
},
@@ -15726,41 +17281,41 @@ return {
},
["tradeMod"] = {
["id"] = "implicit.stat_1451444093",
- ["text"] = "Forks Critical Hits",
+ ["text"] = "Bifurcates Critical Hits",
["type"] = "implicit",
},
},
- ["implicit.stat_1541903247"] = {
+ ["implicit.stat_1503146834"] = {
["2HMace"] = {
- ["max"] = 10,
- ["min"] = 10,
+ ["max"] = 1,
+ ["min"] = 1,
},
["2HWeapon"] = {
- ["max"] = 10,
- ["min"] = 10,
+ ["max"] = 1,
+ ["min"] = 1,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "implicit.stat_1541903247",
- ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage",
+ ["id"] = "implicit.stat_1503146834",
+ ["text"] = "Crushes Enemies on Hit",
["type"] = "implicit",
},
},
- ["implicit.stat_1559935218"] = {
- ["1HMace"] = {
- ["max"] = 100,
- ["min"] = 100,
+ ["implicit.stat_1541903247"] = {
+ ["2HMace"] = {
+ ["max"] = 10,
+ ["min"] = 10,
},
- ["1HWeapon"] = {
- ["max"] = 100,
- ["min"] = 100,
+ ["2HWeapon"] = {
+ ["max"] = 10,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "implicit.stat_1559935218",
- ["text"] = "Causes Daze buildup equal to #% of Damage dealt",
+ ["id"] = "implicit.stat_1541903247",
+ ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage",
["type"] = "implicit",
},
},
@@ -15839,6 +17394,19 @@ return {
},
["usePositiveSign"] = true,
},
+ ["implicit.stat_1745952865"] = {
+ ["Chest"] = {
+ ["max"] = 15,
+ ["min"] = 10,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_1745952865",
+ ["text"] = "#% reduced Elemental Ailment Duration on you",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_1782086450"] = {
["Chest"] = {
["max"] = 50,
@@ -15958,8 +17526,8 @@ return {
},
["implicit.stat_2055966527"] = {
["Quiver"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 30,
+ ["min"] = 20,
},
["specialCaseData"] = {
},
@@ -16029,14 +17597,54 @@ return {
["type"] = "implicit",
},
},
+ ["implicit.stat_239367161"] = {
+ ["Quiver"] = {
+ ["max"] = 40,
+ ["min"] = 25,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_239367161",
+ ["text"] = "#% increased Stun Buildup",
+ ["type"] = "implicit",
+ },
+ },
+ ["implicit.stat_2590797182"] = {
+ ["Chest"] = {
+ ["max"] = -10,
+ ["min"] = -20,
+ },
+ ["invertOnNegative"] = true,
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_2590797182",
+ ["text"] = "#% increased Movement Speed Penalty from using Skills while moving",
+ ["type"] = "implicit",
+ },
+ },
+ ["implicit.stat_2646093132"] = {
+ ["Ring"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_2646093132",
+ ["text"] = "Inflict Abyssal Wasting on Hit",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_2694482655"] = {
["1HMace"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["1HWeapon"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 10,
+ ["min"] = 5,
},
["specialCaseData"] = {
},
@@ -16117,6 +17725,10 @@ return {
},
},
["implicit.stat_2901986750"] = {
+ ["Amulet"] = {
+ ["max"] = 10,
+ ["min"] = 7,
+ },
["Boots"] = {
["max"] = 16,
["min"] = 8,
@@ -16284,6 +17896,20 @@ return {
["type"] = "implicit",
},
},
+ ["implicit.stat_3362812763"] = {
+ ["Chest"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_3362812763",
+ ["text"] = "#% of Armour also applies to Elemental Damage",
+ ["type"] = "implicit",
+ },
+ ["usePositiveSign"] = true,
+ },
["implicit.stat_3372524247"] = {
["Ring"] = {
["max"] = 30,
@@ -16298,6 +17924,24 @@ return {
},
["usePositiveSign"] = true,
},
+ ["implicit.stat_3398402065"] = {
+ ["2HWeapon"] = {
+ ["max"] = -50,
+ ["min"] = -50,
+ },
+ ["Bow"] = {
+ ["max"] = -50,
+ ["min"] = -50,
+ },
+ ["invertOnNegative"] = true,
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_3398402065",
+ ["text"] = "#% increased Projectile Range",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_3489782002"] = {
["Amulet"] = {
["max"] = 30,
@@ -16394,6 +18038,19 @@ return {
["type"] = "implicit",
},
},
+ ["implicit.stat_3855016469"] = {
+ ["Chest"] = {
+ ["max"] = 25,
+ ["min"] = 15,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_3855016469",
+ ["text"] = "Hits against you have #% reduced Critical Damage Bonus",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_3885405204"] = {
["2HWeapon"] = {
["max"] = 1,
@@ -16435,8 +18092,8 @@ return {
},
["implicit.stat_3954735777"] = {
["Quiver"] = {
- ["max"] = 15,
- ["min"] = 10,
+ ["max"] = 30,
+ ["min"] = 20,
},
["specialCaseData"] = {
},
@@ -16491,6 +18148,23 @@ return {
},
["usePositiveSign"] = true,
},
+ ["implicit.stat_4126210832"] = {
+ ["1HMace"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["1HWeapon"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_4126210832",
+ ["text"] = "Always Hits",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_4220027924"] = {
["Ring"] = {
["max"] = 30,
@@ -16505,6 +18179,19 @@ return {
},
["usePositiveSign"] = true,
},
+ ["implicit.stat_458438597"] = {
+ ["Chest"] = {
+ ["max"] = 10,
+ ["min"] = 5,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "implicit.stat_458438597",
+ ["text"] = "#% of Damage is taken from Mana before Life",
+ ["type"] = "implicit",
+ },
+ },
["implicit.stat_462041840"] = {
["Belt"] = {
["max"] = 20,
@@ -16769,46 +18456,46 @@ return {
},
},
["Rune"] = {
- ["1235"] = {
+ ["1223"] = {
["1HMace"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["1HWeapon"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["2HMace"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["2HWeapon"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Bow"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Claw"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Crossbow"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Flail"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Quarterstaff"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["Spear"] = {
- ["max"] = 16,
- ["min"] = 16,
+ ["max"] = 24,
+ ["min"] = 24,
},
["specialCaseData"] = {
},
@@ -16818,30 +18505,30 @@ return {
["type"] = "rune",
},
},
- ["1377"] = {
+ ["1361"] = {
["Boots"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Chest"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Focus"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Gloves"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Helmet"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Shield"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["specialCaseData"] = {
},
@@ -16851,7 +18538,7 @@ return {
["type"] = "rune",
},
},
- ["1451"] = {
+ ["1434"] = {
["1HMace"] = {
["max"] = 2,
["min"] = 2,
@@ -16900,7 +18587,7 @@ return {
["type"] = "rune",
},
},
- ["1453"] = {
+ ["1436"] = {
["1HMace"] = {
["max"] = 2,
["min"] = 2,
@@ -16949,7 +18636,7 @@ return {
["type"] = "rune",
},
},
- ["1620"] = {
+ ["1599"] = {
["1HMace"] = {
["max"] = 13,
["min"] = 13,
@@ -17006,7 +18693,7 @@ return {
["type"] = "rune",
},
},
- ["1635"] = {
+ ["1614"] = {
["Boots"] = {
["max"] = 0.35,
["min"] = 0.25,
@@ -17039,7 +18726,7 @@ return {
["type"] = "rune",
},
},
- ["2178"] = {
+ ["2147"] = {
["1HMace"] = {
["max"] = 15,
["min"] = 15,
@@ -17088,7 +18775,7 @@ return {
["type"] = "rune",
},
},
- ["2820"] = {
+ ["2775"] = {
["1HMace"] = {
["max"] = -25,
["min"] = -25,
@@ -17142,7 +18829,7 @@ return {
["type"] = "rune",
},
},
- ["3373"] = {
+ ["3319"] = {
["1HMace"] = {
["max"] = 15,
["min"] = 15,
@@ -17191,30 +18878,10 @@ return {
["type"] = "rune",
},
},
- ["4162"] = {
+ ["4130"] = {
["Boots"] = {
- ["max"] = 15,
- ["min"] = 15,
- },
- ["Chest"] = {
- ["max"] = 15,
- ["min"] = 15,
- },
- ["Focus"] = {
- ["max"] = 15,
- ["min"] = 15,
- },
- ["Gloves"] = {
- ["max"] = 15,
- ["min"] = 15,
- },
- ["Helmet"] = {
- ["max"] = 15,
- ["min"] = 15,
- },
- ["Shield"] = {
- ["max"] = 15,
- ["min"] = 15,
+ ["max"] = 25,
+ ["min"] = 25,
},
["specialCaseData"] = {
},
@@ -17224,7 +18891,7 @@ return {
["type"] = "rune",
},
},
- ["4362"] = {
+ ["4352"] = {
["1HMace"] = {
["max"] = 50,
["min"] = 50,
@@ -17273,30 +18940,10 @@ return {
["type"] = "rune",
},
},
- ["4548"] = {
+ ["4572"] = {
["Boots"] = {
- ["max"] = -10,
- ["min"] = -10,
- },
- ["Chest"] = {
- ["max"] = -10,
- ["min"] = -10,
- },
- ["Focus"] = {
- ["max"] = -10,
- ["min"] = -10,
- },
- ["Gloves"] = {
- ["max"] = -10,
- ["min"] = -10,
- },
- ["Helmet"] = {
- ["max"] = -10,
- ["min"] = -10,
- },
- ["Shield"] = {
- ["max"] = -10,
- ["min"] = -10,
+ ["max"] = -15,
+ ["min"] = -15,
},
["invertOnNegative"] = true,
["specialCaseData"] = {
@@ -17307,7 +18954,7 @@ return {
["type"] = "rune",
},
},
- ["5068"] = {
+ ["5096"] = {
["1HMace"] = {
["max"] = 50,
["min"] = 50,
@@ -17364,7 +19011,7 @@ return {
["type"] = "rune",
},
},
- ["5069"] = {
+ ["5097"] = {
["1HMace"] = {
["max"] = 50,
["min"] = 50,
@@ -17421,7 +19068,7 @@ return {
["type"] = "rune",
},
},
- ["5070"] = {
+ ["5098"] = {
["1HMace"] = {
["max"] = 50,
["min"] = 50,
@@ -17478,30 +19125,10 @@ return {
["type"] = "rune",
},
},
- ["5146"] = {
- ["Boots"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Chest"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Focus"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Gloves"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
+ ["5177"] = {
["Helmet"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Shield"] = {
- ["max"] = 10,
- ["min"] = 10,
+ ["max"] = 20,
+ ["min"] = 20,
},
["specialCaseData"] = {
},
@@ -17511,7 +19138,7 @@ return {
["type"] = "rune",
},
},
- ["5583"] = {
+ ["5638"] = {
["Boots"] = {
["max"] = 8,
["min"] = 8,
@@ -17544,7 +19171,7 @@ return {
["type"] = "rune",
},
},
- ["5847"] = {
+ ["5919"] = {
["1HMace"] = {
["max"] = 10,
["min"] = 10,
@@ -17593,7 +19220,7 @@ return {
["type"] = "rune",
},
},
- ["6052"] = {
+ ["6145"] = {
["Boots"] = {
["max"] = 12,
["min"] = 8,
@@ -17626,30 +19253,10 @@ return {
["type"] = "rune",
},
},
- ["6281"] = {
- ["Boots"] = {
- ["max"] = 5,
- ["min"] = 5,
- },
- ["Chest"] = {
- ["max"] = 5,
- ["min"] = 5,
- },
- ["Focus"] = {
- ["max"] = 5,
- ["min"] = 5,
- },
+ ["6384"] = {
["Gloves"] = {
- ["max"] = 5,
- ["min"] = 5,
- },
- ["Helmet"] = {
- ["max"] = 5,
- ["min"] = 5,
- },
- ["Shield"] = {
- ["max"] = 5,
- ["min"] = 5,
+ ["max"] = 10,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
@@ -17659,7 +19266,7 @@ return {
["type"] = "rune",
},
},
- ["6998"] = {
+ ["7159"] = {
["1HMace"] = {
["max"] = 10,
["min"] = 10,
@@ -17708,7 +19315,7 @@ return {
["type"] = "rune",
},
},
- ["7059"] = {
+ ["7224"] = {
["1HMace"] = {
["max"] = 15,
["min"] = 15,
@@ -17757,7 +19364,7 @@ return {
["type"] = "rune",
},
},
- ["7061"] = {
+ ["7226"] = {
["1HMace"] = {
["max"] = 20,
["min"] = 20,
@@ -17830,7 +19437,7 @@ return {
["type"] = "rune",
},
},
- ["7062"] = {
+ ["7227"] = {
["1HMace"] = {
["max"] = 20,
["min"] = 20,
@@ -17903,7 +19510,7 @@ return {
["type"] = "rune",
},
},
- ["7063"] = {
+ ["7228"] = {
["1HMace"] = {
["max"] = 20,
["min"] = 20,
@@ -17976,128 +19583,46 @@ return {
["type"] = "rune",
},
},
- ["8188"] = {
+ ["819"] = {
["1HMace"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["1HWeapon"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["2HMace"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["2HWeapon"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Bow"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Claw"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Crossbow"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Flail"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Quarterstaff"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Spear"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "rune.stat_1433756169",
- ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage",
- ["type"] = "rune",
- },
- },
- ["8189"] = {
- ["Boots"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Chest"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Focus"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Gloves"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Helmet"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Shield"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "rune.stat_889552744",
- ["text"] = "Minions take #% of Physical Damage as Lightning Damage",
- ["type"] = "rune",
- },
- },
- ["823"] = {
- ["1HMace"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["1HWeapon"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["2HMace"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["2HWeapon"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Bow"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Claw"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Crossbow"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Flail"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Quarterstaff"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["Spear"] = {
- ["max"] = 25,
- ["min"] = 15,
+ ["max"] = 18,
+ ["min"] = 14,
},
["specialCaseData"] = {
},
@@ -18107,7 +19632,7 @@ return {
["type"] = "rune",
},
},
- ["825"] = {
+ ["821"] = {
["1HMace"] = {
["max"] = 28.5,
["min"] = 5,
@@ -18156,7 +19681,7 @@ return {
["type"] = "rune",
},
},
- ["826"] = {
+ ["822"] = {
["1HMace"] = {
["max"] = 23.5,
["min"] = 4,
@@ -18205,7 +19730,7 @@ return {
["type"] = "rune",
},
},
- ["827"] = {
+ ["823"] = {
["1HMace"] = {
["max"] = 30.5,
["min"] = 5.5,
@@ -18254,7 +19779,7 @@ return {
["type"] = "rune",
},
},
- ["830"] = {
+ ["826"] = {
["1HMace"] = {
["max"] = 8,
["min"] = 8,
@@ -18303,114 +19828,146 @@ return {
["type"] = "rune",
},
},
- ["8334"] = {
+ ["8391"] = {
["1HMace"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["1HWeapon"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["2HMace"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["2HWeapon"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Bow"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Claw"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Crossbow"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Flail"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Quarterstaff"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
["Spear"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["max"] = 10,
+ ["min"] = 10,
},
- ["Staff"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["specialCaseData"] = {
},
- ["Wand"] = {
- ["max"] = 6,
- ["min"] = 6,
+ ["tradeMod"] = {
+ ["id"] = "rune.stat_1433756169",
+ ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage",
+ ["type"] = "rune",
+ },
+ },
+ ["8392"] = {
+ ["Boots"] = {
+ ["max"] = 10,
+ ["min"] = 10,
+ },
+ ["Chest"] = {
+ ["max"] = 10,
+ ["min"] = 10,
+ },
+ ["Focus"] = {
+ ["max"] = 10,
+ ["min"] = 10,
+ },
+ ["Gloves"] = {
+ ["max"] = 10,
+ ["min"] = 10,
+ },
+ ["Helmet"] = {
+ ["max"] = 10,
+ ["min"] = 10,
+ },
+ ["Shield"] = {
+ ["max"] = 10,
+ ["min"] = 10,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "rune.stat_731403740",
- ["text"] = "Gain #% of Damage as Extra Damage of all Elements",
+ ["id"] = "rune.stat_889552744",
+ ["text"] = "Minions take #% of Physical Damage as Lightning Damage",
["type"] = "rune",
},
},
- ["8385"] = {
+ ["8552"] = {
["1HMace"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["1HWeapon"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["2HMace"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["2HWeapon"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Bow"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Claw"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Crossbow"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Flail"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Quarterstaff"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Spear"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 5,
+ ["min"] = 5,
+ },
+ ["Staff"] = {
+ ["max"] = 5,
+ ["min"] = 5,
+ },
+ ["Wand"] = {
+ ["max"] = 5,
+ ["min"] = 5,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "rune.stat_1755296234",
- ["text"] = "Targets can be affected by # of your Poisons at the same time",
+ ["id"] = "rune.stat_731403740",
+ ["text"] = "Gain #% of Damage as Extra Damage of all Elements",
["type"] = "rune",
},
- ["usePositiveSign"] = true,
},
- ["861"] = {
+ ["856"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 30,
@@ -18459,7 +20016,57 @@ return {
["type"] = "rune",
},
},
- ["872"] = {
+ ["8612"] = {
+ ["1HMace"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["1HWeapon"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["2HMace"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["2HWeapon"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Bow"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Claw"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Crossbow"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Flail"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Quarterstaff"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["Spear"] = {
+ ["max"] = 1,
+ ["min"] = 1,
+ },
+ ["specialCaseData"] = {
+ },
+ ["tradeMod"] = {
+ ["id"] = "rune.stat_1755296234",
+ ["text"] = "Targets can be affected by # of your Poisons at the same time",
+ ["type"] = "rune",
+ },
+ ["usePositiveSign"] = true,
+ },
+ ["866"] = {
["Boots"] = {
["max"] = 40,
["min"] = 20,
@@ -18493,30 +20100,10 @@ return {
},
["usePositiveSign"] = true,
},
- ["873"] = {
- ["Boots"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
+ ["867"] = {
["Chest"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Focus"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Gloves"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Helmet"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Shield"] = {
- ["max"] = 2,
- ["min"] = 2,
+ ["max"] = 3,
+ ["min"] = 3,
},
["specialCaseData"] = {
},
@@ -18526,7 +20113,7 @@ return {
["type"] = "rune",
},
},
- ["874"] = {
+ ["868"] = {
["Boots"] = {
["max"] = 35,
["min"] = 15,
@@ -18552,12 +20139,12 @@ return {
["min"] = 15,
},
["Staff"] = {
- ["max"] = 35,
- ["min"] = 25,
+ ["max"] = 50,
+ ["min"] = 30,
},
["Wand"] = {
- ["max"] = 35,
- ["min"] = 25,
+ ["max"] = 50,
+ ["min"] = 30,
},
["specialCaseData"] = {
},
@@ -18568,30 +20155,10 @@ return {
},
["usePositiveSign"] = true,
},
- ["875"] = {
- ["Boots"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Chest"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Focus"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Gloves"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
+ ["869"] = {
["Helmet"] = {
- ["max"] = 2,
- ["min"] = 2,
- },
- ["Shield"] = {
- ["max"] = 2,
- ["min"] = 2,
+ ["max"] = 3,
+ ["min"] = 3,
},
["specialCaseData"] = {
},
@@ -18601,7 +20168,7 @@ return {
["type"] = "rune",
},
},
- ["877"] = {
+ ["871"] = {
["1HMace"] = {
["max"] = 15,
["min"] = 15,
@@ -18651,7 +20218,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["8842"] = {
+ ["9107"] = {
["Boots"] = {
["max"] = 10,
["min"] = 10,
@@ -18684,7 +20251,7 @@ return {
["type"] = "rune",
},
},
- ["916"] = {
+ ["913"] = {
["Chest"] = {
["max"] = 8,
["min"] = 8,
@@ -18697,46 +20264,46 @@ return {
["type"] = "rune",
},
},
- ["918"] = {
+ ["915"] = {
["1HMace"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["1HWeapon"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["2HMace"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["2HWeapon"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Bow"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Claw"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Crossbow"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Flail"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Quarterstaff"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["Spear"] = {
- ["max"] = 12,
- ["min"] = 12,
+ ["max"] = 5,
+ ["min"] = 5,
},
["specialCaseData"] = {
},
@@ -18747,40 +20314,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["9216"] = {
- ["Boots"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["Chest"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["Focus"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["Gloves"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["Helmet"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["Shield"] = {
- ["max"] = 50.5,
- ["min"] = 50.5,
- },
- ["specialCaseData"] = {
- },
- ["tradeMod"] = {
- ["id"] = "rune.stat_757050353",
- ["text"] = "# to # Lightning Thorns damage",
- ["type"] = "rune",
- },
- },
- ["945"] = {
+ ["943"] = {
["1HMace"] = {
["max"] = 10,
["min"] = 6,
@@ -18837,10 +20371,6 @@ return {
["max"] = 10,
["min"] = 6,
},
- ["Sceptre"] = {
- ["max"] = 10,
- ["min"] = 6,
- },
["Shield"] = {
["max"] = 10,
["min"] = 6,
@@ -18866,7 +20396,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["946"] = {
+ ["944"] = {
["1HMace"] = {
["max"] = 10,
["min"] = 6,
@@ -18923,10 +20453,6 @@ return {
["max"] = 10,
["min"] = 6,
},
- ["Sceptre"] = {
- ["max"] = 10,
- ["min"] = 6,
- },
["Shield"] = {
["max"] = 10,
["min"] = 6,
@@ -18952,7 +20478,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["947"] = {
+ ["945"] = {
["1HMace"] = {
["max"] = 10,
["min"] = 6,
@@ -19009,10 +20535,6 @@ return {
["max"] = 10,
["min"] = 6,
},
- ["Sceptre"] = {
- ["max"] = 10,
- ["min"] = 6,
- },
["Shield"] = {
["max"] = 10,
["min"] = 6,
@@ -19038,30 +20560,10 @@ return {
},
["usePositiveSign"] = true,
},
- ["948"] = {
- ["Boots"] = {
- ["max"] = 15,
- ["min"] = 10,
- },
+ ["946"] = {
["Chest"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Focus"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Gloves"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Helmet"] = {
- ["max"] = 10,
- ["min"] = 10,
- },
- ["Shield"] = {
- ["max"] = 10,
- ["min"] = 10,
+ ["max"] = 20,
+ ["min"] = 20,
},
["specialCaseData"] = {
},
@@ -19071,65 +20573,58 @@ return {
["type"] = "rune",
},
},
- ["951"] = {
+ ["9482"] = {
["Boots"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["Chest"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["Focus"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["Gloves"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["Helmet"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["Shield"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["max"] = 50.5,
+ ["min"] = 50.5,
},
["specialCaseData"] = {
},
["tradeMod"] = {
- ["id"] = "rune.stat_4095671657",
- ["text"] = "#% to Maximum Fire Resistance",
+ ["id"] = "rune.stat_757050353",
+ ["text"] = "# to # Lightning Thorns damage",
["type"] = "rune",
},
- ["usePositiveSign"] = true,
},
- ["952"] = {
- ["Boots"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["Chest"] = {
+ ["949"] = {
+ ["Gloves"] = {
["max"] = 1,
["min"] = 1,
},
- ["Focus"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["specialCaseData"] = {
},
- ["Gloves"] = {
- ["max"] = 1,
- ["min"] = 1,
+ ["tradeMod"] = {
+ ["id"] = "rune.stat_4095671657",
+ ["text"] = "#% to Maximum Fire Resistance",
+ ["type"] = "rune",
},
+ ["usePositiveSign"] = true,
+ },
+ ["950"] = {
["Helmet"] = {
["max"] = 1,
["min"] = 1,
},
- ["Shield"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -19139,31 +20634,11 @@ return {
},
["usePositiveSign"] = true,
},
- ["953"] = {
+ ["951"] = {
["Boots"] = {
["max"] = 1,
["min"] = 1,
},
- ["Chest"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["Focus"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["Gloves"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["Helmet"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
- ["Shield"] = {
- ["max"] = 1,
- ["min"] = 1,
- },
["specialCaseData"] = {
},
["tradeMod"] = {
@@ -19173,7 +20648,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["955"] = {
+ ["953"] = {
["Boots"] = {
["max"] = 5,
["min"] = 5,
@@ -19207,7 +20682,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["956"] = {
+ ["954"] = {
["Boots"] = {
["max"] = 14,
["min"] = 10,
@@ -19241,7 +20716,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["957"] = {
+ ["955"] = {
["Boots"] = {
["max"] = 14,
["min"] = 10,
@@ -19275,7 +20750,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["958"] = {
+ ["956"] = {
["Boots"] = {
["max"] = 14,
["min"] = 10,
@@ -19309,7 +20784,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["959"] = {
+ ["957"] = {
["Boots"] = {
["max"] = 11,
["min"] = 11,
@@ -19343,7 +20818,7 @@ return {
},
["usePositiveSign"] = true,
},
- ["967"] = {
+ ["968"] = {
["1HMace"] = {
["max"] = 3,
["min"] = 2,
@@ -19392,7 +20867,7 @@ return {
["type"] = "rune",
},
},
- ["970"] = {
+ ["971"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 10,
@@ -19441,7 +20916,7 @@ return {
["type"] = "rune",
},
},
- ["971"] = {
+ ["972"] = {
["Boots"] = {
["max"] = 18,
["min"] = 12,
@@ -19482,7 +20957,7 @@ return {
["type"] = "rune",
},
},
- ["973"] = {
+ ["974"] = {
["1HMace"] = {
["max"] = 2.5,
["min"] = 1.5,
@@ -19531,7 +21006,7 @@ return {
["type"] = "rune",
},
},
- ["975"] = {
+ ["976"] = {
["1HMace"] = {
["max"] = 24,
["min"] = 8,
@@ -19580,7 +21055,7 @@ return {
["type"] = "rune",
},
},
- ["980"] = {
+ ["981"] = {
["1HMace"] = {
["max"] = 30,
["min"] = 20,
@@ -19674,50 +21149,50 @@ return {
},
["tradeMod"] = {
["id"] = "rune.stat_2968503605",
- ["text"] = "#% increased chance to Ignite",
+ ["text"] = "#% increased Flammability Magnitude",
["type"] = "rune",
},
},
["986"] = {
["1HMace"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["1HWeapon"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["2HMace"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["2HWeapon"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Bow"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Claw"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Crossbow"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Flail"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Quarterstaff"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["Spear"] = {
- ["max"] = 20,
- ["min"] = 20,
+ ["max"] = 30,
+ ["min"] = 30,
},
["specialCaseData"] = {
},
@@ -19778,28 +21253,28 @@ return {
},
["990"] = {
["Boots"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["Chest"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["Focus"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["Gloves"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["Helmet"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["Shield"] = {
- ["max"] = 50,
- ["min"] = 30,
+ ["max"] = 80,
+ ["min"] = 40,
},
["specialCaseData"] = {
},
diff --git a/src/Data/Rares.lua b/src/Data/Rares.lua
index e322b7e179..0436aa5682 100644
--- a/src/Data/Rares.lua
+++ b/src/Data/Rares.lua
@@ -5,42 +5,42 @@
-- Helmet
[[
Armour Helmet
-Paragon Greathelm
+Imperial Greathelm
Crafted: true
Prefix: LocalIncreasedPhysicalDamageReductionRating5
Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5
Prefix: IncreasedLife7
]],[[
Evasion Helmet
-Trapper Hood
+Freebooter Cap
Crafted: true
Prefix: LocalIncreasedEvasionRating5
Prefix: LocalIncreasedEvasionRatingPercent5
Prefix: IncreasedLife7
]],[[
Energy Shield Helmet
-Kamasan Tiara
+Ancestral Tiara
Crafted: true
Prefix: IncreasedLife7
Prefix: LocalIncreasedEnergyShieldPercent5
Prefix: LocalIncreasedEnergyShield7
]],[[
Armour/Evasion Helmet
-Champion Helm
+Gladiatorial Helm
Crafted: true
Prefix: LocalBaseArmourAndEvasionRating3
Prefix: LocalIncreasedArmourAndEvasion5
Prefix: IncreasedLife7
]],[[
Armour/Energy Shield Helmet
-Divine Crown
+Cryptic Crown
Crafted: true
Prefix: LocalBaseArmourAndEnergyShield3
Prefix: LocalIncreasedArmourAndEnergyShield5
Prefix: IncreasedLife7
]],[[
Evasion/Energy Shield Helmet
-Soaring Mask
+Grinning Mask
Crafted: true
Prefix: LocalBaseEvasionRatingAndEnergyShield3
Prefix: LocalIncreasedEvasionAndEnergyShield5_
@@ -49,42 +49,42 @@ Prefix: IncreasedLife7
-- Gloves
[[
Armour Gloves
-Vaal Mitts
+Massive Mitts
Crafted: true
Prefix: LocalIncreasedPhysicalDamageReductionRating4
Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5
Prefix: IncreasedLife6
]],[[
Evasion Gloves
-Barbed Bracers
+Polished Bracers
Crafted: true
Prefix: LocalIncreasedEvasionRating3
Prefix: LocalIncreasedEvasionRatingPercent5
Prefix: IncreasedLife6
]],[[
Energy Shield Gloves
-Vaal Gloves
+Sirenscale Gloves
Crafted: true
Prefix: IncreasedLife6
Prefix: LocalIncreasedEnergyShieldPercent5
Prefix: LocalIncreasedEnergyShield6
]],[[
Armour/Evasion Gloves
-Cultist Gauntlets
+Blacksteel Gauntlets
Crafted: true
Prefix: LocalBaseArmourAndEvasionRating3
Prefix: LocalIncreasedArmourAndEvasion5
Prefix: IncreasedLife6
]],[[
Armour/Energy Shield Gloves
-Gleaming Cuffs
+Adherent Cuffs
Crafted: true
Prefix: LocalBaseArmourAndEnergyShield3_
Prefix: LocalIncreasedArmourAndEnergyShield5
Prefix: IncreasedLife6
]],[[
Evasion/Energy Shield Gloves
-Vaal Wraps
+Secured Wraps
Crafted: true
Prefix: LocalBaseEvasionRatingAndEnergyShield3
Prefix: LocalIncreasedEvasionAndEnergyShield5_
@@ -151,42 +151,42 @@ Prefix: IncreasedSpirit6
-- Boots
[[
Armour Boots
-Vaal Greaves
+Tasalian Greaves
Crafted: true
Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5
Prefix: IncreasedLife6
Prefix: MovementVelocity5
]],[[
Evasion Boots
-Dragonscale Boots
+Drakeskin Boots
Crafted: true
Prefix: LocalIncreasedEvasionRatingPercent5
Prefix: IncreasedLife6
Prefix: MovementVelocity5
]],[[
Energy Shield Boots
-Sandsworn Sandals
+Sekhema Sandals
Crafted: true
Prefix: IncreasedLife6
Prefix: LocalIncreasedEnergyShieldPercent5
Prefix: MovementVelocity5
]],[[
Armour/Evasion Boots
-Fortress Sabatons
+Blacksteel Sabatons
Crafted: true
Prefix: LocalIncreasedArmourAndEvasion5
Prefix: IncreasedLife6
Prefix: MovementVelocity5
]],[[
Armour/Energy Shield Boots
-Warlock Leggings
+Cryptic Leggings
Crafted: true
Prefix: LocalIncreasedArmourAndEnergyShield5
Prefix: IncreasedLife6
Prefix: MovementVelocity5
]],[[
Evasion/Energy Shield Boots
-Quickslip Shoes
+Daggerfoot Shoes
Crafted: true
Prefix: LocalIncreasedEvasionAndEnergyShield5_
Prefix: IncreasedLife6
@@ -195,28 +195,28 @@ Prefix: MovementVelocity5
-- Shields
[[
Armour Shield
-Vaal Tower Shield
+Tawhoan Tower Shield
Crafted: true
Prefix: LocalIncreasedBlockPercentage5
Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5
Prefix: IncreasedLife8
]],[[
Evasion Shield
-Ancient Buckler
+Desert Buckler
Crafted: true
Prefix: LocalIncreasedBlockPercentage5
Prefix: LocalIncreasedEvasionRatingPercent5
Prefix: IncreasedLife8
]],[[
Armour/Evasion Shield
-Soaring Targe
+Golden Targe
Crafted: true
Prefix: LocalIncreasedBlockPercentage5
Prefix: LocalIncreasedArmourAndEvasion5
Prefix: IncreasedLife8
]],[[
Armour/Energy Shield Shield
-Vaal Crest Shield
+Blacksteel Crest Shield
Crafted: true
Prefix: LocalIncreasedBlockPercentage5
Prefix: LocalIncreasedArmourAndEnergyShield5
diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua
index dd546ee2ab..5ad5acdb37 100644
--- a/src/Data/SkillStatMap.lua
+++ b/src/Data/SkillStatMap.lua
@@ -157,9 +157,18 @@ return {
["additive_mine_duration_modifiers_apply_to_buff_effect_duration"] = {
skill("mineDurationAppliesToSkill", true),
},
+["perfectly_timed"] = {
+ flag("Condition:PerfectTiming"),
+},
["additive_arrow_speed_modifiers_apply_to_area_of_effect"] = {
skill("arrowSpeedAppliesToAreaOfEffect", true),
},
+["modifiers_to_warcry_damage_also_apply_to_this"] = {
+ flag("WarcryDamageAppliesToSkill"),
+},
+["skill_triggered_manually_by_other_skill"] = {
+ flag("Condition:Empowered"),
+},
["skill_buff_effect_+%"] = {
mod("BuffEffect", "INC", nil)
},
@@ -266,7 +275,8 @@ return {
mod("RepeatCount", "BASE", nil, 0, 0, {type = "SkillType", skillType = SkillType.Cascadable }),
},
["base_melee_attack_repeat_count"] = {
- mod("RepeatCount", "BASE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Multistrikeable }),
+ mod("RepeatCount", "BASE", nil, 0, 0, { type = "ModFlagOr", modFlags = bit.bor(ModFlag.WeaponMelee, ModFlag.Unarmed) }),
+ mod("RepeatCount", "BASE", nil, 0, 0, { type = "SkillType", skillType = SkillType.RequiresShield }),
},
["display_skill_minions_level_is_corpse_level"] = {
skill("minionLevelIsEnemyLevel", true),
@@ -533,6 +543,15 @@ return {
["display_this_skill_cooldown_does_not_recover_during_buff"] = {
flag("NoCooldownRecoveryInDuration"),
},
+["totem_skill_cast_speed_+%"] = {
+ mod("Speed", "INC", nil, ModFlag.Cast, KeywordFlag.Totem),
+},
+["totem_skill_attack_speed_+%"] = {
+ mod("Speed", "INC", nil, ModFlag.Attack, KeywordFlag.Totem)
+},
+["grenade_skill_cooldown_speed_+%"] = {
+ mod("CooldownRecovery", "INC", nil),
+},
-- AoE
["active_skill_base_area_of_effect_radius"] = {
skill("radius", nil),
@@ -673,7 +692,8 @@ return {
mod("FortifyDuration", "INC", nil),
},
["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"] = {
- mod("SkillAndDamagingAilmentDuration", "MORE", nil),
+ mod("Duration", "MORE", nil),
+ mod("DamagingAilmentDuration", "MORE", nil),
},
["base_bleed_duration_+%"] = {
mod("EnemyBleedDuration", "INC", nil),
@@ -724,6 +744,9 @@ return {
["damage_over_time_+%"] = {
mod("Damage", "INC", nil, ModFlag.Dot),
},
+["support_rapid_decay_damage_over_time_+%_final"] = {
+ mod("Damage", "MORE", nil, ModFlag.Dot),
+},
["burn_damage_+%"] = {
mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot),
},
@@ -736,6 +759,14 @@ return {
["active_skill_damage_+%_final"] = {
mod("Damage", "MORE", nil),
},
+["support_no_fear_damage_+%_final_per_second_up_to_30%"] = {
+ mod("Damage", "MORE", nil, 0, 0,
+ { type = "Condition", var = "UsingStoicism" },
+ { type = "Condition", var = "DodgeRolledRecently", neg = true },
+ { type = "Condition", var = "UsedTravelSkillRecently", neg = true },
+ { type = "Multiplier", var = "StoicismSeconds", limitVar = "StoicismCap", limitTotal = true }
+ ),
+},
["active_skill_damage_+%_final_against_heavy_stunned_enemies"] = {
mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "HeavyStunned" }),
},
@@ -757,6 +788,9 @@ return {
["active_skill_projectile_damage_+%_final"] = {
mod("Damage", "MORE", nil, ModFlag.Projectile),
},
+["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"] = {
+ flag("ProjectileSpeedAppliesToProjectileDamage"),
+},
["active_skill_area_damage_+%_final"] = {
mod("Damage", "MORE", nil, ModFlag.Area),
},
@@ -937,9 +971,15 @@ return {
["physical_damage_%_to_add_as_chaos"] = {
mod("PhysicalDamageGainAsChaos", "BASE", nil),
},
+["non_skill_base_physical_damage_%_to_gain_as_chaos"] = {
+ mod("PhysicalDamageGainAsChaos", "BASE", nil),
+},
["cold_damage_%_to_add_as_fire"] = {
mod("ColdDamageGainAsFire", "BASE", nil),
},
+["non_skill_base_cold_damage_%_to_gain_as_chaos"] = {
+ mod("ColdDamageGainAsChaos", "BASE", nil),
+},
["fire_damage_%_to_add_as_chaos"] = {
mod("FireDamageGainAsChaos", "BASE", nil),
},
@@ -949,6 +989,12 @@ return {
["non_skill_base_all_damage_%_to_gain_as_chaos"] = {
mod("DamageGainAsChaos", "BASE", nil),
},
+["non_skill_base_fire_damage_%_to_gain_as_chaos"] = {
+ mod("FireDamageGainAsChaos", "BASE", nil),
+},
+["non_skill_base_lightning_damage_%_to_gain_as_chaos"] = {
+ mod("LightningDamageGainAsChaos", "BASE", nil),
+},
["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"] = {
mod("DamageGainAsLightning", "BASE", nil, ModFlag.Attack),
},
@@ -1336,12 +1382,19 @@ return {
["never_freeze"] = {
flag("CannotFreeze"),
},
+["never_freeze_or_chill"] = {
+ flag("CannotFreeze"),
+ flag("CannotChill"),
+},
["never_chill"] = {
flag("CannotChill"),
},
["cannot_cause_bleeding"] = {
flag("CannotBleed"),
},
+["cannot_poison"] = {
+ flag("CannotPoison"),
+},
["cannot_break_armour"] = {
flag("CannotArmourBreak"),
},
@@ -1371,6 +1424,9 @@ return {
flag("FireCanShock"),
flag("ChaosCanShock"),
},
+["chaos_damage_can_shock"] = {
+ flag("ChaosCanShock"),
+},
["all_damage_can_ignite_freeze_shock"] = {
flag("PhysicalCanIgnite"),
flag("LightningCanIgnite"),
@@ -1385,6 +1441,9 @@ return {
flag("FireCanShock"),
flag("ChaosCanShock"),
},
+["base_chaos_damage_can_ignite"] = {
+ flag("ChaosCanIgnite"),
+},
["base_lightning_damage_can_electrocute"] = {
flag("LightningCanElectrocute"),
},
@@ -1479,6 +1538,10 @@ return {
["active_skill_projectile_speed_+%_final"] = {
mod("ProjectileSpeed", "MORE", nil),
},
+["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"] = {
+ flag("CastSpeedAppliesToProjectileSpeed"),
+ mod("ImprovedCastSpeedAppliesToProjectileSpeed", "MAX", nil)
+},
["projectile_base_number_of_targets_to_pierce"] = {
mod("PierceCount", "BASE", nil),
},
@@ -1837,6 +1900,10 @@ return {
["off_hand_weapon_minimum_physical_damage"] = {
skill("setOffHandPhysicalMin", nil),
},
+["active_skill_has_%_standard_scaling_attack_damage"] = {
+ skill("baseMultiplier", nil), -- FIX: Should be getting value from default attack on weapon if it exists
+ div = 100,
+},
["off_hand_weapon_maximum_physical_damage"] = {
skill("setOffHandPhysicalMax", nil),
},
@@ -1925,6 +1992,10 @@ return {
mod("TotalCastTime", "BASE", nil),
div = 1000,
},
+["base_spell_cast_time_ms"] = {
+ mod("TotalCastTime", "BASE", nil),
+ div = 1000,
+},
["active_skill_cast_speed_+%_final"] = {
mod("Speed", "MORE", nil, ModFlag.Cast),
},
@@ -2087,6 +2158,9 @@ return {
["totem_elemental_resistance_%"] = {
mod("TotemElementalResist", "BASE", nil)
},
+["totem_maximum_all_elemental_resistances_%"] = {
+ mod("TotemElementalResistMax", "BASE", nil)
+},
["totem_chaos_resistance_%"] = {
mod("TotemChaosResist", "BASE", nil)
},
@@ -2164,14 +2238,6 @@ return {
["minion_block_%"] = {
mod("MinionModifier", "LIST", { mod = mod("BlockChance", "BASE", nil) }),
},
-["minion_1%_damage_+%_per_X_player_strength"] = {
- mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 3 }) }),
- div = 3,
-},
-["minion_1%_accuracy_rating_+%_per_X_player_dexterity"] = {
- mod("MinionModifier", "LIST", { mod = mod("Accuracy", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }),
- div = 3,
-},
["base_number_of_zombies_allowed"] = {
mod("ActiveZombieLimit", "BASE", nil),
},
@@ -2481,7 +2547,7 @@ return {
mod("Condition:CannotBeDamaged", "FLAG", nil)
},
--
--- Gem Levels
+-- Gem Levels / quality
--
--Fire
["supported_fire_skill_gem_level_+"] = {
@@ -2507,6 +2573,9 @@ return {
["supported_active_skill_gem_level_+"] = {
mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "level", value = nil }),
},
+["supported_active_skill_gem_quality_%"] = {
+ mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "quality", value = nil }),
+},
--Aura
["supported_aura_skill_gem_level_+"] = {
mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "level", value = nil }, 0, 0, { type = "SkillType", skillType = SkillType.Aura }),
@@ -2597,5 +2666,7 @@ return {
["quality_display_sandstorm_swipe_is_gem"] = {
-- Display Only
},
-
+["quality_display_base_totem_duration_is_gem"] = {
+ -- Display Only
+},
}
diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua
index cbe0f0a37c..7f6144e605 100644
--- a/src/Data/Skills/act_dex.lua
+++ b/src/Data/Skills/act_dex.lua
@@ -136,7 +136,7 @@ skills["BarragePlayer"] = {
baseTypeName = "Barrage",
color = 2,
description = "Ready a volley of arrows or spears, Empowering your next Barrageable Bow or Projectile Spear Attack to Repeat multiple times. Consumes your Frenzy Charges on use to add additional repeats.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
["Bow"] = true,
@@ -146,46 +146,46 @@ skills["BarragePlayer"] = {
{ "empower_barrage_damage_-%_final_with_repeated_projectiles", -0.25 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 12, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 11, }, },
[2] = { storedUses = 1, levelRequirement = 3, cooldown = 2, cost = { Mana = 13, }, },
[3] = { storedUses = 1, levelRequirement = 6, cooldown = 2, cost = { Mana = 14, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 15, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 16, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 17, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 18, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 19, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 21, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 22, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 24, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 26, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 28, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 30, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 32, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 34, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 37, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 39, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 42, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 45, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 49, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 52, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 56, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 60, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 65, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 16, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 18, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 20, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 21, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 23, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 25, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 27, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 29, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 31, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 34, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 36, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 38, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 41, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 43, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 46, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 48, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 51, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 54, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 57, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 59, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 62, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 66, }, },
[26] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 69, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 74, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 80, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 85, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 92, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 98, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 105, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 113, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 121, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 130, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 140, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 150, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 161, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 172, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 185, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 72, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 76, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 79, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 83, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 86, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 90, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 94, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 98, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 102, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 107, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 111, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 116, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 120, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 125, }, },
},
statSets = {
[1] = {
@@ -229,7 +229,7 @@ skills["BarragePlayer"] = {
{ "empower_barrage_number_of_barrage_repeats_per_frenzy_charge", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "empower_barrage_damage_-%_final_with_repeated_projectiles", 50 },
},
stats = {
@@ -300,44 +300,44 @@ skills["BloodHuntPlayer"] = {
levels = {
[1] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, },
- [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 6, }, },
- [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, },
- [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { baseMultiplier = 0.79, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { baseMultiplier = 0.85, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { baseMultiplier = 0.92, levelRequirement = 26, cost = { Mana = 11, }, },
- [9] = { baseMultiplier = 0.98, levelRequirement = 31, cost = { Mana = 12, }, },
- [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 14, }, },
- [11] = { baseMultiplier = 1.13, levelRequirement = 41, cost = { Mana = 15, }, },
- [12] = { baseMultiplier = 1.22, levelRequirement = 46, cost = { Mana = 17, }, },
- [13] = { baseMultiplier = 1.32, levelRequirement = 52, cost = { Mana = 19, }, },
- [14] = { baseMultiplier = 1.43, levelRequirement = 58, cost = { Mana = 21, }, },
- [15] = { baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 23, }, },
- [16] = { baseMultiplier = 1.69, levelRequirement = 66, cost = { Mana = 25, }, },
+ [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 7, }, },
+ [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, },
+ [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { baseMultiplier = 0.79, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { baseMultiplier = 0.85, levelRequirement = 22, cost = { Mana = 11, }, },
+ [8] = { baseMultiplier = 0.92, levelRequirement = 26, cost = { Mana = 12, }, },
+ [9] = { baseMultiplier = 0.98, levelRequirement = 31, cost = { Mana = 14, }, },
+ [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 15, }, },
+ [11] = { baseMultiplier = 1.13, levelRequirement = 41, cost = { Mana = 17, }, },
+ [12] = { baseMultiplier = 1.22, levelRequirement = 46, cost = { Mana = 18, }, },
+ [13] = { baseMultiplier = 1.32, levelRequirement = 52, cost = { Mana = 20, }, },
+ [14] = { baseMultiplier = 1.43, levelRequirement = 58, cost = { Mana = 22, }, },
+ [15] = { baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 24, }, },
+ [16] = { baseMultiplier = 1.69, levelRequirement = 66, cost = { Mana = 26, }, },
[17] = { baseMultiplier = 1.84, levelRequirement = 72, cost = { Mana = 28, }, },
[18] = { baseMultiplier = 2.02, levelRequirement = 78, cost = { Mana = 31, }, },
- [19] = { baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 35, }, },
- [20] = { baseMultiplier = 2.43, levelRequirement = 90, cost = { Mana = 39, }, },
- [21] = { baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 43, }, },
- [22] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 48, }, },
- [23] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 53, }, },
- [24] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 59, }, },
- [25] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 65, }, },
- [26] = { baseMultiplier = 4.31, levelRequirement = 90, cost = { Mana = 72, }, },
- [27] = { baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 80, }, },
- [28] = { baseMultiplier = 5.22, levelRequirement = 90, cost = { Mana = 89, }, },
- [29] = { baseMultiplier = 5.74, levelRequirement = 90, cost = { Mana = 98, }, },
- [30] = { baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 109, }, },
- [31] = { baseMultiplier = 6.95, levelRequirement = 90, cost = { Mana = 121, }, },
- [32] = { baseMultiplier = 7.64, levelRequirement = 90, cost = { Mana = 134, }, },
- [33] = { baseMultiplier = 8.4, levelRequirement = 90, cost = { Mana = 148, }, },
- [34] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 164, }, },
- [35] = { baseMultiplier = 10.17, levelRequirement = 90, cost = { Mana = 182, }, },
- [36] = { baseMultiplier = 11.19, levelRequirement = 90, cost = { Mana = 202, }, },
- [37] = { baseMultiplier = 12.3, levelRequirement = 90, cost = { Mana = 224, }, },
- [38] = { baseMultiplier = 13.54, levelRequirement = 90, cost = { Mana = 248, }, },
- [39] = { baseMultiplier = 14.89, levelRequirement = 90, cost = { Mana = 275, }, },
- [40] = { baseMultiplier = 16.38, levelRequirement = 90, cost = { Mana = 305, }, },
+ [19] = { baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 33, }, },
+ [20] = { baseMultiplier = 2.43, levelRequirement = 90, cost = { Mana = 36, }, },
+ [21] = { baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 39, }, },
+ [22] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 42, }, },
+ [23] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 45, }, },
+ [24] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 49, }, },
+ [25] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 52, }, },
+ [26] = { baseMultiplier = 4.31, levelRequirement = 90, cost = { Mana = 56, }, },
+ [27] = { baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 60, }, },
+ [28] = { baseMultiplier = 5.22, levelRequirement = 90, cost = { Mana = 65, }, },
+ [29] = { baseMultiplier = 5.74, levelRequirement = 90, cost = { Mana = 69, }, },
+ [30] = { baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 74, }, },
+ [31] = { baseMultiplier = 6.95, levelRequirement = 90, cost = { Mana = 79, }, },
+ [32] = { baseMultiplier = 7.64, levelRequirement = 90, cost = { Mana = 85, }, },
+ [33] = { baseMultiplier = 8.4, levelRequirement = 90, cost = { Mana = 91, }, },
+ [34] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 97, }, },
+ [35] = { baseMultiplier = 10.17, levelRequirement = 90, cost = { Mana = 103, }, },
+ [36] = { baseMultiplier = 11.19, levelRequirement = 90, cost = { Mana = 110, }, },
+ [37] = { baseMultiplier = 12.3, levelRequirement = 90, cost = { Mana = 117, }, },
+ [38] = { baseMultiplier = 13.54, levelRequirement = 90, cost = { Mana = 125, }, },
+ [39] = { baseMultiplier = 14.89, levelRequirement = 90, cost = { Mana = 133, }, },
+ [40] = { baseMultiplier = 16.38, levelRequirement = 90, cost = { Mana = 142, }, },
},
statSets = {
[1] = {
@@ -360,6 +360,7 @@ skills["BloodHuntPlayer"] = {
"is_area_damage",
"cannot_cause_bleeding",
"skill_track_enemy_blood_loss",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -416,7 +417,7 @@ skills["BloodHuntPlayer"] = {
constantStats = {
{ "active_skill_base_area_of_effect_radius", 13 },
{ "blood_hunt_skill_area_of_effect_+%_final_per_X_blood_loss_consumed_up_to_500%", 10 },
- { "blood_hunt_explosion_%_blood_loss_to_deal_unscalable", 25 },
+ { "blood_hunt_explosion_%_blood_loss_to_deal_as_life_loss", 25 },
},
stats = {
"blood_hunt_X_blood_loss_consumed_for_skill_area_of_effect_+%_final",
@@ -424,6 +425,7 @@ skills["BloodHuntPlayer"] = {
"is_area_damage",
"cannot_cause_bleeding",
"skill_track_enemy_blood_loss",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
},
@@ -476,53 +478,53 @@ skills["BloodhoundsMarkPlayer"] = {
name = "Bloodhound's Mark",
baseTypeName = "Bloodhound's Mark",
color = 2,
- description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. If they suffer enough Blood Loss while Marked, the Mark is consumed and they will release an explosion of blood when killed or Heavy Stunned. The Mark duration doesn't tick while the Marked target is suffering Blood Loss.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, },
+ description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. If they suffer enough Blood Loss while Marked, the Mark is Consumed and they will release an explosion of blood when killed or Heavy Stunned. The Mark duration doesn't tick while the Marked target is suffering Blood Loss.",
+ skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.5,
qualityStats = {
{ "hunters_mark_%_of_phys_damage_over_time_as_build_up", 2.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 23, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 25, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 27, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 29, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 31, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 33, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 35, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 41, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 50, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 67, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 77, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 117, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 235, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 252, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 271, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 311, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 334, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 23, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 25, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 28, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 31, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 33, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 39, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 49, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 52, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 59, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 63, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 67, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 71, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 79, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 83, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 97, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 107, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 117, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 128, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 146, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 159, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 179, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 194, }, },
},
statSets = {
[1] = {
@@ -535,7 +537,7 @@ skills["BloodhoundsMarkPlayer"] = {
{ "base_skill_effect_duration", 8000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "number_of_marks_allowed_per_type", 1 },
{ "hunters_mark_%_of_max_threshold_to_trigger_explosion_on_death", 5 },
{ "hunters_mark_%_of_phys_damage_over_time_as_build_up", 300 },
@@ -593,7 +595,7 @@ skills["BloodhoundsMarkExplosionPlayer"] = {
name = "Bloodhound's Mark Explosion",
hidden = true,
description = "A violent explosion of blood that deals Attack damage but does not use your weapon's damage.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, },
castTime = 1,
qualityStats = {
},
@@ -661,6 +663,11 @@ skills["BloodhoundsMarkExplosionPlayer"] = {
"replace_main_hand_unarmed_attack_stats_with_nothing_type",
"base_skill_show_average_damage_instead_of_dps",
"cannot_cause_bleeding",
+ "triggerable_in_any_set",
+ },
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
},
levels = {
[1] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 1, },
@@ -715,7 +722,7 @@ skills["CombatFrenzyPlayer"] = {
skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.GeneratesCharges] = true, },
castTime = 1,
qualityStats = {
- { "chance_to_gain_1_more_charge_%", 1 },
+ { "chance_to_gain_1_more_charge_%", 0.5 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -778,46 +785,46 @@ skills["CombatFrenzyPlayer"] = {
"base_deal_no_damage",
},
levels = {
- [1] = { 6000, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 5900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 5800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 5700, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 5600, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 5500, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 5400, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 5300, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 5200, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 5100, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 5000, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 4900, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 4800, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 4600, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 4500, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 4400, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 4300, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 4200, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 4100, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 4000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 3900, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 3800, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 3700, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 3600, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 3500, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 3400, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 3300, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 3200, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 3100, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 3050, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 3000, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 2950, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 2900, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 2850, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 2800, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 2750, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 2700, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 2650, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 2600, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 7900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 7800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7700, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 7600, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7500, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7400, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7300, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7200, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7100, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 7000, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6900, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 6700, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 6600, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 6500, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 6400, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 6300, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 6200, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 6100, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 6000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 5900, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 5800, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 5700, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 5600, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 5500, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 5400, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 5300, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 5200, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 5100, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 5050, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 5000, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 4950, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 4900, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 4850, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 4800, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 4750, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4700, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 4650, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 4600, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -829,11 +836,11 @@ skills["SummonBeastPlayer"] = {
},
color = 2,
description = "Summon a Reviving Beast Companion to aid you in combat.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, },
- minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, },
+ minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, [SkillType.Barrageable] = true, [SkillType.Cascadable] = true, },
castTime = 1,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -947,8 +954,8 @@ skills["CullTheWeakPlayer"] = {
name = "Cull the Weak",
baseTypeName = "Cull the Weak",
color = 2,
- description = "Dash to an enemy and run them through, Culling enemies if their life is low enough. If this Attack kills at least one enemy, it grants you a Frenzy Charge. Enemies around you that can be Culled will be highlighted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.GeneratesCharges] = true, },
+ description = "Dash to an enemy and run them through, Culling enemies if their life is low enough. If this Attack kills at least one enemy, it grants you a Frenzy Charge, with higher Rarity monsters granting additional Charges. Enemies around you that can be Culled will be highlighted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.GeneratesCharges] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -957,46 +964,46 @@ skills["CullTheWeakPlayer"] = {
{ "chance_to_gain_1_more_charge_%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 7, }, },
+ [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 29, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 32, }, },
+ [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 33, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 36, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 40, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 44, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 49, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 54, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 60, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 67, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 74, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 82, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 91, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 101, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 112, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 124, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 137, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 152, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 169, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 187, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 207, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 230, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 255, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 283, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 313, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 347, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 385, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 42, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 46, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 49, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 53, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 57, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 62, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 66, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 71, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 76, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 82, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 88, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 100, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 107, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 114, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 122, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 130, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 139, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 148, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 158, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 168, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 179, }, },
},
statSets = {
[1] = {
@@ -1012,11 +1019,15 @@ skills["CullTheWeakPlayer"] = {
{ "melee_conditional_step_distance", 15 },
{ "base_melee_dash_range", 65 },
{ "active_skill_generic_grace_period_time_ms", 100 },
+ { "skill_grant_X_frenzy_charges_against_normal_and_magic_monsters", 1 },
+ { "skill_grant_X_frenzy_charges_against_rare_monsters", 2 },
+ { "skill_grant_X_frenzy_charges_against_unique_monsters", 3 },
},
stats = {
"kill_enemy_on_hit_if_under_10%_life",
"active_skill_show_cull_range",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1067,56 +1078,56 @@ skills["DetonatingArrowPlayer"] = {
name = "Detonating Arrow",
baseTypeName = "Detonating Arrow",
color = 2,
- description = "Channel to build up power before firing off a burning arrow. At maximum charge, the arrow will detonate at the end of its flight, causing an explosion in an area around it.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Triggerable] = true, [SkillType.Channel] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, },
+ description = "Channel to charge up before firing off a burning arrow. At maximum stages, the arrow will create a Detonating explosion at the end of its flight.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "detonating_arrow_max_number_of_stages", 0.1 },
+ { "detonating_arrow_max_number_of_stages", 0.05 },
},
levels = {
- [1] = { attackSpeedMultiplier = -55, baseMultiplier = 0.44, levelRequirement = 0, cost = { ManaPerMinute = 422, }, },
- [2] = { attackSpeedMultiplier = -55, baseMultiplier = 0.48, levelRequirement = 3, cost = { ManaPerMinute = 467, }, },
- [3] = { attackSpeedMultiplier = -55, baseMultiplier = 0.53, levelRequirement = 6, cost = { ManaPerMinute = 518, }, },
- [4] = { attackSpeedMultiplier = -55, baseMultiplier = 0.58, levelRequirement = 10, cost = { ManaPerMinute = 574, }, },
- [5] = { attackSpeedMultiplier = -55, baseMultiplier = 0.63, levelRequirement = 14, cost = { ManaPerMinute = 636, }, },
- [6] = { attackSpeedMultiplier = -55, baseMultiplier = 0.68, levelRequirement = 18, cost = { ManaPerMinute = 705, }, },
- [7] = { attackSpeedMultiplier = -55, baseMultiplier = 0.73, levelRequirement = 22, cost = { ManaPerMinute = 781, }, },
- [8] = { attackSpeedMultiplier = -55, baseMultiplier = 0.78, levelRequirement = 26, cost = { ManaPerMinute = 865, }, },
- [9] = { attackSpeedMultiplier = -55, baseMultiplier = 0.82, levelRequirement = 31, cost = { ManaPerMinute = 959, }, },
- [10] = { attackSpeedMultiplier = -55, baseMultiplier = 0.87, levelRequirement = 36, cost = { ManaPerMinute = 1062, }, },
- [11] = { attackSpeedMultiplier = -55, baseMultiplier = 0.92, levelRequirement = 41, cost = { ManaPerMinute = 1177, }, },
- [12] = { attackSpeedMultiplier = -55, baseMultiplier = 0.97, levelRequirement = 46, cost = { ManaPerMinute = 1305, }, },
- [13] = { attackSpeedMultiplier = -55, baseMultiplier = 1.03, levelRequirement = 52, cost = { ManaPerMinute = 1446, }, },
- [14] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 58, cost = { ManaPerMinute = 1602, }, },
- [15] = { attackSpeedMultiplier = -55, baseMultiplier = 1.16, levelRequirement = 64, cost = { ManaPerMinute = 1775, }, },
- [16] = { attackSpeedMultiplier = -55, baseMultiplier = 1.24, levelRequirement = 66, cost = { ManaPerMinute = 1967, }, },
- [17] = { attackSpeedMultiplier = -55, baseMultiplier = 1.32, levelRequirement = 72, cost = { ManaPerMinute = 2180, }, },
- [18] = { attackSpeedMultiplier = -55, baseMultiplier = 1.4, levelRequirement = 78, cost = { ManaPerMinute = 2416, }, },
- [19] = { attackSpeedMultiplier = -55, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 2677, }, },
- [20] = { attackSpeedMultiplier = -55, baseMultiplier = 1.59, levelRequirement = 90, cost = { ManaPerMinute = 2966, }, },
- [21] = { attackSpeedMultiplier = -55, baseMultiplier = 1.7, levelRequirement = 90, cost = { ManaPerMinute = 3287, }, },
- [22] = { attackSpeedMultiplier = -55, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 3643, }, },
- [23] = { attackSpeedMultiplier = -55, baseMultiplier = 1.93, levelRequirement = 90, cost = { ManaPerMinute = 4036, }, },
- [24] = { attackSpeedMultiplier = -55, baseMultiplier = 2.06, levelRequirement = 90, cost = { ManaPerMinute = 4473, }, },
- [25] = { attackSpeedMultiplier = -55, baseMultiplier = 2.2, levelRequirement = 90, cost = { ManaPerMinute = 4956, }, },
- [26] = { attackSpeedMultiplier = -55, baseMultiplier = 2.35, levelRequirement = 90, cost = { ManaPerMinute = 5492, }, },
- [27] = { attackSpeedMultiplier = -55, baseMultiplier = 2.5, levelRequirement = 90, cost = { ManaPerMinute = 6086, }, },
- [28] = { attackSpeedMultiplier = -55, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 6744, }, },
- [29] = { attackSpeedMultiplier = -55, baseMultiplier = 2.85, levelRequirement = 90, cost = { ManaPerMinute = 7473, }, },
- [30] = { attackSpeedMultiplier = -55, baseMultiplier = 3.04, levelRequirement = 90, cost = { ManaPerMinute = 8281, }, },
- [31] = { attackSpeedMultiplier = -55, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 9176, }, },
- [32] = { attackSpeedMultiplier = -55, baseMultiplier = 3.46, levelRequirement = 90, cost = { ManaPerMinute = 10168, }, },
- [33] = { attackSpeedMultiplier = -55, baseMultiplier = 3.69, levelRequirement = 90, cost = { ManaPerMinute = 11267, }, },
- [34] = { attackSpeedMultiplier = -55, baseMultiplier = 3.93, levelRequirement = 90, cost = { ManaPerMinute = 12485, }, },
- [35] = { attackSpeedMultiplier = -55, baseMultiplier = 4.19, levelRequirement = 90, cost = { ManaPerMinute = 13835, }, },
- [36] = { attackSpeedMultiplier = -55, baseMultiplier = 4.47, levelRequirement = 90, cost = { ManaPerMinute = 15331, }, },
- [37] = { attackSpeedMultiplier = -55, baseMultiplier = 4.77, levelRequirement = 90, cost = { ManaPerMinute = 16988, }, },
- [38] = { attackSpeedMultiplier = -55, baseMultiplier = 5.09, levelRequirement = 90, cost = { ManaPerMinute = 18824, }, },
- [39] = { attackSpeedMultiplier = -55, baseMultiplier = 5.43, levelRequirement = 90, cost = { ManaPerMinute = 20859, }, },
- [40] = { attackSpeedMultiplier = -55, baseMultiplier = 5.79, levelRequirement = 90, cost = { ManaPerMinute = 23114, }, },
+ [1] = { attackSpeedMultiplier = -55, baseMultiplier = 0.44, levelRequirement = 0, cost = { ManaPerMinute = 409, }, },
+ [2] = { attackSpeedMultiplier = -55, baseMultiplier = 0.48, levelRequirement = 3, cost = { ManaPerMinute = 473, }, },
+ [3] = { attackSpeedMultiplier = -55, baseMultiplier = 0.53, levelRequirement = 6, cost = { ManaPerMinute = 542, }, },
+ [4] = { attackSpeedMultiplier = -55, baseMultiplier = 0.58, levelRequirement = 10, cost = { ManaPerMinute = 616, }, },
+ [5] = { attackSpeedMultiplier = -55, baseMultiplier = 0.63, levelRequirement = 14, cost = { ManaPerMinute = 695, }, },
+ [6] = { attackSpeedMultiplier = -55, baseMultiplier = 0.68, levelRequirement = 18, cost = { ManaPerMinute = 779, }, },
+ [7] = { attackSpeedMultiplier = -55, baseMultiplier = 0.73, levelRequirement = 22, cost = { ManaPerMinute = 869, }, },
+ [8] = { attackSpeedMultiplier = -55, baseMultiplier = 0.78, levelRequirement = 26, cost = { ManaPerMinute = 966, }, },
+ [9] = { attackSpeedMultiplier = -55, baseMultiplier = 0.82, levelRequirement = 31, cost = { ManaPerMinute = 1069, }, },
+ [10] = { attackSpeedMultiplier = -55, baseMultiplier = 0.87, levelRequirement = 36, cost = { ManaPerMinute = 1179, }, },
+ [11] = { attackSpeedMultiplier = -55, baseMultiplier = 0.92, levelRequirement = 41, cost = { ManaPerMinute = 1297, }, },
+ [12] = { attackSpeedMultiplier = -55, baseMultiplier = 0.97, levelRequirement = 46, cost = { ManaPerMinute = 1422, }, },
+ [13] = { attackSpeedMultiplier = -55, baseMultiplier = 1.03, levelRequirement = 52, cost = { ManaPerMinute = 1556, }, },
+ [14] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 58, cost = { ManaPerMinute = 1698, }, },
+ [15] = { attackSpeedMultiplier = -55, baseMultiplier = 1.16, levelRequirement = 64, cost = { ManaPerMinute = 1849, }, },
+ [16] = { attackSpeedMultiplier = -55, baseMultiplier = 1.24, levelRequirement = 66, cost = { ManaPerMinute = 2011, }, },
+ [17] = { attackSpeedMultiplier = -55, baseMultiplier = 1.32, levelRequirement = 72, cost = { ManaPerMinute = 2182, }, },
+ [18] = { attackSpeedMultiplier = -55, baseMultiplier = 1.4, levelRequirement = 78, cost = { ManaPerMinute = 2364, }, },
+ [19] = { attackSpeedMultiplier = -55, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 2558, }, },
+ [20] = { attackSpeedMultiplier = -55, baseMultiplier = 1.59, levelRequirement = 90, cost = { ManaPerMinute = 2764, }, },
+ [21] = { attackSpeedMultiplier = -55, baseMultiplier = 1.7, levelRequirement = 90, cost = { ManaPerMinute = 2983, }, },
+ [22] = { attackSpeedMultiplier = -55, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 3215, }, },
+ [23] = { attackSpeedMultiplier = -55, baseMultiplier = 1.93, levelRequirement = 90, cost = { ManaPerMinute = 3461, }, },
+ [24] = { attackSpeedMultiplier = -55, baseMultiplier = 2.06, levelRequirement = 90, cost = { ManaPerMinute = 3723, }, },
+ [25] = { attackSpeedMultiplier = -55, baseMultiplier = 2.2, levelRequirement = 90, cost = { ManaPerMinute = 4000, }, },
+ [26] = { attackSpeedMultiplier = -55, baseMultiplier = 2.35, levelRequirement = 90, cost = { ManaPerMinute = 4294, }, },
+ [27] = { attackSpeedMultiplier = -55, baseMultiplier = 2.5, levelRequirement = 90, cost = { ManaPerMinute = 4605, }, },
+ [28] = { attackSpeedMultiplier = -55, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 4936, }, },
+ [29] = { attackSpeedMultiplier = -55, baseMultiplier = 2.85, levelRequirement = 90, cost = { ManaPerMinute = 5285, }, },
+ [30] = { attackSpeedMultiplier = -55, baseMultiplier = 3.04, levelRequirement = 90, cost = { ManaPerMinute = 5656, }, },
+ [31] = { attackSpeedMultiplier = -55, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 6048, }, },
+ [32] = { attackSpeedMultiplier = -55, baseMultiplier = 3.46, levelRequirement = 90, cost = { ManaPerMinute = 6464, }, },
+ [33] = { attackSpeedMultiplier = -55, baseMultiplier = 3.69, levelRequirement = 90, cost = { ManaPerMinute = 6903, }, },
+ [34] = { attackSpeedMultiplier = -55, baseMultiplier = 3.93, levelRequirement = 90, cost = { ManaPerMinute = 7368, }, },
+ [35] = { attackSpeedMultiplier = -55, baseMultiplier = 4.19, levelRequirement = 90, cost = { ManaPerMinute = 7860, }, },
+ [36] = { attackSpeedMultiplier = -55, baseMultiplier = 4.47, levelRequirement = 90, cost = { ManaPerMinute = 8380, }, },
+ [37] = { attackSpeedMultiplier = -55, baseMultiplier = 4.77, levelRequirement = 90, cost = { ManaPerMinute = 8930, }, },
+ [38] = { attackSpeedMultiplier = -55, baseMultiplier = 5.09, levelRequirement = 90, cost = { ManaPerMinute = 9512, }, },
+ [39] = { attackSpeedMultiplier = -55, baseMultiplier = 5.43, levelRequirement = 90, cost = { ManaPerMinute = 10126, }, },
+ [40] = { attackSpeedMultiplier = -55, baseMultiplier = 5.79, levelRequirement = 90, cost = { ManaPerMinute = 10776, }, },
},
preDamageFunc = function(activeSkill, output)
activeSkill.skillData.hitTimeMultiplier = activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:DetonatingArrowStage")
@@ -1154,6 +1165,7 @@ skills["DetonatingArrowPlayer"] = {
"skill_can_fire_arrows",
"has_modular_projectiles_enabled",
"attack_speed_modifiers_apply_to_over_time_cost",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1227,6 +1239,7 @@ skills["DetonatingArrowPlayer"] = {
"skill_can_fire_arrows",
"has_modular_projectiles_enabled",
"attack_speed_modifiers_apply_to_over_time_cost",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
},
levels = {
@@ -1240,55 +1253,55 @@ skills["DisengagePlayer"] = {
baseTypeName = "Disengage",
color = 2,
description = "Jump back as you rupture the earth in front of you with spearpoints, damaging enemies. Consumes the Parried Debuff on Hitting enemies to release a shockwave and grant you a Frenzy Charge. This skill can be used while using other skills, and causes Strikes and Projectiles to miss you while jumping. This skill cannot be Ancestrally Boosted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Jumping] = true, [SkillType.Spear] = true, [SkillType.CanCancelActions] = true, [SkillType.Cooldown] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.GeneratesCharges] = true, [SkillType.SkillConsumesParried] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Jumping] = true, [SkillType.Spear] = true, [SkillType.CanCancelActions] = true, [SkillType.Cooldown] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.GeneratesCharges] = true, [SkillType.SkillConsumesParried] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "base_cooldown_speed_+%", 1 },
+ { "disengage_%_chance_for_additional_shockwave", 1 },
},
levels = {
[1] = { baseMultiplier = 0.85, storedUses = 1, levelRequirement = 0, cooldown = 1.5, cost = { Mana = 5, }, },
[2] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 3, cooldown = 1.5, cost = { Mana = 6, }, },
- [3] = { baseMultiplier = 1.03, storedUses = 1, levelRequirement = 6, cooldown = 1.5, cost = { Mana = 6, }, },
- [4] = { baseMultiplier = 1.12, storedUses = 1, levelRequirement = 10, cooldown = 1.5, cost = { Mana = 7, }, },
- [5] = { baseMultiplier = 1.22, storedUses = 1, levelRequirement = 14, cooldown = 1.5, cost = { Mana = 8, }, },
- [6] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 18, cooldown = 1.5, cost = { Mana = 9, }, },
- [7] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 22, cooldown = 1.5, cost = { Mana = 10, }, },
- [8] = { baseMultiplier = 1.5, storedUses = 1, levelRequirement = 26, cooldown = 1.5, cost = { Mana = 11, }, },
- [9] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 31, cooldown = 1.5, cost = { Mana = 12, }, },
- [10] = { baseMultiplier = 1.68, storedUses = 1, levelRequirement = 36, cooldown = 1.5, cost = { Mana = 14, }, },
- [11] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 41, cooldown = 1.5, cost = { Mana = 15, }, },
- [12] = { baseMultiplier = 1.88, storedUses = 1, levelRequirement = 46, cooldown = 1.5, cost = { Mana = 17, }, },
- [13] = { baseMultiplier = 2, storedUses = 1, levelRequirement = 52, cooldown = 1.5, cost = { Mana = 19, }, },
- [14] = { baseMultiplier = 2.12, storedUses = 1, levelRequirement = 58, cooldown = 1.5, cost = { Mana = 21, }, },
- [15] = { baseMultiplier = 2.25, storedUses = 1, levelRequirement = 64, cooldown = 1.5, cost = { Mana = 23, }, },
- [16] = { baseMultiplier = 2.39, storedUses = 1, levelRequirement = 66, cooldown = 1.5, cost = { Mana = 25, }, },
+ [3] = { baseMultiplier = 1.03, storedUses = 1, levelRequirement = 6, cooldown = 1.5, cost = { Mana = 7, }, },
+ [4] = { baseMultiplier = 1.12, storedUses = 1, levelRequirement = 10, cooldown = 1.5, cost = { Mana = 8, }, },
+ [5] = { baseMultiplier = 1.22, storedUses = 1, levelRequirement = 14, cooldown = 1.5, cost = { Mana = 9, }, },
+ [6] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 18, cooldown = 1.5, cost = { Mana = 10, }, },
+ [7] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 22, cooldown = 1.5, cost = { Mana = 11, }, },
+ [8] = { baseMultiplier = 1.5, storedUses = 1, levelRequirement = 26, cooldown = 1.5, cost = { Mana = 12, }, },
+ [9] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 31, cooldown = 1.5, cost = { Mana = 14, }, },
+ [10] = { baseMultiplier = 1.68, storedUses = 1, levelRequirement = 36, cooldown = 1.5, cost = { Mana = 15, }, },
+ [11] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 41, cooldown = 1.5, cost = { Mana = 17, }, },
+ [12] = { baseMultiplier = 1.88, storedUses = 1, levelRequirement = 46, cooldown = 1.5, cost = { Mana = 18, }, },
+ [13] = { baseMultiplier = 2, storedUses = 1, levelRequirement = 52, cooldown = 1.5, cost = { Mana = 20, }, },
+ [14] = { baseMultiplier = 2.12, storedUses = 1, levelRequirement = 58, cooldown = 1.5, cost = { Mana = 22, }, },
+ [15] = { baseMultiplier = 2.25, storedUses = 1, levelRequirement = 64, cooldown = 1.5, cost = { Mana = 24, }, },
+ [16] = { baseMultiplier = 2.39, storedUses = 1, levelRequirement = 66, cooldown = 1.5, cost = { Mana = 26, }, },
[17] = { baseMultiplier = 2.54, storedUses = 1, levelRequirement = 72, cooldown = 1.5, cost = { Mana = 28, }, },
[18] = { baseMultiplier = 2.71, storedUses = 1, levelRequirement = 78, cooldown = 1.5, cost = { Mana = 31, }, },
- [19] = { baseMultiplier = 2.89, storedUses = 1, levelRequirement = 84, cooldown = 1.5, cost = { Mana = 35, }, },
- [20] = { baseMultiplier = 3.08, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 39, }, },
- [21] = { baseMultiplier = 3.28, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 43, }, },
- [22] = { baseMultiplier = 3.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 48, }, },
- [23] = { baseMultiplier = 3.74, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 53, }, },
- [24] = { baseMultiplier = 3.98, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 59, }, },
- [25] = { baseMultiplier = 4.25, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 65, }, },
- [26] = { baseMultiplier = 4.53, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 72, }, },
- [27] = { baseMultiplier = 4.84, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 80, }, },
- [28] = { baseMultiplier = 5.16, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 89, }, },
- [29] = { baseMultiplier = 5.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 98, }, },
- [30] = { baseMultiplier = 5.87, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 109, }, },
- [31] = { baseMultiplier = 6.26, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 121, }, },
- [32] = { baseMultiplier = 6.68, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 134, }, },
- [33] = { baseMultiplier = 7.12, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 148, }, },
- [34] = { baseMultiplier = 7.59, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 164, }, },
- [35] = { baseMultiplier = 8.1, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 182, }, },
- [36] = { baseMultiplier = 8.64, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 202, }, },
- [37] = { baseMultiplier = 9.22, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 224, }, },
- [38] = { baseMultiplier = 9.83, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 248, }, },
- [39] = { baseMultiplier = 10.48, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 275, }, },
- [40] = { baseMultiplier = 11.18, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 305, }, },
+ [19] = { baseMultiplier = 2.89, storedUses = 1, levelRequirement = 84, cooldown = 1.5, cost = { Mana = 33, }, },
+ [20] = { baseMultiplier = 3.08, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 36, }, },
+ [21] = { baseMultiplier = 3.28, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 39, }, },
+ [22] = { baseMultiplier = 3.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 42, }, },
+ [23] = { baseMultiplier = 3.74, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 45, }, },
+ [24] = { baseMultiplier = 3.98, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 49, }, },
+ [25] = { baseMultiplier = 4.25, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 52, }, },
+ [26] = { baseMultiplier = 4.53, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 56, }, },
+ [27] = { baseMultiplier = 4.84, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 60, }, },
+ [28] = { baseMultiplier = 5.16, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 65, }, },
+ [29] = { baseMultiplier = 5.5, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 69, }, },
+ [30] = { baseMultiplier = 5.87, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 74, }, },
+ [31] = { baseMultiplier = 6.26, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 79, }, },
+ [32] = { baseMultiplier = 6.68, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 85, }, },
+ [33] = { baseMultiplier = 7.12, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 91, }, },
+ [34] = { baseMultiplier = 7.59, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 97, }, },
+ [35] = { baseMultiplier = 8.1, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 103, }, },
+ [36] = { baseMultiplier = 8.64, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 110, }, },
+ [37] = { baseMultiplier = 9.22, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 117, }, },
+ [38] = { baseMultiplier = 9.83, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 125, }, },
+ [39] = { baseMultiplier = 10.48, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 133, }, },
+ [40] = { baseMultiplier = 11.18, storedUses = 1, levelRequirement = 90, cooldown = 1.5, cost = { Mana = 142, }, },
},
statSets = {
[1] = {
@@ -1314,6 +1327,7 @@ skills["DisengagePlayer"] = {
stats = {
"is_area_damage",
"base_skill_enabled_while_mounted",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1379,7 +1393,9 @@ skills["DisengagePlayer"] = {
stats = {
"is_area_damage",
"base_skill_enabled_while_mounted",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
+ "quality_hide_display_character_panel",
},
levels = {
[1] = { baseMultiplier = 1.2, actorLevel = 1, },
@@ -1430,56 +1446,56 @@ skills["ElectrocutingArrowPlayer"] = {
name = "Electrocuting Arrow",
baseTypeName = "Electrocuting Arrow",
color = 2,
- description = "Leap forward into the air and fire downward. Hitting an enemy will attach an Electrocuting Rod to them, causing all incoming Lightning damage to build up Electrocution. This rod is removed when the enemy is next Electrocuted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.Jumping] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, },
+ description = "Fire an electrifying arrow that explodes in an Area on Hit. Hitting an enemy will attach an Electrocuting Rod to them, causing all incoming Lightning damage to build up Electrocution. This rod is removed when the enemy is next Electrocuted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.CanBecomeArrowRain] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "base_skill_effect_duration", 300 },
+ { "electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target", 0.5 },
},
levels = {
- [1] = { baseMultiplier = 1.4, levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { baseMultiplier = 1.71, levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { baseMultiplier = 1.87, levelRequirement = 10, cost = { Mana = 16, }, },
- [5] = { baseMultiplier = 2.03, levelRequirement = 14, cost = { Mana = 18, }, },
- [6] = { baseMultiplier = 2.2, levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { baseMultiplier = 2.38, levelRequirement = 22, cost = { Mana = 22, }, },
- [8] = { baseMultiplier = 2.54, levelRequirement = 26, cost = { Mana = 25, }, },
- [9] = { baseMultiplier = 2.7, levelRequirement = 31, cost = { Mana = 28, }, },
- [10] = { baseMultiplier = 2.87, levelRequirement = 36, cost = { Mana = 31, }, },
- [11] = { baseMultiplier = 3.06, levelRequirement = 41, cost = { Mana = 34, }, },
- [12] = { baseMultiplier = 3.26, levelRequirement = 46, cost = { Mana = 38, }, },
- [13] = { baseMultiplier = 3.49, levelRequirement = 52, cost = { Mana = 42, }, },
- [14] = { baseMultiplier = 3.73, levelRequirement = 58, cost = { Mana = 46, }, },
- [15] = { baseMultiplier = 3.99, levelRequirement = 64, cost = { Mana = 51, }, },
- [16] = { baseMultiplier = 4.28, levelRequirement = 66, cost = { Mana = 57, }, },
- [17] = { baseMultiplier = 4.59, levelRequirement = 72, cost = { Mana = 63, }, },
- [18] = { baseMultiplier = 4.93, levelRequirement = 78, cost = { Mana = 70, }, },
- [19] = { baseMultiplier = 5.31, levelRequirement = 84, cost = { Mana = 78, }, },
- [20] = { baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 86, }, },
- [21] = { baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 96, }, },
- [22] = { baseMultiplier = 6.63, levelRequirement = 90, cost = { Mana = 106, }, },
- [23] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 118, }, },
- [24] = { baseMultiplier = 7.7, levelRequirement = 90, cost = { Mana = 130, }, },
- [25] = { baseMultiplier = 8.29, levelRequirement = 90, cost = { Mana = 145, }, },
- [26] = { baseMultiplier = 8.93, levelRequirement = 90, cost = { Mana = 160, }, },
- [27] = { baseMultiplier = 9.63, levelRequirement = 90, cost = { Mana = 178, }, },
- [28] = { baseMultiplier = 10.37, levelRequirement = 90, cost = { Mana = 197, }, },
- [29] = { baseMultiplier = 11.17, levelRequirement = 90, cost = { Mana = 218, }, },
- [30] = { baseMultiplier = 12.03, levelRequirement = 90, cost = { Mana = 242, }, },
- [31] = { baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 268, }, },
- [32] = { baseMultiplier = 13.97, levelRequirement = 90, cost = { Mana = 297, }, },
- [33] = { baseMultiplier = 15.05, levelRequirement = 90, cost = { Mana = 329, }, },
- [34] = { baseMultiplier = 16.21, levelRequirement = 90, cost = { Mana = 365, }, },
- [35] = { baseMultiplier = 17.46, levelRequirement = 90, cost = { Mana = 404, }, },
- [36] = { baseMultiplier = 18.81, levelRequirement = 90, cost = { Mana = 448, }, },
- [37] = { baseMultiplier = 20.27, levelRequirement = 90, cost = { Mana = 497, }, },
- [38] = { baseMultiplier = 21.83, levelRequirement = 90, cost = { Mana = 550, }, },
- [39] = { baseMultiplier = 23.52, levelRequirement = 90, cost = { Mana = 610, }, },
- [40] = { baseMultiplier = 25.34, levelRequirement = 90, cost = { Mana = 676, }, },
+ [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 33, }, },
+ [17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 36, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 42, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 46, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 49, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 53, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 57, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 62, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 66, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 71, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 76, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 82, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 88, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 100, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 107, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 114, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 122, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 130, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 139, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 148, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 158, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 168, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 179, }, },
},
statSets = {
[1] = {
@@ -1497,10 +1513,12 @@ skills["ElectrocutingArrowPlayer"] = {
duration = true,
},
constantStats = {
- { "attack_maximum_action_distance_+", -95 },
{ "base_skill_effect_duration", 25000 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 50 },
- { "total_attack_time_+_ms", 1200 },
+ { "active_skill_base_area_of_effect_radius", 20 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_is_projectile",
@@ -1509,10 +1527,12 @@ skills["ElectrocutingArrowPlayer"] = {
"check_for_targets_between_initiator_and_projectile_source",
"skill_can_fire_arrows",
"has_modular_projectiles_enabled",
- "projectiles_fire_at_ground",
"cannot_pierce",
"base_projectiles_cannot_chain",
"quality_display_base_skill_effect_duration_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "should_use_additive_aiming_animation",
+ "can_perform_skill_while_moving",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1563,8 +1583,8 @@ skills["ElementalSiphonPlayer"] = {
name = "Elemental Siphon",
baseTypeName = "Elemental Siphon",
color = 2,
- description = "Dash to an enemy and nullify their Resistance. Hitting an enemy with positive Elemental Resistance will reduce their highest Elemental Resistance to 0 for a duration and triggers Infuse Weapon, granting your Spear the maximum possible Elemental Infusion corresponding to the removed Resistance. If this skill doesn't remove any Resistances, its cooldown is reset. This skill cannot be Ancestrally Boosted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Spear] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, },
+ description = "Dash to an enemy and nullify their Resistance. Hitting an enemy with positive Elemental Resistance will reduce their highest Elemental Resistance to 0 for a duration and triggers Infuse Weapon, granting your Spear the maximum possible Surges corresponding to the removed Resistance. If this skill doesn't remove any Resistances, its cooldown is reset. This skill cannot be Ancestrally Boosted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Spear] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -1574,44 +1594,44 @@ skills["ElementalSiphonPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.3, cooldown = 8, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.43, cooldown = 8, levelRequirement = 3, cost = { Mana = 10, }, },
- [3] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.58, cooldown = 8, levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.73, cooldown = 8, levelRequirement = 10, cost = { Mana = 12, }, },
- [5] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.89, cooldown = 8, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.21, cooldown = 8, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.36, cooldown = 8, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.51, cooldown = 8, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.67, cooldown = 8, levelRequirement = 36, cost = { Mana = 23, }, },
- [11] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.84, cooldown = 8, levelRequirement = 41, cost = { Mana = 26, }, },
- [12] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 46, cost = { Mana = 29, }, },
- [13] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.24, cooldown = 8, levelRequirement = 52, cost = { Mana = 32, }, },
- [14] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.46, cooldown = 8, levelRequirement = 58, cost = { Mana = 35, }, },
- [15] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.7, cooldown = 8, levelRequirement = 64, cost = { Mana = 39, }, },
- [16] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.97, cooldown = 8, levelRequirement = 66, cost = { Mana = 43, }, },
+ [3] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.58, cooldown = 8, levelRequirement = 6, cost = { Mana = 12, }, },
+ [4] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.73, cooldown = 8, levelRequirement = 10, cost = { Mana = 13, }, },
+ [5] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 1.89, cooldown = 8, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.21, cooldown = 8, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.36, cooldown = 8, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.51, cooldown = 8, levelRequirement = 31, cost = { Mana = 23, }, },
+ [10] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.67, cooldown = 8, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 2.84, cooldown = 8, levelRequirement = 41, cost = { Mana = 28, }, },
+ [12] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 46, cost = { Mana = 31, }, },
+ [13] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.24, cooldown = 8, levelRequirement = 52, cost = { Mana = 34, }, },
+ [14] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.46, cooldown = 8, levelRequirement = 58, cost = { Mana = 37, }, },
+ [15] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.7, cooldown = 8, levelRequirement = 64, cost = { Mana = 41, }, },
+ [16] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 3.97, cooldown = 8, levelRequirement = 66, cost = { Mana = 44, }, },
[17] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.26, cooldown = 8, levelRequirement = 72, cost = { Mana = 48, }, },
- [18] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.58, cooldown = 8, levelRequirement = 78, cost = { Mana = 53, }, },
- [19] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.93, cooldown = 8, levelRequirement = 84, cost = { Mana = 59, }, },
- [20] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 65, }, },
- [21] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.72, cooldown = 8, levelRequirement = 90, cost = { Mana = 73, }, },
- [22] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.16, cooldown = 8, levelRequirement = 90, cost = { Mana = 80, }, },
- [23] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.64, cooldown = 8, levelRequirement = 90, cost = { Mana = 89, }, },
- [24] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.15, cooldown = 8, levelRequirement = 90, cost = { Mana = 99, }, },
- [25] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.7, cooldown = 8, levelRequirement = 90, cost = { Mana = 110, }, },
- [26] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.3, cooldown = 8, levelRequirement = 90, cost = { Mana = 122, }, },
- [27] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.94, cooldown = 8, levelRequirement = 90, cost = { Mana = 135, }, },
- [28] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 9.63, cooldown = 8, levelRequirement = 90, cost = { Mana = 149, }, },
- [29] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 10.37, cooldown = 8, levelRequirement = 90, cost = { Mana = 166, }, },
- [30] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 11.17, cooldown = 8, levelRequirement = 90, cost = { Mana = 184, }, },
- [31] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.04, cooldown = 8, levelRequirement = 90, cost = { Mana = 203, }, },
- [32] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 226, }, },
- [33] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 13.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 250, }, },
- [34] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 15.05, cooldown = 8, levelRequirement = 90, cost = { Mana = 277, }, },
- [35] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 16.21, cooldown = 8, levelRequirement = 90, cost = { Mana = 307, }, },
- [36] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 17.47, cooldown = 8, levelRequirement = 90, cost = { Mana = 340, }, },
- [37] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 18.82, cooldown = 8, levelRequirement = 90, cost = { Mana = 377, }, },
- [38] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 20.27, cooldown = 8, levelRequirement = 90, cost = { Mana = 418, }, },
- [39] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 21.84, cooldown = 8, levelRequirement = 90, cost = { Mana = 463, }, },
- [40] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 23.53, cooldown = 8, levelRequirement = 90, cost = { Mana = 513, }, },
+ [18] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.58, cooldown = 8, levelRequirement = 78, cost = { Mana = 52, }, },
+ [19] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 4.93, cooldown = 8, levelRequirement = 84, cost = { Mana = 56, }, },
+ [20] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 61, }, },
+ [21] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 5.72, cooldown = 8, levelRequirement = 90, cost = { Mana = 66, }, },
+ [22] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.16, cooldown = 8, levelRequirement = 90, cost = { Mana = 71, }, },
+ [23] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 6.64, cooldown = 8, levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.15, cooldown = 8, levelRequirement = 90, cost = { Mana = 82, }, },
+ [25] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 7.7, cooldown = 8, levelRequirement = 90, cost = { Mana = 88, }, },
+ [26] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.3, cooldown = 8, levelRequirement = 90, cost = { Mana = 95, }, },
+ [27] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 8.94, cooldown = 8, levelRequirement = 90, cost = { Mana = 102, }, },
+ [28] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 9.63, cooldown = 8, levelRequirement = 90, cost = { Mana = 109, }, },
+ [29] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 10.37, cooldown = 8, levelRequirement = 90, cost = { Mana = 117, }, },
+ [30] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 11.17, cooldown = 8, levelRequirement = 90, cost = { Mana = 125, }, },
+ [31] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.04, cooldown = 8, levelRequirement = 90, cost = { Mana = 134, }, },
+ [32] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 12.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 143, }, },
+ [33] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 13.97, cooldown = 8, levelRequirement = 90, cost = { Mana = 153, }, },
+ [34] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 15.05, cooldown = 8, levelRequirement = 90, cost = { Mana = 163, }, },
+ [35] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 16.21, cooldown = 8, levelRequirement = 90, cost = { Mana = 174, }, },
+ [36] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 17.47, cooldown = 8, levelRequirement = 90, cost = { Mana = 186, }, },
+ [37] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 18.82, cooldown = 8, levelRequirement = 90, cost = { Mana = 198, }, },
+ [38] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 20.27, cooldown = 8, levelRequirement = 90, cost = { Mana = 211, }, },
+ [39] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 21.84, cooldown = 8, levelRequirement = 90, cost = { Mana = 225, }, },
+ [40] = { attackSpeedMultiplier = -55, storedUses = 1, baseMultiplier = 23.53, cooldown = 8, levelRequirement = 90, cost = { Mana = 239, }, },
},
statSets = {
[1] = {
@@ -1871,7 +1891,7 @@ skills["ElementalSunderingPlayer"] = {
baseTypeName = "Elemental Sundering",
color = 2,
description = "Plunge your Spear into the ground to emit a pulse that Consumes Freeze, Shock and Ignite on a number of nearby enemies, Allies and Corpses. The pulse itself deals no damage, but each Ailment Consumed causes an explosion of the corresponding elemental damage type.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Nova] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Nova] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -1883,43 +1903,43 @@ skills["ElementalSunderingPlayer"] = {
[1] = { attackSpeedMultiplier = -45, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { attackSpeedMultiplier = -45, levelRequirement = 3, cost = { Mana = 8, }, },
[3] = { attackSpeedMultiplier = -45, levelRequirement = 6, cost = { Mana = 9, }, },
- [4] = { attackSpeedMultiplier = -45, levelRequirement = 10, cost = { Mana = 10, }, },
- [5] = { attackSpeedMultiplier = -45, levelRequirement = 14, cost = { Mana = 11, }, },
- [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { attackSpeedMultiplier = -45, levelRequirement = 22, cost = { Mana = 14, }, },
- [8] = { attackSpeedMultiplier = -45, levelRequirement = 26, cost = { Mana = 15, }, },
- [9] = { attackSpeedMultiplier = -45, levelRequirement = 31, cost = { Mana = 17, }, },
- [10] = { attackSpeedMultiplier = -45, levelRequirement = 36, cost = { Mana = 19, }, },
- [11] = { attackSpeedMultiplier = -45, levelRequirement = 41, cost = { Mana = 21, }, },
- [12] = { attackSpeedMultiplier = -45, levelRequirement = 46, cost = { Mana = 23, }, },
- [13] = { attackSpeedMultiplier = -45, levelRequirement = 52, cost = { Mana = 26, }, },
- [14] = { attackSpeedMultiplier = -45, levelRequirement = 58, cost = { Mana = 29, }, },
- [15] = { attackSpeedMultiplier = -45, levelRequirement = 64, cost = { Mana = 32, }, },
- [16] = { attackSpeedMultiplier = -45, levelRequirement = 66, cost = { Mana = 35, }, },
+ [4] = { attackSpeedMultiplier = -45, levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { attackSpeedMultiplier = -45, levelRequirement = 14, cost = { Mana = 12, }, },
+ [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 14, }, },
+ [7] = { attackSpeedMultiplier = -45, levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { attackSpeedMultiplier = -45, levelRequirement = 26, cost = { Mana = 17, }, },
+ [9] = { attackSpeedMultiplier = -45, levelRequirement = 31, cost = { Mana = 19, }, },
+ [10] = { attackSpeedMultiplier = -45, levelRequirement = 36, cost = { Mana = 21, }, },
+ [11] = { attackSpeedMultiplier = -45, levelRequirement = 41, cost = { Mana = 23, }, },
+ [12] = { attackSpeedMultiplier = -45, levelRequirement = 46, cost = { Mana = 25, }, },
+ [13] = { attackSpeedMultiplier = -45, levelRequirement = 52, cost = { Mana = 28, }, },
+ [14] = { attackSpeedMultiplier = -45, levelRequirement = 58, cost = { Mana = 30, }, },
+ [15] = { attackSpeedMultiplier = -45, levelRequirement = 64, cost = { Mana = 33, }, },
+ [16] = { attackSpeedMultiplier = -45, levelRequirement = 66, cost = { Mana = 36, }, },
[17] = { attackSpeedMultiplier = -45, levelRequirement = 72, cost = { Mana = 39, }, },
- [18] = { attackSpeedMultiplier = -45, levelRequirement = 78, cost = { Mana = 43, }, },
- [19] = { attackSpeedMultiplier = -45, levelRequirement = 84, cost = { Mana = 48, }, },
- [20] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 53, }, },
- [21] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 59, }, },
- [22] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 66, }, },
- [23] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 73, }, },
- [24] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 81, }, },
- [25] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 90, }, },
- [26] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 99, }, },
- [27] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 110, }, },
- [28] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 122, }, },
- [29] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 135, }, },
- [30] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 150, }, },
- [31] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 166, }, },
- [32] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 184, }, },
- [33] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 204, }, },
- [34] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 226, }, },
- [35] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 251, }, },
- [36] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 278, }, },
- [37] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 308, }, },
- [38] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 342, }, },
- [39] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 379, }, },
- [40] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 420, }, },
+ [18] = { attackSpeedMultiplier = -45, levelRequirement = 78, cost = { Mana = 42, }, },
+ [19] = { attackSpeedMultiplier = -45, levelRequirement = 84, cost = { Mana = 46, }, },
+ [20] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 50, }, },
+ [21] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 54, }, },
+ [22] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 58, }, },
+ [23] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 62, }, },
+ [24] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 67, }, },
+ [25] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 72, }, },
+ [26] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 78, }, },
+ [27] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 83, }, },
+ [28] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 89, }, },
+ [29] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 96, }, },
+ [30] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 102, }, },
+ [31] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 109, }, },
+ [32] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 117, }, },
+ [33] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 125, }, },
+ [34] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 133, }, },
+ [35] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 142, }, },
+ [36] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 152, }, },
+ [37] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 162, }, },
+ [38] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 172, }, },
+ [39] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 184, }, },
+ [40] = { attackSpeedMultiplier = -45, levelRequirement = 90, cost = { Mana = 195, }, },
},
statSets = {
[1] = {
@@ -1930,7 +1950,7 @@ skills["ElementalSunderingPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 50 },
- { "elemental_sundering_number_of_explosion_allowed", 9 },
+ { "elemental_sundering_number_of_explosion_allowed", 20 },
},
stats = {
"base_deal_no_damage",
@@ -1989,9 +2009,10 @@ skills["ElementalSunderingPlayer"] = {
area = true,
},
constantStats = {
- { "elemental_sundering_number_of_explosion_allowed", 9 },
+ { "elemental_sundering_number_of_explosion_allowed", 20 },
{ "active_skill_base_area_of_effect_radius", 16 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "elemental_sundering_damage_+%_final_if_created_from_unique", 50 },
},
stats = {
"base_skill_show_average_damage_instead_of_dps",
@@ -2000,46 +2021,46 @@ skills["ElementalSunderingPlayer"] = {
"active_skill_never_freeze_shock_ignite",
},
levels = {
- [1] = { baseMultiplier = 2.5, actorLevel = 1, },
- [2] = { baseMultiplier = 2.76, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 3.04, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 3.34, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 3.63, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 3.93, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 4.24, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 4.54, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 4.83, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 5.13, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 5.47, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 5.83, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 6.23, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 6.66, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 7.12, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 7.64, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 8.19, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 8.81, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 9.47, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 10.21, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 11, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 11.85, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 12.76, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 13.75, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 14.81, actorLevel = 136.875, },
- [26] = { baseMultiplier = 15.96, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 17.19, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 18.52, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 19.95, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 21.49, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 23.15, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 24.94, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 26.87, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 28.95, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 31.18, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 33.59, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 36.19, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 38.99, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 42, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 45.25, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 3.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 20.73, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, },
},
},
[3] = {
@@ -2051,7 +2072,7 @@ skills["ElementalSunderingPlayer"] = {
area = true,
},
constantStats = {
- { "elemental_sundering_number_of_explosion_allowed", 9 },
+ { "elemental_sundering_number_of_explosion_allowed", 20 },
{ "active_skill_base_area_of_effect_radius", 16 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
},
@@ -2113,7 +2134,7 @@ skills["ElementalSunderingPlayer"] = {
area = true,
},
constantStats = {
- { "elemental_sundering_number_of_explosion_allowed", 9 },
+ { "elemental_sundering_number_of_explosion_allowed", 20 },
{ "active_skill_base_area_of_effect_radius", 16 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
},
@@ -2172,8 +2193,8 @@ skills["EscapeShotPlayer"] = {
name = "Escape Shot",
baseTypeName = "Escape Shot",
color = 2,
- description = "Leap backwards and fire an arrow which can Chill or Freeze enemies around the location you escaped from.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Cooldown] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, },
+ description = "Leap backwards, firing an icy arrow which can Chill or Freeze enemies around the location from which you escaped. This arrow will create Ice Fragments on impact.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -2184,49 +2205,49 @@ skills["EscapeShotPlayer"] = {
levels = {
[1] = { baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 11, }, },
[2] = { baseMultiplier = 0.72, levelRequirement = 3, cost = { Mana = 12, }, },
- [3] = { baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 13, }, },
- [4] = { baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 17, }, },
- [6] = { baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 19, }, },
- [7] = { baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 21, }, },
- [8] = { baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 23, }, },
- [9] = { baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 25, }, },
- [10] = { baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 28, }, },
- [11] = { baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 35, }, },
- [13] = { baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 39, }, },
- [14] = { baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 43, }, },
- [15] = { baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 47, }, },
- [16] = { baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 53, }, },
+ [3] = { baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 14, }, },
+ [4] = { baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 16, }, },
+ [5] = { baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 18, }, },
+ [6] = { baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 21, }, },
+ [7] = { baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 23, }, },
+ [8] = { baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 26, }, },
+ [9] = { baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 28, }, },
+ [10] = { baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 31, }, },
+ [11] = { baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 35, }, },
+ [12] = { baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 38, }, },
+ [13] = { baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 42, }, },
+ [14] = { baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 45, }, },
+ [15] = { baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 49, }, },
+ [16] = { baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 54, }, },
[17] = { baseMultiplier = 2.13, levelRequirement = 72, cost = { Mana = 58, }, },
- [18] = { baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 65, }, },
- [19] = { baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 72, }, },
- [20] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 80, }, },
- [21] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 88, }, },
- [22] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 98, }, },
- [23] = { baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 108, }, },
- [24] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 120, }, },
- [25] = { baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 133, }, },
- [26] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 148, }, },
- [27] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 164, }, },
- [28] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 182, }, },
- [29] = { baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 201, }, },
- [30] = { baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 223, }, },
- [31] = { baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 247, }, },
- [32] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 274, }, },
- [33] = { baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 304, }, },
- [34] = { baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 336, }, },
- [35] = { baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 373, }, },
- [36] = { baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 413, }, },
- [37] = { baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 458, }, },
- [38] = { baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 508, }, },
- [39] = { baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 563, }, },
- [40] = { baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 623, }, },
+ [18] = { baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 63, }, },
+ [19] = { baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 69, }, },
+ [20] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 74, }, },
+ [21] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 80, }, },
+ [22] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 86, }, },
+ [23] = { baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 93, }, },
+ [24] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 100, }, },
+ [25] = { baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 107, }, },
+ [26] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 115, }, },
+ [27] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 124, }, },
+ [28] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 133, }, },
+ [29] = { baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 142, }, },
+ [30] = { baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 152, }, },
+ [31] = { baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 163, }, },
+ [32] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 174, }, },
+ [33] = { baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 186, }, },
+ [34] = { baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 198, }, },
+ [35] = { baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 212, }, },
+ [36] = { baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 226, }, },
+ [37] = { baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 241, }, },
+ [38] = { baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 256, }, },
+ [39] = { baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 273, }, },
+ [40] = { baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 290, }, },
},
statSets = {
[1] = {
label = "Escape Shot",
- incrementalEffectiveness = 0.092720001935959,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "escape_shot",
baseFlags = {
attack = true,
@@ -2235,7 +2256,7 @@ skills["EscapeShotPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 24 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
{ "total_attack_time_+_ms", 700 },
{ "projectile_distance_override", 20 },
},
@@ -2297,12 +2318,132 @@ skills["EscapeShotPlayer"] = {
},
}
}
+skills["EscapeShotIceFragmentPlayer"] = {
+ name = "Ice Fragments",
+ hidden = true,
+ skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.55, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.6, levelRequirement = 0, },
+ [3] = { baseMultiplier = 0.67, levelRequirement = 0, },
+ [4] = { baseMultiplier = 0.73, levelRequirement = 0, },
+ [5] = { baseMultiplier = 0.78, levelRequirement = 0, },
+ [6] = { baseMultiplier = 0.84, levelRequirement = 0, },
+ [7] = { baseMultiplier = 0.9, levelRequirement = 0, },
+ [8] = { baseMultiplier = 0.96, levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { baseMultiplier = 1.05, levelRequirement = 0, },
+ [11] = { baseMultiplier = 1.11, levelRequirement = 0, },
+ [12] = { baseMultiplier = 1.16, levelRequirement = 0, },
+ [13] = { baseMultiplier = 1.22, levelRequirement = 0, },
+ [14] = { baseMultiplier = 1.28, levelRequirement = 0, },
+ [15] = { baseMultiplier = 1.34, levelRequirement = 0, },
+ [16] = { baseMultiplier = 1.41, levelRequirement = 0, },
+ [17] = { baseMultiplier = 1.48, levelRequirement = 0, },
+ [18] = { baseMultiplier = 1.56, levelRequirement = 0, },
+ [19] = { baseMultiplier = 1.63, levelRequirement = 0, },
+ [20] = { baseMultiplier = 1.72, levelRequirement = 0, },
+ [21] = { baseMultiplier = 1.8, levelRequirement = 0, },
+ [22] = { baseMultiplier = 1.89, levelRequirement = 0, },
+ [23] = { baseMultiplier = 1.99, levelRequirement = 0, },
+ [24] = { baseMultiplier = 2.09, levelRequirement = 0, },
+ [25] = { baseMultiplier = 2.19, levelRequirement = 0, },
+ [26] = { baseMultiplier = 2.3, levelRequirement = 0, },
+ [27] = { baseMultiplier = 2.41, levelRequirement = 0, },
+ [28] = { baseMultiplier = 2.53, levelRequirement = 0, },
+ [29] = { baseMultiplier = 2.66, levelRequirement = 0, },
+ [30] = { baseMultiplier = 2.79, levelRequirement = 0, },
+ [31] = { baseMultiplier = 2.93, levelRequirement = 0, },
+ [32] = { baseMultiplier = 3.08, levelRequirement = 0, },
+ [33] = { baseMultiplier = 3.23, levelRequirement = 0, },
+ [34] = { baseMultiplier = 3.4, levelRequirement = 0, },
+ [35] = { baseMultiplier = 3.57, levelRequirement = 0, },
+ [36] = { baseMultiplier = 3.74, levelRequirement = 0, },
+ [37] = { baseMultiplier = 3.93, levelRequirement = 0, },
+ [38] = { baseMultiplier = 4.13, levelRequirement = 0, },
+ [39] = { baseMultiplier = 4.33, levelRequirement = 0, },
+ [40] = { baseMultiplier = 4.55, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Ice Fragments",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ballistic_ice_projectile",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ area = true,
+ },
+ constantStats = {
+ { "trigger_ballistic_ice_chunk_on_hit_frozen_target", 100 },
+ { "active_skill_base_area_of_effect_radius", 13 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "ballistic_ice_chunk_cone_angle", 360 },
+ { "base_skill_detonation_time", 2500 },
+ { "base_number_of_projectiles", 4 },
+ { "triggered_by_escape_shot_%", 100 },
+ },
+ stats = {
+ "base_is_projectile",
+ "ballistic_projectiles_always_bounce",
+ "triggerable_in_any_set",
+ "usable_while_shapeshifted",
+ "is_area_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["ExplosiveSpearPlayer"] = {
name = "Explosive Spear",
baseTypeName = "Explosive Spear",
color = 2,
description = "Hurl a single payload Spear that pierces through enemies and lodges in terrain where it lands. The Spear will explode at the end of its Detonation Time or if Detonated. Consumes a Frenzy Charge if you have one to explode immediately, dealing more damage in a cross-shaped area and creating Ignited Ground.",
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.CanRapidFire] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, },
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -2315,42 +2456,42 @@ skills["ExplosiveSpearPlayer"] = {
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 5, }, },
[3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 6, }, },
[4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 7, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 8, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 9, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 10, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 11, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 13, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 14, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 16, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 18, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 20, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 22, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 24, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 12, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 13, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 16, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 17, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 21, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 23, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 25, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 27, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 30, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 33, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 37, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 41, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 45, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 50, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 55, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 61, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 68, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 76, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 84, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 93, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 103, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 114, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 126, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 140, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 155, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 172, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 191, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 212, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 235, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 260, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 288, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 29, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 31, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 34, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 37, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 40, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 43, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 46, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 49, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 53, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 57, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 61, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 65, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 70, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 75, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 80, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 86, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 91, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 98, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 104, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 111, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 118, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 126, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 134, }, },
},
statSets = {
[1] = {
@@ -2364,7 +2505,7 @@ skills["ExplosiveSpearPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_remote_spear_mines_allowed", 1 },
{ "base_skill_detonation_time", 2500 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
@@ -2439,10 +2580,11 @@ skills["ExplosiveSpearPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_remote_spear_mines_allowed", 1 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
{ "remote_spear_mine_minimum_target_distance", 10 },
+ { "active_skill_base_area_of_effect_radius", 28 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
},
stats = {
@@ -2515,14 +2657,15 @@ skills["ExplosiveSpearPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_remote_spear_mines_allowed", 1 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
{ "remote_spear_mine_minimum_target_distance", 10 },
+ { "active_skill_base_area_of_effect_radius", 40 },
{ "active_skill_base_secondary_area_of_effect_radius", 15 },
{ "active_skill_base_tertiary_area_of_effect_radius", 20 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
- { "base_skill_effect_duration", 4000 },
+ { "base_skill_effect_duration", 8000 },
},
stats = {
"base_is_projectile",
@@ -2588,56 +2731,56 @@ skills["FangsOfFrostPlayer"] = {
name = "Fangs of Frost",
baseTypeName = "Fangs of Frost",
color = 2,
- description = "Perform an icy stab that exploits enemies who are already off balance. Hitting a Parried target Consumes the Debuff to cause a nova of frost and leave Chilled Ground.",
+ description = "Perform an icy stab that exploits enemies who are already off balance. Hitting a Parried target Consumes the Debuff to cause an explosion of frost and leave Chilled Ground.",
skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.Cold] = true, [SkillType.SkillConsumesParried] = true, [SkillType.CreatesGroundEffect] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "melee_range_+", 0.2 },
+ { "chance_to_not_consume_parried_%", 0.75 },
},
levels = {
[1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 4, }, },
[2] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, levelRequirement = 3, cost = { Mana = 5, }, },
[3] = { attackSpeedMultiplier = -15, baseMultiplier = 1.15, levelRequirement = 6, cost = { Mana = 6, }, },
- [4] = { attackSpeedMultiplier = -15, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 6, }, },
- [5] = { attackSpeedMultiplier = -15, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 7, }, },
- [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 8, }, },
- [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 9, }, },
- [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 10, }, },
- [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 11, }, },
- [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 12, }, },
- [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 13, }, },
- [12] = { attackSpeedMultiplier = -15, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 15, }, },
- [13] = { attackSpeedMultiplier = -15, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 16, }, },
- [14] = { attackSpeedMultiplier = -15, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 18, }, },
- [15] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 20, }, },
+ [4] = { attackSpeedMultiplier = -15, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 7, }, },
+ [5] = { attackSpeedMultiplier = -15, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 8, }, },
+ [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 9, }, },
+ [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 10, }, },
+ [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 11, }, },
+ [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 12, }, },
+ [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 13, }, },
+ [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 15, }, },
+ [12] = { attackSpeedMultiplier = -15, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 16, }, },
+ [13] = { attackSpeedMultiplier = -15, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 18, }, },
+ [14] = { attackSpeedMultiplier = -15, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 19, }, },
+ [15] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 21, }, },
[16] = { attackSpeedMultiplier = -15, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 23, }, },
[17] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, levelRequirement = 72, cost = { Mana = 25, }, },
- [18] = { attackSpeedMultiplier = -15, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 28, }, },
- [19] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 31, }, },
- [20] = { attackSpeedMultiplier = -15, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 34, }, },
- [21] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 38, }, },
- [22] = { attackSpeedMultiplier = -15, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 42, }, },
- [23] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 47, }, },
- [24] = { attackSpeedMultiplier = -15, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 52, }, },
- [25] = { attackSpeedMultiplier = -15, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 58, }, },
- [26] = { attackSpeedMultiplier = -15, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 64, }, },
- [27] = { attackSpeedMultiplier = -15, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 71, }, },
- [28] = { attackSpeedMultiplier = -15, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 79, }, },
- [29] = { attackSpeedMultiplier = -15, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 87, }, },
- [30] = { attackSpeedMultiplier = -15, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 97, }, },
- [31] = { attackSpeedMultiplier = -15, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 107, }, },
- [32] = { attackSpeedMultiplier = -15, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 119, }, },
- [33] = { attackSpeedMultiplier = -15, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 132, }, },
- [34] = { attackSpeedMultiplier = -15, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 146, }, },
- [35] = { attackSpeedMultiplier = -15, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 162, }, },
- [36] = { attackSpeedMultiplier = -15, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 180, }, },
- [37] = { attackSpeedMultiplier = -15, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 199, }, },
- [38] = { attackSpeedMultiplier = -15, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 221, }, },
- [39] = { attackSpeedMultiplier = -15, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 245, }, },
- [40] = { attackSpeedMultiplier = -15, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 271, }, },
+ [18] = { attackSpeedMultiplier = -15, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 27, }, },
+ [19] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 30, }, },
+ [20] = { attackSpeedMultiplier = -15, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 32, }, },
+ [21] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 35, }, },
+ [22] = { attackSpeedMultiplier = -15, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 37, }, },
+ [23] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 40, }, },
+ [24] = { attackSpeedMultiplier = -15, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 43, }, },
+ [25] = { attackSpeedMultiplier = -15, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 46, }, },
+ [26] = { attackSpeedMultiplier = -15, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 50, }, },
+ [27] = { attackSpeedMultiplier = -15, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 54, }, },
+ [28] = { attackSpeedMultiplier = -15, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 57, }, },
+ [29] = { attackSpeedMultiplier = -15, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 62, }, },
+ [30] = { attackSpeedMultiplier = -15, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 66, }, },
+ [31] = { attackSpeedMultiplier = -15, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 71, }, },
+ [32] = { attackSpeedMultiplier = -15, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 75, }, },
+ [33] = { attackSpeedMultiplier = -15, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 81, }, },
+ [34] = { attackSpeedMultiplier = -15, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 86, }, },
+ [35] = { attackSpeedMultiplier = -15, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 92, }, },
+ [36] = { attackSpeedMultiplier = -15, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 98, }, },
+ [37] = { attackSpeedMultiplier = -15, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 104, }, },
+ [38] = { attackSpeedMultiplier = -15, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 111, }, },
+ [39] = { attackSpeedMultiplier = -15, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 118, }, },
+ [40] = { attackSpeedMultiplier = -15, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 126, }, },
},
statSets = {
[1] = {
@@ -2660,6 +2803,7 @@ skills["FangsOfFrostPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"is_area_damage",
"consume_parried_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 50, statInterpolation = { 1, }, actorLevel = 1, },
@@ -2705,7 +2849,7 @@ skills["FangsOfFrostPlayer"] = {
},
},
[2] = {
- label = "Nova",
+ label = "Explosion",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "frostwhirl",
baseFlags = {
@@ -2728,50 +2872,52 @@ skills["FangsOfFrostPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"is_area_damage",
"consume_parried_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"base_skill_show_average_damage_instead_of_dps",
+ "quality_hide_display_character_panel",
},
levels = {
- [1] = { 50, 100, baseMultiplier = 1.1, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 53, 106, baseMultiplier = 1.21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 56, 112, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 59, 118, baseMultiplier = 1.47, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 62, 124, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 65, 130, baseMultiplier = 1.73, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 68, 136, baseMultiplier = 1.87, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 71, 142, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 74, 148, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 77, 154, baseMultiplier = 2.26, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 80, 160, baseMultiplier = 2.41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 83, 166, baseMultiplier = 2.57, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 86, 172, baseMultiplier = 2.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 89, 178, baseMultiplier = 2.93, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 92, 184, baseMultiplier = 3.13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 95, 190, baseMultiplier = 3.36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 98, 196, baseMultiplier = 3.61, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 101, 202, baseMultiplier = 3.87, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 104, 208, baseMultiplier = 4.17, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 107, 214, baseMultiplier = 4.49, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 110, 220, baseMultiplier = 4.84, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 113, 226, baseMultiplier = 5.21, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 116, 232, baseMultiplier = 5.62, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 119, 238, baseMultiplier = 6.05, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 122, 244, baseMultiplier = 6.52, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 125, 250, baseMultiplier = 7.02, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 128, 256, baseMultiplier = 7.56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 131, 262, baseMultiplier = 8.15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 134, 268, baseMultiplier = 8.78, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 137, 274, baseMultiplier = 9.46, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 138, 277, baseMultiplier = 10.19, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 140, 280, baseMultiplier = 10.97, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 141, 283, baseMultiplier = 11.82, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 143, 286, baseMultiplier = 12.74, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 144, 289, baseMultiplier = 13.72, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 146, 292, baseMultiplier = 14.78, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 147, 295, baseMultiplier = 15.92, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 149, 298, baseMultiplier = 17.15, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 150, 301, baseMultiplier = 18.48, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 152, 304, baseMultiplier = 19.91, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 50, 150, baseMultiplier = 1.1, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 53, 159, baseMultiplier = 1.21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 56, 168, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 59, 177, baseMultiplier = 1.47, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 62, 186, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 65, 195, baseMultiplier = 1.73, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 68, 204, baseMultiplier = 1.87, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 71, 213, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 74, 222, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 77, 231, baseMultiplier = 2.26, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 80, 240, baseMultiplier = 2.41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 83, 249, baseMultiplier = 2.57, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 86, 258, baseMultiplier = 2.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 89, 267, baseMultiplier = 2.93, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 92, 276, baseMultiplier = 3.13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 95, 285, baseMultiplier = 3.36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 98, 294, baseMultiplier = 3.61, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 101, 303, baseMultiplier = 3.87, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 104, 312, baseMultiplier = 4.17, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 107, 321, baseMultiplier = 4.49, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 110, 330, baseMultiplier = 4.84, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 113, 339, baseMultiplier = 5.21, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 116, 348, baseMultiplier = 5.62, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 119, 357, baseMultiplier = 6.05, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 122, 366, baseMultiplier = 6.52, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 125, 375, baseMultiplier = 7.02, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 128, 384, baseMultiplier = 7.56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 131, 393, baseMultiplier = 8.15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 134, 402, baseMultiplier = 8.78, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 137, 411, baseMultiplier = 9.46, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 138, 420, baseMultiplier = 10.19, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 140, 429, baseMultiplier = 10.97, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 141, 438, baseMultiplier = 11.82, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 143, 447, baseMultiplier = 12.74, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 144, 456, baseMultiplier = 13.72, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 146, 465, baseMultiplier = 14.78, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 147, 474, baseMultiplier = 15.92, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 149, 483, baseMultiplier = 17.15, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 150, 492, baseMultiplier = 18.48, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 152, 501, baseMultiplier = 19.91, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2780,56 +2926,56 @@ skills["FreezingSalvoPlayer"] = {
name = "Freezing Salvo",
baseTypeName = "Freezing Salvo",
color = 2,
- description = "Passively coalesces icy missiles from the air over time. Using the skill fires a missile, firing an additional missile for each that has been accumulated.",
- skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, },
+ description = "Passively coalesces icy missiles from the air over time. Using the skill fires a missile, firing an additional missile for each that has been accumulated. Fires an additional missile, up to its current missile count, targeting each Ice Fragment in its Area of effect, causing the Fragments to Detonate immediately.",
+ skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "freezing_salvo_seals_gain_base_interval_ms", -10 },
+ { "active_skill_hit_damage_freeze_multiplier_+%_final", 2 },
},
levels = {
- [1] = { baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 16, }, },
- [2] = { baseMultiplier = 0.6, levelRequirement = 3, cost = { Mana = 17, }, },
- [3] = { baseMultiplier = 0.67, levelRequirement = 6, cost = { Mana = 19, }, },
- [4] = { baseMultiplier = 0.73, levelRequirement = 10, cost = { Mana = 21, }, },
- [5] = { baseMultiplier = 0.78, levelRequirement = 14, cost = { Mana = 24, }, },
- [6] = { baseMultiplier = 0.84, levelRequirement = 18, cost = { Mana = 26, }, },
- [7] = { baseMultiplier = 0.9, levelRequirement = 22, cost = { Mana = 29, }, },
- [8] = { baseMultiplier = 0.96, levelRequirement = 26, cost = { Mana = 33, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 36, }, },
- [10] = { baseMultiplier = 1.05, levelRequirement = 36, cost = { Mana = 40, }, },
- [11] = { baseMultiplier = 1.11, levelRequirement = 41, cost = { Mana = 44, }, },
- [12] = { baseMultiplier = 1.16, levelRequirement = 46, cost = { Mana = 49, }, },
- [13] = { baseMultiplier = 1.22, levelRequirement = 52, cost = { Mana = 55, }, },
- [14] = { baseMultiplier = 1.28, levelRequirement = 58, cost = { Mana = 61, }, },
- [15] = { baseMultiplier = 1.34, levelRequirement = 64, cost = { Mana = 67, }, },
- [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 75, }, },
- [17] = { baseMultiplier = 1.48, levelRequirement = 72, cost = { Mana = 83, }, },
- [18] = { baseMultiplier = 1.56, levelRequirement = 78, cost = { Mana = 92, }, },
- [19] = { baseMultiplier = 1.63, levelRequirement = 84, cost = { Mana = 102, }, },
- [20] = { baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 113, }, },
- [21] = { baseMultiplier = 1.8, levelRequirement = 90, cost = { Mana = 125, }, },
- [22] = { baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 138, }, },
- [23] = { baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 153, }, },
- [24] = { baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 170, }, },
- [25] = { baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 188, }, },
- [26] = { baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 209, }, },
- [27] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 232, }, },
- [28] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 257, }, },
- [29] = { baseMultiplier = 2.66, levelRequirement = 90, cost = { Mana = 284, }, },
- [30] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 315, }, },
- [31] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 349, }, },
- [32] = { baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 387, }, },
- [33] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 429, }, },
- [34] = { baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 476, }, },
- [35] = { baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 527, }, },
- [36] = { baseMultiplier = 3.74, levelRequirement = 90, cost = { Mana = 584, }, },
- [37] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 647, }, },
- [38] = { baseMultiplier = 4.13, levelRequirement = 90, cost = { Mana = 717, }, },
- [39] = { baseMultiplier = 4.33, levelRequirement = 90, cost = { Mana = 795, }, },
- [40] = { baseMultiplier = 4.55, levelRequirement = 90, cost = { Mana = 881, }, },
+ [1] = { baseMultiplier = 0.48, levelRequirement = 0, cost = { Mana = 15, }, },
+ [2] = { baseMultiplier = 0.53, levelRequirement = 3, cost = { Mana = 18, }, },
+ [3] = { baseMultiplier = 0.58, levelRequirement = 6, cost = { Mana = 20, }, },
+ [4] = { baseMultiplier = 0.63, levelRequirement = 10, cost = { Mana = 23, }, },
+ [5] = { baseMultiplier = 0.68, levelRequirement = 14, cost = { Mana = 26, }, },
+ [6] = { baseMultiplier = 0.73, levelRequirement = 18, cost = { Mana = 29, }, },
+ [7] = { baseMultiplier = 0.79, levelRequirement = 22, cost = { Mana = 33, }, },
+ [8] = { baseMultiplier = 0.83, levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 40, }, },
+ [10] = { baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 44, }, },
+ [11] = { baseMultiplier = 0.97, levelRequirement = 41, cost = { Mana = 49, }, },
+ [12] = { baseMultiplier = 1.01, levelRequirement = 46, cost = { Mana = 54, }, },
+ [13] = { baseMultiplier = 1.06, levelRequirement = 52, cost = { Mana = 59, }, },
+ [14] = { baseMultiplier = 1.12, levelRequirement = 58, cost = { Mana = 64, }, },
+ [15] = { baseMultiplier = 1.17, levelRequirement = 64, cost = { Mana = 70, }, },
+ [16] = { baseMultiplier = 1.23, levelRequirement = 66, cost = { Mana = 76, }, },
+ [17] = { baseMultiplier = 1.29, levelRequirement = 72, cost = { Mana = 83, }, },
+ [18] = { baseMultiplier = 1.36, levelRequirement = 78, cost = { Mana = 90, }, },
+ [19] = { baseMultiplier = 1.43, levelRequirement = 84, cost = { Mana = 97, }, },
+ [20] = { baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 105, }, },
+ [21] = { baseMultiplier = 1.57, levelRequirement = 90, cost = { Mana = 113, }, },
+ [22] = { baseMultiplier = 1.65, levelRequirement = 90, cost = { Mana = 122, }, },
+ [23] = { baseMultiplier = 1.73, levelRequirement = 90, cost = { Mana = 131, }, },
+ [24] = { baseMultiplier = 1.82, levelRequirement = 90, cost = { Mana = 141, }, },
+ [25] = { baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 152, }, },
+ [26] = { baseMultiplier = 2.01, levelRequirement = 90, cost = { Mana = 163, }, },
+ [27] = { baseMultiplier = 2.11, levelRequirement = 90, cost = { Mana = 175, }, },
+ [28] = { baseMultiplier = 2.21, levelRequirement = 90, cost = { Mana = 188, }, },
+ [29] = { baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 201, }, },
+ [30] = { baseMultiplier = 2.44, levelRequirement = 90, cost = { Mana = 215, }, },
+ [31] = { baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 230, }, },
+ [32] = { baseMultiplier = 2.69, levelRequirement = 90, cost = { Mana = 246, }, },
+ [33] = { baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 263, }, },
+ [34] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 280, }, },
+ [35] = { baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 299, }, },
+ [36] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 319, }, },
+ [37] = { baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 340, }, },
+ [38] = { baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 362, }, },
+ [39] = { baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 386, }, },
+ [40] = { baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 410, }, },
},
statSets = {
[1] = {
@@ -2844,12 +2990,12 @@ skills["FreezingSalvoPlayer"] = {
constantStats = {
{ "base_number_of_projectiles", 1 },
{ "active_skill_base_area_of_effect_radius", 12 },
- { "active_skill_base_secondary_area_of_effect_radius", 20 },
+ { "active_skill_base_secondary_area_of_effect_radius", 30 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "freezing_salvo_maximum_number_of_seals", 12 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "freezing_salvo_maximum_number_of_seals", 10 },
},
stats = {
"freezing_salvo_seals_gain_base_interval_ms",
@@ -2862,46 +3008,46 @@ skills["FreezingSalvoPlayer"] = {
"quality_display_freezing_salvo_is_gem",
},
levels = {
- [1] = { 1050, 50, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1030, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1020, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1010, 59, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 1000, 62, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 980, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 970, 68, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 960, 71, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 940, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 930, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 920, 80, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 900, 83, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 890, 86, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 880, 89, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 870, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 850, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 840, 98, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 830, 101, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 810, 104, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 800, 107, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 790, 110, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 770, 113, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 760, 116, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [1] = { 750, 50, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 750, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 750, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 750, 59, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 750, 62, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 750, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 750, 68, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 750, 71, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 750, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 750, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 750, 80, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 750, 83, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 750, 86, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 750, 89, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 750, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 750, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 750, 98, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 750, 101, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 750, 104, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 750, 107, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 750, 110, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 750, 113, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 750, 116, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
[24] = { 750, 119, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 740, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 720, 125, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 710, 128, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 700, 131, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 680, 134, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 670, 137, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 660, 138, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 640, 140, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 630, 141, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 620, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 610, 144, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 590, 146, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 580, 147, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 570, 149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 550, 150, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 540, 152, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [25] = { 750, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 750, 125, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 750, 128, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 750, 131, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 750, 134, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 750, 137, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 750, 138, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 750, 140, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 750, 141, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 750, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 750, 144, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 750, 146, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 750, 147, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 750, 149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 750, 150, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 750, 152, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2911,7 +3057,7 @@ skills["GasArrowPlayer"] = {
baseTypeName = "Gas Arrow",
color = 2,
description = "Fire a noxious arrow at the ground, creating a cloud of flammable poisonous gas at the end of its flight. The cloud will detonate if hit by a Detonator skill or if an Ignited enemy touches it, creating a fiery explosion.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -2922,44 +3068,44 @@ skills["GasArrowPlayer"] = {
levels = {
[1] = { baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { baseMultiplier = 0.33, levelRequirement = 3, cost = { Mana = 10, }, },
- [3] = { baseMultiplier = 0.36, levelRequirement = 6, cost = { Mana = 11, }, },
+ [3] = { baseMultiplier = 0.36, levelRequirement = 6, cost = { Mana = 12, }, },
[4] = { baseMultiplier = 0.4, levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { baseMultiplier = 0.43, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { baseMultiplier = 0.46, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { baseMultiplier = 0.49, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { baseMultiplier = 0.52, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { baseMultiplier = 0.55, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { baseMultiplier = 0.57, levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { baseMultiplier = 0.6, levelRequirement = 41, cost = { Mana = 26, }, },
- [12] = { baseMultiplier = 0.63, levelRequirement = 46, cost = { Mana = 29, }, },
- [13] = { baseMultiplier = 0.66, levelRequirement = 52, cost = { Mana = 32, }, },
- [14] = { baseMultiplier = 0.7, levelRequirement = 58, cost = { Mana = 36, }, },
- [15] = { baseMultiplier = 0.73, levelRequirement = 64, cost = { Mana = 40, }, },
- [16] = { baseMultiplier = 0.77, levelRequirement = 66, cost = { Mana = 44, }, },
+ [5] = { baseMultiplier = 0.43, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { baseMultiplier = 0.46, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { baseMultiplier = 0.49, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { baseMultiplier = 0.52, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { baseMultiplier = 0.55, levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { baseMultiplier = 0.57, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { baseMultiplier = 0.6, levelRequirement = 41, cost = { Mana = 29, }, },
+ [12] = { baseMultiplier = 0.63, levelRequirement = 46, cost = { Mana = 32, }, },
+ [13] = { baseMultiplier = 0.66, levelRequirement = 52, cost = { Mana = 35, }, },
+ [14] = { baseMultiplier = 0.7, levelRequirement = 58, cost = { Mana = 38, }, },
+ [15] = { baseMultiplier = 0.73, levelRequirement = 64, cost = { Mana = 41, }, },
+ [16] = { baseMultiplier = 0.77, levelRequirement = 66, cost = { Mana = 45, }, },
[17] = { baseMultiplier = 0.81, levelRequirement = 72, cost = { Mana = 49, }, },
- [18] = { baseMultiplier = 0.85, levelRequirement = 78, cost = { Mana = 54, }, },
- [19] = { baseMultiplier = 0.89, levelRequirement = 84, cost = { Mana = 60, }, },
- [20] = { baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 67, }, },
- [21] = { baseMultiplier = 0.98, levelRequirement = 90, cost = { Mana = 74, }, },
- [22] = { baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 82, }, },
- [23] = { baseMultiplier = 1.08, levelRequirement = 90, cost = { Mana = 91, }, },
- [24] = { baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 101, }, },
- [25] = { baseMultiplier = 1.19, levelRequirement = 90, cost = { Mana = 112, }, },
- [26] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 124, }, },
- [27] = { baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 137, }, },
- [28] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 152, }, },
- [29] = { baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 169, }, },
- [30] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 187, }, },
- [31] = { baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 207, }, },
- [32] = { baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 230, }, },
- [33] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 255, }, },
- [34] = { baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 282, }, },
- [35] = { baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 313, }, },
- [36] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 347, }, },
- [37] = { baseMultiplier = 2.14, levelRequirement = 90, cost = { Mana = 384, }, },
- [38] = { baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 426, }, },
- [39] = { baseMultiplier = 2.36, levelRequirement = 90, cost = { Mana = 472, }, },
- [40] = { baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 523, }, },
+ [18] = { baseMultiplier = 0.85, levelRequirement = 78, cost = { Mana = 53, }, },
+ [19] = { baseMultiplier = 0.89, levelRequirement = 84, cost = { Mana = 57, }, },
+ [20] = { baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 62, }, },
+ [21] = { baseMultiplier = 0.98, levelRequirement = 90, cost = { Mana = 67, }, },
+ [22] = { baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 72, }, },
+ [23] = { baseMultiplier = 1.08, levelRequirement = 90, cost = { Mana = 78, }, },
+ [24] = { baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 84, }, },
+ [25] = { baseMultiplier = 1.19, levelRequirement = 90, cost = { Mana = 90, }, },
+ [26] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 97, }, },
+ [27] = { baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 104, }, },
+ [28] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 111, }, },
+ [29] = { baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 119, }, },
+ [30] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 128, }, },
+ [31] = { baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 136, }, },
+ [32] = { baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 146, }, },
+ [33] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 156, }, },
+ [34] = { baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 166, }, },
+ [35] = { baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 177, }, },
+ [36] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 189, }, },
+ [37] = { baseMultiplier = 2.14, levelRequirement = 90, cost = { Mana = 202, }, },
+ [38] = { baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 215, }, },
+ [39] = { baseMultiplier = 2.36, levelRequirement = 90, cost = { Mana = 229, }, },
+ [40] = { baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 243, }, },
},
statSets = {
[1] = {
@@ -3192,8 +3338,8 @@ skills["GlacialLancePlayer"] = {
name = "Glacial Lance",
baseTypeName = "Glacial Lance",
color = 2,
- description = "Throw a single Piercing lance that leaves icy fragments in its wake. The fragments Chill nearby enemies. Consumes a Frenzy Charge if possible to cause the ice fragments created by the first Projectile to explode outwards after a short duration, peppering enemies with shrapnel.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, },
+ description = "Throw a single Piercing lance that leaves icy fragments in its wake. The fragments Chill nearby enemies. Consumes a Frenzy Charge if possible to cause the glacial fragments created by the first Projectile to explode outwards after a short duration, peppering enemies with shrapnel.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -3205,43 +3351,43 @@ skills["GlacialLancePlayer"] = {
[1] = { attackSpeedMultiplier = -50, baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 8, }, },
[2] = { attackSpeedMultiplier = -50, baseMultiplier = 1.43, levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { attackSpeedMultiplier = -50, baseMultiplier = 1.57, levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { attackSpeedMultiplier = -50, baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { attackSpeedMultiplier = -50, baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 14, }, },
- [7] = { attackSpeedMultiplier = -50, baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { attackSpeedMultiplier = -50, baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 17, }, },
- [9] = { attackSpeedMultiplier = -50, baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { attackSpeedMultiplier = -50, baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { attackSpeedMultiplier = -50, baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 23, }, },
- [12] = { attackSpeedMultiplier = -50, baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 26, }, },
- [13] = { attackSpeedMultiplier = -50, baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 28, }, },
- [14] = { attackSpeedMultiplier = -50, baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 32, }, },
- [15] = { attackSpeedMultiplier = -50, baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 35, }, },
- [16] = { attackSpeedMultiplier = -50, baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 39, }, },
+ [4] = { attackSpeedMultiplier = -50, baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 12, }, },
+ [5] = { attackSpeedMultiplier = -50, baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { attackSpeedMultiplier = -50, baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 17, }, },
+ [8] = { attackSpeedMultiplier = -50, baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 19, }, },
+ [9] = { attackSpeedMultiplier = -50, baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 21, }, },
+ [10] = { attackSpeedMultiplier = -50, baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 23, }, },
+ [11] = { attackSpeedMultiplier = -50, baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { attackSpeedMultiplier = -50, baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 28, }, },
+ [13] = { attackSpeedMultiplier = -50, baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 31, }, },
+ [14] = { attackSpeedMultiplier = -50, baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 33, }, },
+ [15] = { attackSpeedMultiplier = -50, baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 37, }, },
+ [16] = { attackSpeedMultiplier = -50, baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 40, }, },
[17] = { attackSpeedMultiplier = -50, baseMultiplier = 3.5, levelRequirement = 72, cost = { Mana = 43, }, },
- [18] = { attackSpeedMultiplier = -50, baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 48, }, },
- [19] = { attackSpeedMultiplier = -50, baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 53, }, },
- [20] = { attackSpeedMultiplier = -50, baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 59, }, },
- [21] = { attackSpeedMultiplier = -50, baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 65, }, },
- [22] = { attackSpeedMultiplier = -50, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 72, }, },
- [23] = { attackSpeedMultiplier = -50, baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 80, }, },
- [24] = { attackSpeedMultiplier = -50, baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 89, }, },
- [25] = { attackSpeedMultiplier = -50, baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 99, }, },
- [26] = { attackSpeedMultiplier = -50, baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 109, }, },
- [27] = { attackSpeedMultiplier = -50, baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 121, }, },
- [28] = { attackSpeedMultiplier = -50, baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 134, }, },
- [29] = { attackSpeedMultiplier = -50, baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 149, }, },
- [30] = { attackSpeedMultiplier = -50, baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 165, }, },
- [31] = { attackSpeedMultiplier = -50, baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 183, }, },
- [32] = { attackSpeedMultiplier = -50, baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 203, }, },
- [33] = { attackSpeedMultiplier = -50, baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 225, }, },
- [34] = { attackSpeedMultiplier = -50, baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 249, }, },
- [35] = { attackSpeedMultiplier = -50, baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 276, }, },
- [36] = { attackSpeedMultiplier = -50, baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 306, }, },
- [37] = { attackSpeedMultiplier = -50, baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 339, }, },
- [38] = { attackSpeedMultiplier = -50, baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 376, }, },
- [39] = { attackSpeedMultiplier = -50, baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 417, }, },
- [40] = { attackSpeedMultiplier = -50, baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 462, }, },
+ [18] = { attackSpeedMultiplier = -50, baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 47, }, },
+ [19] = { attackSpeedMultiplier = -50, baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 51, }, },
+ [20] = { attackSpeedMultiplier = -50, baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 55, }, },
+ [21] = { attackSpeedMultiplier = -50, baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 59, }, },
+ [22] = { attackSpeedMultiplier = -50, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 64, }, },
+ [23] = { attackSpeedMultiplier = -50, baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 69, }, },
+ [24] = { attackSpeedMultiplier = -50, baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 74, }, },
+ [25] = { attackSpeedMultiplier = -50, baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 80, }, },
+ [26] = { attackSpeedMultiplier = -50, baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 85, }, },
+ [27] = { attackSpeedMultiplier = -50, baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 92, }, },
+ [28] = { attackSpeedMultiplier = -50, baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 98, }, },
+ [29] = { attackSpeedMultiplier = -50, baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 105, }, },
+ [30] = { attackSpeedMultiplier = -50, baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 113, }, },
+ [31] = { attackSpeedMultiplier = -50, baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 120, }, },
+ [32] = { attackSpeedMultiplier = -50, baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 129, }, },
+ [33] = { attackSpeedMultiplier = -50, baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 138, }, },
+ [34] = { attackSpeedMultiplier = -50, baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 147, }, },
+ [35] = { attackSpeedMultiplier = -50, baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 157, }, },
+ [36] = { attackSpeedMultiplier = -50, baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 167, }, },
+ [37] = { attackSpeedMultiplier = -50, baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 178, }, },
+ [38] = { attackSpeedMultiplier = -50, baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 190, }, },
+ [39] = { attackSpeedMultiplier = -50, baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 202, }, },
+ [40] = { attackSpeedMultiplier = -50, baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 215, }, },
},
statSets = {
[1] = {
@@ -3260,7 +3406,7 @@ skills["GlacialLancePlayer"] = {
{ "base_secondary_skill_effect_duration", 1000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "minimum_per_projectile_spread_angle_degrees", 30 },
{ "main_hand_weapon_range_+", 105 },
},
@@ -3280,6 +3426,7 @@ skills["GlacialLancePlayer"] = {
"projectiles_cannot_fork",
"projectiles_cannot_return",
"modifiers_to_projectile_count_do_not_apply",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 50, statInterpolation = { 1, }, actorLevel = 1, },
@@ -3340,7 +3487,7 @@ skills["GlacialLancePlayer"] = {
{ "base_secondary_skill_effect_duration", 1000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "minimum_per_projectile_spread_angle_degrees", 30 },
{ "main_hand_weapon_range_+", 105 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 40 },
@@ -3359,6 +3506,7 @@ skills["GlacialLancePlayer"] = {
"quality_display_active_skill_base_secondary_area_of_effect_radius_is_gem",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
"modifiers_to_projectile_count_do_not_apply",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"is_area_damage",
},
@@ -3671,7 +3819,7 @@ skills["HeraldOfThunderPlayer"] = {
},
constantStats = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
- { "active_skill_base_area_of_effect_radius", 14 },
+ { "active_skill_base_area_of_effect_radius", 10 },
},
stats = {
"herald_of_thunder_storm_max_hits",
@@ -3730,7 +3878,7 @@ skills["IceShotPlayer"] = {
baseTypeName = "Ice Shot",
color = 2,
description = "Fire an icy arrow that sprays a cone of ice shards when it hits a target.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Bow] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -3742,43 +3890,43 @@ skills["IceShotPlayer"] = {
[1] = { attackSpeedMultiplier = -10, baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -10, baseMultiplier = 1.05, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -10, baseMultiplier = 1.15, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 23, }, },
- [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 26, }, },
- [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 28, }, },
+ [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.25, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.35, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.56, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.65, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.73, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.82, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 58, cost = { Mana = 24, }, },
+ [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 64, cost = { Mana = 27, }, },
+ [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 29, }, },
[17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.56, levelRequirement = 72, cost = { Mana = 31, }, },
- [18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 35, }, },
- [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 39, }, },
- [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 43, }, },
- [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 48, }, },
- [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 53, }, },
- [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 59, }, },
- [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 65, }, },
- [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 72, }, },
- [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 80, }, },
- [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 89, }, },
- [28] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 98, }, },
- [29] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 109, }, },
- [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 121, }, },
- [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 134, }, },
- [32] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 149, }, },
- [33] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 165, }, },
- [34] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 183, }, },
- [35] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 202, }, },
- [36] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 224, }, },
- [37] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 249, }, },
- [38] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 276, }, },
- [39] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 305, }, },
- [40] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 339, }, },
+ [18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 78, cost = { Mana = 34, }, },
+ [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 43, }, },
+ [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 47, }, },
+ [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 50, }, },
+ [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 58, }, },
+ [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 62, }, },
+ [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 67, }, },
+ [28] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 72, }, },
+ [29] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 77, }, },
+ [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 82, }, },
+ [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 88, }, },
+ [32] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 94, }, },
+ [33] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 101, }, },
+ [34] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 107, }, },
+ [35] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 115, }, },
+ [36] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 122, }, },
+ [37] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 130, }, },
+ [38] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 139, }, },
+ [39] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 148, }, },
+ [40] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 157, }, },
},
statSets = {
[1] = {
@@ -3793,7 +3941,7 @@ skills["IceShotPlayer"] = {
{ "active_skill_chill_effect_+%_final", 50 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 70 },
},
stats = {
@@ -3806,6 +3954,7 @@ skills["IceShotPlayer"] = {
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
"disable_visual_hit_effect",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -3861,7 +4010,7 @@ skills["IceShotPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 70 },
{ "projectile_spread_radius", 45 },
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 30 },
@@ -3873,6 +4022,7 @@ skills["IceShotPlayer"] = {
"check_for_targets_between_initiator_and_projectile_source",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
@@ -3920,12 +4070,251 @@ skills["IceShotPlayer"] = {
},
}
}
+skills["IceTippedArrowsPlayer"] = {
+ name = "Ice-Tipped Arrows",
+ baseTypeName = "Ice-Tipped Arrows",
+ color = 2,
+ description = "Ready your active Bow or Spear, Empowering your next Barrageable Bow or Projectile Spear Attacks to create Ice Fragments on Hit. This Skill's cooldown can be bypassed by expending a Frenzy Charge. Cannot Empower Sustained Skills.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.CannotTerrainChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, },
+ weaponTypes = {
+ ["Spear"] = true,
+ ["Bow"] = true,
+ },
+ castTime = 0.7,
+ qualityStats = {
+ { "base_cooldown_speed_+%", 0.5 },
+ },
+ levels = {
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 12, cost = { Mana = 14, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 12, cost = { Mana = 16, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 12, cost = { Mana = 18, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 12, cost = { Mana = 20, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 12, cost = { Mana = 22, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 12, cost = { Mana = 24, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 12, cost = { Mana = 26, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 12, cost = { Mana = 29, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 12, cost = { Mana = 31, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 12, cost = { Mana = 34, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 12, cost = { Mana = 36, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 12, cost = { Mana = 39, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 12, cost = { Mana = 41, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 12, cost = { Mana = 44, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 12, cost = { Mana = 47, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 12, cost = { Mana = 50, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 12, cost = { Mana = 53, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 12, cost = { Mana = 56, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 12, cost = { Mana = 59, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 63, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 66, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 70, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 73, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 77, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 81, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 85, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 89, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 93, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 97, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 102, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 106, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 111, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 116, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 121, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 126, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 131, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 137, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 142, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 148, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 12, cost = { Mana = 154, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Ice-Tipped Arrows",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "shearing_bolts",
+ baseFlags = {
+ duration = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 8000 },
+ { "shearing_bolts_number_of_empowered_attacks", 4 },
+ },
+ stats = {
+ "can_perform_skill_while_moving",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["IceTippedArrowsIceFragmentPlayer"] = {
+ name = "Ice Fragments",
+ hidden = true,
+ skillTypes = { [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.45, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [2] = { baseMultiplier = 0.49, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [3] = { baseMultiplier = 0.54, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [4] = { baseMultiplier = 0.59, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [5] = { baseMultiplier = 0.64, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [6] = { baseMultiplier = 0.69, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [7] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [8] = { baseMultiplier = 0.77, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [9] = { baseMultiplier = 0.81, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [10] = { baseMultiplier = 0.85, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [11] = { baseMultiplier = 0.89, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [12] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [13] = { baseMultiplier = 0.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [14] = { baseMultiplier = 1.01, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [15] = { baseMultiplier = 1.06, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [16] = { baseMultiplier = 1.1, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [17] = { baseMultiplier = 1.15, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [18] = { baseMultiplier = 1.2, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [19] = { baseMultiplier = 1.25, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [20] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [21] = { baseMultiplier = 1.36, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [22] = { baseMultiplier = 1.42, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [23] = { baseMultiplier = 1.48, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [24] = { baseMultiplier = 1.54, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [25] = { baseMultiplier = 1.6, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [26] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [27] = { baseMultiplier = 1.74, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [28] = { baseMultiplier = 1.81, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [29] = { baseMultiplier = 1.89, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [30] = { baseMultiplier = 1.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [31] = { baseMultiplier = 2.05, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [32] = { baseMultiplier = 2.14, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [33] = { baseMultiplier = 2.23, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [34] = { baseMultiplier = 2.32, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [35] = { baseMultiplier = 2.42, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [36] = { baseMultiplier = 2.52, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [37] = { baseMultiplier = 2.63, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [38] = { baseMultiplier = 2.74, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [39] = { baseMultiplier = 2.85, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ [40] = { baseMultiplier = 2.97, storedUses = 1, levelRequirement = 0, cooldown = 0.3, },
+ },
+ statSets = {
+ [1] = {
+ label = "Ice Fragments",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ballistic_ice_projectile",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ area = true,
+ },
+ constantStats = {
+ { "trigger_ballistic_ice_chunk_on_hit_frozen_target", 100 },
+ { "active_skill_base_area_of_effect_radius", 13 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "ballistic_ice_chunk_cone_angle", 360 },
+ { "base_skill_detonation_time", 2500 },
+ { "base_number_of_projectiles", 3 },
+ { "active_skill_projectile_speed_+%_final", 50 },
+ },
+ stats = {
+ "base_is_projectile",
+ "ballistic_projectiles_always_bounce",
+ "triggerable_in_any_set",
+ "usable_while_shapeshifted",
+ "is_area_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["LightningArrowPlayer"] = {
name = "Lightning Arrow",
baseTypeName = "Lightning Arrow",
color = 2,
description = "Fire a charged arrow at the target. On hitting an enemy or wall, the arrow will fire Chaining Lightning beams at nearby enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.Bow] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -3935,45 +4324,45 @@ skills["LightningArrowPlayer"] = {
},
levels = {
[1] = { attackSpeedMultiplier = -10, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 6, }, },
- [2] = { attackSpeedMultiplier = -10, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 6, }, },
- [3] = { attackSpeedMultiplier = -10, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -10, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -10, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { attackSpeedMultiplier = -10, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 23, }, },
- [15] = { attackSpeedMultiplier = -10, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 26, }, },
+ [2] = { attackSpeedMultiplier = -10, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { attackSpeedMultiplier = -10, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -10, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -10, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -10, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -10, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 21, }, },
+ [13] = { attackSpeedMultiplier = -10, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 23, }, },
+ [14] = { attackSpeedMultiplier = -10, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 25, }, },
+ [15] = { attackSpeedMultiplier = -10, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 27, }, },
[16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 29, }, },
[17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 32, }, },
[18] = { attackSpeedMultiplier = -10, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 35, }, },
- [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 39, }, },
- [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 43, }, },
- [21] = { attackSpeedMultiplier = -10, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 48, }, },
- [22] = { attackSpeedMultiplier = -10, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 53, }, },
- [23] = { attackSpeedMultiplier = -10, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 59, }, },
- [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 66, }, },
- [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 73, }, },
- [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 81, }, },
- [27] = { attackSpeedMultiplier = -10, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 90, }, },
- [28] = { attackSpeedMultiplier = -10, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 99, }, },
- [29] = { attackSpeedMultiplier = -10, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 110, }, },
- [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 122, }, },
- [31] = { attackSpeedMultiplier = -10, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 135, }, },
- [32] = { attackSpeedMultiplier = -10, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 150, }, },
- [33] = { attackSpeedMultiplier = -10, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 166, }, },
- [34] = { attackSpeedMultiplier = -10, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 184, }, },
- [35] = { attackSpeedMultiplier = -10, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 204, }, },
- [36] = { attackSpeedMultiplier = -10, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 227, }, },
- [37] = { attackSpeedMultiplier = -10, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 251, }, },
- [38] = { attackSpeedMultiplier = -10, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 278, }, },
- [39] = { attackSpeedMultiplier = -10, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 308, }, },
- [40] = { attackSpeedMultiplier = -10, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 342, }, },
+ [19] = { attackSpeedMultiplier = -10, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { attackSpeedMultiplier = -10, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { attackSpeedMultiplier = -10, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 44, }, },
+ [22] = { attackSpeedMultiplier = -10, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 47, }, },
+ [23] = { attackSpeedMultiplier = -10, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 51, }, },
+ [24] = { attackSpeedMultiplier = -10, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 55, }, },
+ [25] = { attackSpeedMultiplier = -10, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 59, }, },
+ [26] = { attackSpeedMultiplier = -10, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 63, }, },
+ [27] = { attackSpeedMultiplier = -10, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 68, }, },
+ [28] = { attackSpeedMultiplier = -10, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 73, }, },
+ [29] = { attackSpeedMultiplier = -10, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 78, }, },
+ [30] = { attackSpeedMultiplier = -10, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 83, }, },
+ [31] = { attackSpeedMultiplier = -10, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 89, }, },
+ [32] = { attackSpeedMultiplier = -10, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 95, }, },
+ [33] = { attackSpeedMultiplier = -10, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 102, }, },
+ [34] = { attackSpeedMultiplier = -10, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 109, }, },
+ [35] = { attackSpeedMultiplier = -10, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 116, }, },
+ [36] = { attackSpeedMultiplier = -10, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 124, }, },
+ [37] = { attackSpeedMultiplier = -10, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 132, }, },
+ [38] = { attackSpeedMultiplier = -10, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 141, }, },
+ [39] = { attackSpeedMultiplier = -10, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 150, }, },
+ [40] = { attackSpeedMultiplier = -10, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 159, }, },
},
statSets = {
[1] = {
@@ -3990,7 +4379,7 @@ skills["LightningArrowPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 32 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"lightning_arrow_maximum_number_of_extra_targets",
@@ -4005,6 +4394,7 @@ skills["LightningArrowPlayer"] = {
"should_use_additive_aiming_animation",
"quality_display_lightning_arrow_is_gem",
"beams_chained_to_lightning_rods_have_no_delay",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 2, statInterpolation = { 1, }, actorLevel = 1, },
@@ -4062,7 +4452,7 @@ skills["LightningArrowPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 32 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 },
{ "number_of_chains", 2 },
},
@@ -4078,6 +4468,7 @@ skills["LightningArrowPlayer"] = {
"should_use_additive_aiming_animation",
"quality_display_lightning_arrow_is_gem",
"beams_chained_to_lightning_rods_have_no_delay",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
@@ -4129,55 +4520,55 @@ skills["LightningRodPlayer"] = {
baseTypeName = "Lightning Rod",
color = 2,
description = "Fire an arrow that drops from above, creating a Lightning burst. The arrow remains in the ground, and any Chaining Lightning beams can Chain to it. When Chained to, the arrows charge up for a brief period before releasing another Lightning burst. The Lightning Arrow Skill skips this delay, causing bursts immediately.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.CanRapidFire] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ObjectDurability] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.2 },
+ { "lightning_rod_%_chance_for_additional_burst_on_landing", 1 },
},
levels = {
[1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 4, }, },
[2] = { attackSpeedMultiplier = 20, baseMultiplier = 0.29, levelRequirement = 3, cost = { Mana = 5, }, },
- [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.31, levelRequirement = 6, cost = { Mana = 5, }, },
+ [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.31, levelRequirement = 6, cost = { Mana = 6, }, },
[4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.34, levelRequirement = 10, cost = { Mana = 6, }, },
[5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.37, levelRequirement = 14, cost = { Mana = 7, }, },
- [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.4, levelRequirement = 18, cost = { Mana = 7, }, },
- [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.43, levelRequirement = 22, cost = { Mana = 8, }, },
- [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.46, levelRequirement = 26, cost = { Mana = 9, }, },
- [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.49, levelRequirement = 31, cost = { Mana = 10, }, },
- [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.51, levelRequirement = 36, cost = { Mana = 11, }, },
- [11] = { attackSpeedMultiplier = 20, baseMultiplier = 0.54, levelRequirement = 41, cost = { Mana = 13, }, },
- [12] = { attackSpeedMultiplier = 20, baseMultiplier = 0.58, levelRequirement = 46, cost = { Mana = 14, }, },
- [13] = { attackSpeedMultiplier = 20, baseMultiplier = 0.61, levelRequirement = 52, cost = { Mana = 16, }, },
- [14] = { attackSpeedMultiplier = 20, baseMultiplier = 0.65, levelRequirement = 58, cost = { Mana = 17, }, },
- [15] = { attackSpeedMultiplier = 20, baseMultiplier = 0.69, levelRequirement = 64, cost = { Mana = 19, }, },
- [16] = { attackSpeedMultiplier = 20, baseMultiplier = 0.73, levelRequirement = 66, cost = { Mana = 21, }, },
+ [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.4, levelRequirement = 18, cost = { Mana = 8, }, },
+ [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.43, levelRequirement = 22, cost = { Mana = 9, }, },
+ [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.46, levelRequirement = 26, cost = { Mana = 10, }, },
+ [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.49, levelRequirement = 31, cost = { Mana = 11, }, },
+ [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.51, levelRequirement = 36, cost = { Mana = 13, }, },
+ [11] = { attackSpeedMultiplier = 20, baseMultiplier = 0.54, levelRequirement = 41, cost = { Mana = 14, }, },
+ [12] = { attackSpeedMultiplier = 20, baseMultiplier = 0.58, levelRequirement = 46, cost = { Mana = 15, }, },
+ [13] = { attackSpeedMultiplier = 20, baseMultiplier = 0.61, levelRequirement = 52, cost = { Mana = 17, }, },
+ [14] = { attackSpeedMultiplier = 20, baseMultiplier = 0.65, levelRequirement = 58, cost = { Mana = 18, }, },
+ [15] = { attackSpeedMultiplier = 20, baseMultiplier = 0.69, levelRequirement = 64, cost = { Mana = 20, }, },
+ [16] = { attackSpeedMultiplier = 20, baseMultiplier = 0.73, levelRequirement = 66, cost = { Mana = 22, }, },
[17] = { attackSpeedMultiplier = 20, baseMultiplier = 0.78, levelRequirement = 72, cost = { Mana = 24, }, },
[18] = { attackSpeedMultiplier = 20, baseMultiplier = 0.83, levelRequirement = 78, cost = { Mana = 26, }, },
- [19] = { attackSpeedMultiplier = 20, baseMultiplier = 0.88, levelRequirement = 84, cost = { Mana = 29, }, },
- [20] = { attackSpeedMultiplier = 20, baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 32, }, },
- [21] = { attackSpeedMultiplier = 20, levelRequirement = 90, cost = { Mana = 36, }, },
- [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 40, }, },
- [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 44, }, },
- [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 90, cost = { Mana = 49, }, },
- [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 55, }, },
- [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 61, }, },
- [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.48, levelRequirement = 90, cost = { Mana = 67, }, },
- [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 74, }, },
- [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 83, }, },
- [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 92, }, },
- [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 101, }, },
- [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 113, }, },
- [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 125, }, },
- [34] = { attackSpeedMultiplier = 20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 138, }, },
- [35] = { attackSpeedMultiplier = 20, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 153, }, },
- [36] = { attackSpeedMultiplier = 20, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 170, }, },
- [37] = { attackSpeedMultiplier = 20, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 188, }, },
- [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 209, }, },
- [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 231, }, },
- [40] = { attackSpeedMultiplier = 20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 256, }, },
+ [19] = { attackSpeedMultiplier = 20, baseMultiplier = 0.88, levelRequirement = 84, cost = { Mana = 28, }, },
+ [20] = { attackSpeedMultiplier = 20, baseMultiplier = 0.94, levelRequirement = 90, cost = { Mana = 30, }, },
+ [21] = { attackSpeedMultiplier = 20, levelRequirement = 90, cost = { Mana = 33, }, },
+ [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 35, }, },
+ [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.14, levelRequirement = 90, cost = { Mana = 38, }, },
+ [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 90, cost = { Mana = 41, }, },
+ [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 44, }, },
+ [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 47, }, },
+ [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.48, levelRequirement = 90, cost = { Mana = 51, }, },
+ [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 54, }, },
+ [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.68, levelRequirement = 90, cost = { Mana = 58, }, },
+ [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 62, }, },
+ [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 67, }, },
+ [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 71, }, },
+ [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 76, }, },
+ [34] = { attackSpeedMultiplier = 20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 81, }, },
+ [35] = { attackSpeedMultiplier = 20, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 87, }, },
+ [36] = { attackSpeedMultiplier = 20, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 93, }, },
+ [37] = { attackSpeedMultiplier = 20, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 99, }, },
+ [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 105, }, },
+ [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 112, }, },
+ [40] = { attackSpeedMultiplier = 20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 119, }, },
},
statSets = {
[1] = {
@@ -4197,7 +4588,7 @@ skills["LightningRodPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "number_of_lightning_rods_allowed", 20 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "lightning_rod_number_of_chains_allowed", 8 },
},
stats = {
@@ -4258,7 +4649,7 @@ skills["LightningSpearPlayer"] = {
baseTypeName = "Lightning Spear",
color = 2,
description = "Throw a single copy of your spear. When it hits an enemy it bursts, firing secondary lightning bolt Projectiles at multiple other enemies within a large area around it. Consumes a Frenzy Charge if possible to cause the main spear to split into multiple copies on impact, each of which then bursts.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -4267,46 +4658,46 @@ skills["LightningSpearPlayer"] = {
{ "base_number_of_projectiles", 0.1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 7, }, },
+ [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 29, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 32, }, },
+ [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 33, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 36, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 40, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 44, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 49, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 60, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 67, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 74, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 82, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 91, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 101, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 112, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 124, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 137, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 152, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 169, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 187, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 207, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 230, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 255, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 283, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 313, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 347, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 385, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 42, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 46, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 49, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 53, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 57, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 62, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 66, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 71, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 76, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 82, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 88, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 100, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 107, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 114, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 122, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 130, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 139, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 148, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 158, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 168, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 179, }, },
},
statSets = {
[1] = {
@@ -4335,8 +4726,7 @@ skills["LightningSpearPlayer"] = {
{ "active_skill_shock_chance_+%_final", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "lightning_spear_damage_+%_final_when_charged", 50 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "lightning_spear_additional_number_to_split_when_charged", 3 },
{ "main_hand_weapon_range_+", 105 },
},
@@ -4354,6 +4744,7 @@ skills["LightningSpearPlayer"] = {
"projectiles_cannot_fork",
"projectiles_cannot_return",
"projectiles_can_split_from_terrain",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4413,14 +4804,14 @@ skills["LightningSpearPlayer"] = {
{ "active_skill_shock_chance_+%_final", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "lightning_spear_additional_number_to_split_when_charged", 3 },
{ "main_hand_weapon_range_+", 105 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "active_skill_shock_chance_+%_final", 100 },
+ { "base_number_of_projectiles", 5 },
},
stats = {
- "base_number_of_projectiles",
"base_is_projectile",
"projectile_uses_contact_position",
"projectile_uses_contact_direction",
@@ -4428,49 +4819,50 @@ skills["LightningSpearPlayer"] = {
"skill_display_projectile_total_is_limit",
"can_perform_skill_while_moving",
"quality_display_base_number_of_projectiles_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"projectiles_cannot_split",
},
levels = {
- [1] = { 3, baseMultiplier = 0.75, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 3, baseMultiplier = 0.82, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, baseMultiplier = 0.91, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 4, baseMultiplier = 0.99, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 4, baseMultiplier = 1.07, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 4, baseMultiplier = 1.15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 5, baseMultiplier = 1.23, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 5, baseMultiplier = 1.3, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 5, baseMultiplier = 1.37, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 5, baseMultiplier = 1.44, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 6, baseMultiplier = 1.51, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 6, baseMultiplier = 1.58, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 6, baseMultiplier = 1.66, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 6, baseMultiplier = 1.75, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 6, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 7, baseMultiplier = 1.92, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 7, baseMultiplier = 2.02, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 7, baseMultiplier = 2.12, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 7, baseMultiplier = 2.23, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 8, baseMultiplier = 2.34, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 8, baseMultiplier = 2.46, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 8, baseMultiplier = 2.58, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 8, baseMultiplier = 2.71, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 9, baseMultiplier = 2.84, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 9, baseMultiplier = 2.99, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 9, baseMultiplier = 3.13, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 9, baseMultiplier = 3.29, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 9, baseMultiplier = 3.46, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 10, baseMultiplier = 3.63, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 10, baseMultiplier = 3.81, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 10, baseMultiplier = 4, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 10, baseMultiplier = 4.2, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 10, baseMultiplier = 4.41, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 10, baseMultiplier = 4.63, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 10, baseMultiplier = 4.86, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 11, baseMultiplier = 5.11, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 11, baseMultiplier = 5.36, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 11, baseMultiplier = 5.63, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 11, baseMultiplier = 5.91, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 11, baseMultiplier = 6.21, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.75, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.15, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.23, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.3, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.37, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.51, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.58, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.66, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.75, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.83, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.92, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 2.02, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 2.12, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.23, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.34, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 2.46, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.58, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.71, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.84, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.99, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 3.13, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 3.29, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.46, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.63, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 3.81, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 4, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 4.2, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 4.41, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 4.63, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 4.86, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 5.11, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 5.36, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 5.63, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 5.91, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 6.21, actorLevel = 288.29998779297, },
},
},
}
@@ -4480,7 +4872,7 @@ skills["MagneticSalvoPlayer"] = {
baseTypeName = "Magnetic Salvo",
color = 2,
description = "Aim skyward and fires energy missiles at lingering bolts or arrows created by other Lightning Attacks in front of you. The missiles explode if they land close to a lingering bolt or arrow, dealing more damage in a larger area but destroying that bolt or arrow in the process.",
- skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, },
+ skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -4491,44 +4883,44 @@ skills["MagneticSalvoPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -50, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 24, }, },
[2] = { attackSpeedMultiplier = -50, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 27, }, },
- [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 30, }, },
- [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 33, }, },
- [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 37, }, },
- [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 41, }, },
- [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 45, }, },
- [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 50, }, },
- [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 56, }, },
- [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 62, }, },
- [11] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 69, }, },
- [12] = { attackSpeedMultiplier = -50, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 76, }, },
- [13] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 84, }, },
- [14] = { attackSpeedMultiplier = -50, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 93, }, },
- [15] = { attackSpeedMultiplier = -50, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 104, }, },
- [16] = { attackSpeedMultiplier = -50, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 115, }, },
- [17] = { attackSpeedMultiplier = -50, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 127, }, },
- [18] = { attackSpeedMultiplier = -50, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 141, }, },
- [19] = { attackSpeedMultiplier = -50, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 157, }, },
- [20] = { attackSpeedMultiplier = -50, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 174, }, },
- [21] = { attackSpeedMultiplier = -50, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 192, }, },
- [22] = { attackSpeedMultiplier = -50, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 213, }, },
- [23] = { attackSpeedMultiplier = -50, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 236, }, },
- [24] = { attackSpeedMultiplier = -50, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 262, }, },
- [25] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 290, }, },
- [26] = { attackSpeedMultiplier = -50, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 322, }, },
- [27] = { attackSpeedMultiplier = -50, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 356, }, },
- [28] = { attackSpeedMultiplier = -50, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 395, }, },
- [29] = { attackSpeedMultiplier = -50, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 438, }, },
- [30] = { attackSpeedMultiplier = -50, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 485, }, },
- [31] = { attackSpeedMultiplier = -50, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 538, }, },
- [32] = { attackSpeedMultiplier = -50, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 596, }, },
- [33] = { attackSpeedMultiplier = -50, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 660, }, },
- [34] = { attackSpeedMultiplier = -50, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 732, }, },
- [35] = { attackSpeedMultiplier = -50, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 811, }, },
- [36] = { attackSpeedMultiplier = -50, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 899, }, },
- [37] = { attackSpeedMultiplier = -50, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 996, }, },
- [38] = { attackSpeedMultiplier = -50, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 1104, }, },
- [39] = { attackSpeedMultiplier = -50, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 1223, }, },
- [40] = { attackSpeedMultiplier = -50, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 1355, }, },
+ [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 31, }, },
+ [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 36, }, },
+ [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 40, }, },
+ [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 45, }, },
+ [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 51, }, },
+ [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 56, }, },
+ [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 62, }, },
+ [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 69, }, },
+ [11] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 76, }, },
+ [12] = { attackSpeedMultiplier = -50, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 83, }, },
+ [13] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 91, }, },
+ [14] = { attackSpeedMultiplier = -50, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 99, }, },
+ [15] = { attackSpeedMultiplier = -50, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 108, }, },
+ [16] = { attackSpeedMultiplier = -50, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 117, }, },
+ [17] = { attackSpeedMultiplier = -50, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 128, }, },
+ [18] = { attackSpeedMultiplier = -50, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 138, }, },
+ [19] = { attackSpeedMultiplier = -50, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 150, }, },
+ [20] = { attackSpeedMultiplier = -50, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 162, }, },
+ [21] = { attackSpeedMultiplier = -50, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 175, }, },
+ [22] = { attackSpeedMultiplier = -50, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 188, }, },
+ [23] = { attackSpeedMultiplier = -50, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 203, }, },
+ [24] = { attackSpeedMultiplier = -50, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 218, }, },
+ [25] = { attackSpeedMultiplier = -50, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 234, }, },
+ [26] = { attackSpeedMultiplier = -50, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 251, }, },
+ [27] = { attackSpeedMultiplier = -50, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 270, }, },
+ [28] = { attackSpeedMultiplier = -50, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 289, }, },
+ [29] = { attackSpeedMultiplier = -50, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 310, }, },
+ [30] = { attackSpeedMultiplier = -50, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 331, }, },
+ [31] = { attackSpeedMultiplier = -50, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 354, }, },
+ [32] = { attackSpeedMultiplier = -50, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 379, }, },
+ [33] = { attackSpeedMultiplier = -50, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 405, }, },
+ [34] = { attackSpeedMultiplier = -50, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 432, }, },
+ [35] = { attackSpeedMultiplier = -50, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 461, }, },
+ [36] = { attackSpeedMultiplier = -50, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 491, }, },
+ [37] = { attackSpeedMultiplier = -50, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 523, }, },
+ [38] = { attackSpeedMultiplier = -50, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 558, }, },
+ [39] = { attackSpeedMultiplier = -50, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 594, }, },
+ [40] = { attackSpeedMultiplier = -50, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 632, }, },
},
statSets = {
[1] = {
@@ -4658,11 +5050,556 @@ skills["MagneticSalvoPlayer"] = {
},
}
}
+skills["MetaMirageArcherPlayer"] = {
+ name = "Mirage Archer",
+ baseTypeName = "Mirage Archer",
+ color = 2,
+ description = "While active, dodge rolling will create a Mirage that uses socketed ranged Attacks for a short duration, then vanish. You cannot create another Mirage while one exists, or for a short time after one vanishes. Dodge rolling while you are unable to create a new Mirage will restart this timer.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Meta] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, },
+ weaponTypes = {
+ ["Spear"] = true,
+ ["Crossbow"] = true,
+ ["Bow"] = true,
+ },
+ castTime = 0,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { spiritReservationFlat = 60, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 60, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 60, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 60, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 60, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 60, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 60, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 60, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 60, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 60, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 60, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 60, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 60, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 60, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 60, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 60, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 60, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 60, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 60, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Mirage Archer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "lingering_mirage",
+ baseFlags = {
+ },
+ stats = {
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["SupportMirageArcherPlayer"] = {
+ name = "SupportMirageArcherPlayer",
+ hidden = true,
+ support = true,
+ requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, },
+ addSkillTypes = { },
+ excludeSkillTypes = { SkillType.HasUsageCondition, },
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "SupportMirageArcherPlayer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_gem_stat_descriptions",
+ baseFlags = {
+ },
+ constantStats = {
+ { "support_lingering_mirage_damage_+%_final", -30 },
+ { "skill_disabled_unless_cloned", 1 },
+ },
+ stats = {
+ "cannot_consume_power_frenzy_endurance_charges",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["MirageArcherSpawnPlayer"] = {
+ name = "",
+ hidden = true,
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, },
+ weaponTypes = {
+ ["Spear"] = true,
+ ["Crossbow"] = true,
+ ["Bow"] = true,
+ },
+ castTime = 0,
+ qualityStats = {
+ { "base_skill_effect_duration", 50 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Mirage",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "create_mirage",
+ baseFlags = {
+ },
+ constantStats = {
+ { "base_lingering_mirage_cooldown_ms", 6000 },
+ },
+ stats = {
+ "base_skill_effect_duration",
+ "triggered_by_lingering_mirage",
+ "hide_minion_frame",
+ "quality_display_lingering_mirage_is_gem",
+ "base_deal_no_damage_over_time",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 4050, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4150, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4200, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4250, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4300, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 4350, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 4400, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 4450, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 4500, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 4550, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 4600, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 4650, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 4750, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 4800, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 4850, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 4900, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 4950, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 5000, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 5050, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 5100, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 5150, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 5200, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 5250, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 5300, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 5350, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 5400, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 5450, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 5500, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 5550, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 5600, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 5650, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 5700, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 5750, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 5800, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 5850, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 5900, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 5950, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 6000, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["PhantasmalArrowPlayer"] = {
+ name = "Phantasmal Arrow",
+ baseTypeName = "Phantasmal Arrow",
+ color = 2,
+ description = "Fires an arrow that embeds where it lands for a short duration. At the end of the duration, the arrow explodes in spectral flame, turning it to ashes and damaging enemies, with a high chance to Ignite. Igniting any enemy with the Explosion also applies Ignite to enemies within range.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
+ weaponTypes = {
+ ["Bow"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_ignite_chance_+%_final", 5 },
+ },
+ levels = {
+ [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -30, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -30, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -30, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -30, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -30, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -30, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -30, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -30, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 21, }, },
+ [13] = { attackSpeedMultiplier = -30, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 23, }, },
+ [14] = { attackSpeedMultiplier = -30, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 25, }, },
+ [15] = { attackSpeedMultiplier = -30, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 27, }, },
+ [16] = { attackSpeedMultiplier = -30, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 29, }, },
+ [17] = { attackSpeedMultiplier = -30, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 32, }, },
+ [18] = { attackSpeedMultiplier = -30, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 35, }, },
+ [19] = { attackSpeedMultiplier = -30, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { attackSpeedMultiplier = -30, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { attackSpeedMultiplier = -30, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 44, }, },
+ [22] = { attackSpeedMultiplier = -30, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 47, }, },
+ [23] = { attackSpeedMultiplier = -30, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 51, }, },
+ [24] = { attackSpeedMultiplier = -30, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 55, }, },
+ [25] = { attackSpeedMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 59, }, },
+ [26] = { attackSpeedMultiplier = -30, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 63, }, },
+ [27] = { attackSpeedMultiplier = -30, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 68, }, },
+ [28] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 73, }, },
+ [29] = { attackSpeedMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 78, }, },
+ [30] = { attackSpeedMultiplier = -30, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 83, }, },
+ [31] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 89, }, },
+ [32] = { attackSpeedMultiplier = -30, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 95, }, },
+ [33] = { attackSpeedMultiplier = -30, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 102, }, },
+ [34] = { attackSpeedMultiplier = -30, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 109, }, },
+ [35] = { attackSpeedMultiplier = -30, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 116, }, },
+ [36] = { attackSpeedMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 124, }, },
+ [37] = { attackSpeedMultiplier = -30, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 132, }, },
+ [38] = { attackSpeedMultiplier = -30, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 141, }, },
+ [39] = { attackSpeedMultiplier = -30, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 150, }, },
+ [40] = { attackSpeedMultiplier = -30, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 159, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Arrow",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ghostfuse_arrow",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ duration = true,
+ },
+ constantStats = {
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 20 },
+ { "base_skill_effect_duration", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "skill_can_fire_arrows",
+ "has_modular_projectiles_enabled",
+ "can_perform_skill_while_moving",
+ "should_use_additive_aiming_animation",
+ "projectiles_fire_at_ground",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Explosion",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ghostfuse_arrow",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 20 },
+ { "base_skill_effect_duration", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
+ { "active_skill_ignite_chance_+%_final", 200 },
+ { "active_skill_ignite_proliferation_radius", 18 },
+ },
+ stats = {
+ "active_skill_base_area_of_effect_radius",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "skill_can_fire_arrows",
+ "has_modular_projectiles_enabled",
+ "can_perform_skill_while_moving",
+ "should_use_additive_aiming_animation",
+ "projectiles_fire_at_ground",
+ "is_area_damage",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { 15, baseMultiplier = 1.2, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 15, baseMultiplier = 1.32, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 16, baseMultiplier = 1.45, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 16, baseMultiplier = 1.58, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 17, baseMultiplier = 1.71, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 17, baseMultiplier = 1.84, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 18, baseMultiplier = 1.97, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 18, baseMultiplier = 2.08, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 19, baseMultiplier = 2.19, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 19, baseMultiplier = 2.3, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 20, baseMultiplier = 2.41, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 20, baseMultiplier = 2.53, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 21, baseMultiplier = 2.66, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 21, baseMultiplier = 2.79, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 22, baseMultiplier = 2.93, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 22, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 23, baseMultiplier = 3.23, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 23, baseMultiplier = 3.39, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 24, baseMultiplier = 3.56, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 24, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 25, baseMultiplier = 3.93, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 25, baseMultiplier = 4.13, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 26, baseMultiplier = 4.33, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 26, baseMultiplier = 4.55, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 27, baseMultiplier = 4.78, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 27, baseMultiplier = 5.02, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 28, baseMultiplier = 5.27, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 28, baseMultiplier = 5.53, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 29, baseMultiplier = 5.81, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 29, baseMultiplier = 6.1, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 30, baseMultiplier = 6.4, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 30, baseMultiplier = 6.72, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 31, baseMultiplier = 7.06, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 31, baseMultiplier = 7.41, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 32, baseMultiplier = 7.78, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 32, baseMultiplier = 8.17, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 33, baseMultiplier = 8.58, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 33, baseMultiplier = 9.01, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 34, baseMultiplier = 9.46, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 34, baseMultiplier = 9.93, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["PlagueBearerPlayer"] = {
name = "Plague Bearer",
baseTypeName = "Plague Bearer",
color = 2,
- description = "While active, stores all Poison Damage you deal. Using the Plague Nova skill unleashes the stored Poison.",
+ description = "While active, stores a portion of the Poison Damage you deal. Using this Skill unleashes the stored Poison to damage and Poison enemies around you.",
skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, },
castTime = 0,
qualityStats = {
@@ -4775,10 +5712,9 @@ skills["PlagueBearerPlayer"] = {
}
}
skills["PlagueBearerNovaPlayer"] = {
- name = "Plague Nova",
+ name = "Plague Bearer",
hidden = true,
- description = "Release all Poison stored by Plague Bearer, dealing an equal amount of Physical Damage to enemies around you.",
- skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, },
+ skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, },
castTime = 1,
qualityStats = {
},
@@ -4826,19 +5762,18 @@ skills["PlagueBearerNovaPlayer"] = {
},
statSets = {
[1] = {
- label = "Plague Nova",
+ label = "Plague Bearer",
baseEffectiveness = 40,
incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "plague_bearer_nova",
baseFlags = {
area = true,
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 18 },
- { "base_skill_effect_duration", 0 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "plague_bearer_nova_area_+%_final_per_incubation_%", 6 },
{ "active_skill_hit_damage_stun_multiplier_+%_final", -80 },
{ "base_chance_to_poison_on_hit_%", 100 },
@@ -4901,55 +5836,55 @@ skills["PoisonBurstArrowPlayer"] = {
baseTypeName = "Poisonburst Arrow",
color = 2,
description = "Fire a virulent arrow that creates a burst of Poison on hit, affecting all enemies in an area.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "base_poison_effect_+%", 1 },
+ { "active_skill_poison_effect_+%_final", 1 },
},
levels = {
[1] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { baseMultiplier = 0.97, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { baseMultiplier = 1.06, levelRequirement = 6, cost = { Mana = 7, }, },
[4] = { baseMultiplier = 1.16, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { baseMultiplier = 1.25, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { baseMultiplier = 1.35, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { baseMultiplier = 1.44, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { baseMultiplier = 1.53, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { baseMultiplier = 1.6, levelRequirement = 31, cost = { Mana = 13, }, },
- [10] = { baseMultiplier = 1.69, levelRequirement = 36, cost = { Mana = 14, }, },
- [11] = { baseMultiplier = 1.77, levelRequirement = 41, cost = { Mana = 16, }, },
- [12] = { baseMultiplier = 1.86, levelRequirement = 46, cost = { Mana = 18, }, },
- [13] = { baseMultiplier = 1.95, levelRequirement = 52, cost = { Mana = 20, }, },
- [14] = { baseMultiplier = 2.05, levelRequirement = 58, cost = { Mana = 22, }, },
- [15] = { baseMultiplier = 2.15, levelRequirement = 64, cost = { Mana = 24, }, },
- [16] = { baseMultiplier = 2.26, levelRequirement = 66, cost = { Mana = 27, }, },
+ [5] = { baseMultiplier = 1.25, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { baseMultiplier = 1.35, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { baseMultiplier = 1.44, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { baseMultiplier = 1.53, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { baseMultiplier = 1.6, levelRequirement = 31, cost = { Mana = 14, }, },
+ [10] = { baseMultiplier = 1.69, levelRequirement = 36, cost = { Mana = 16, }, },
+ [11] = { baseMultiplier = 1.77, levelRequirement = 41, cost = { Mana = 18, }, },
+ [12] = { baseMultiplier = 1.86, levelRequirement = 46, cost = { Mana = 19, }, },
+ [13] = { baseMultiplier = 1.95, levelRequirement = 52, cost = { Mana = 21, }, },
+ [14] = { baseMultiplier = 2.05, levelRequirement = 58, cost = { Mana = 23, }, },
+ [15] = { baseMultiplier = 2.15, levelRequirement = 64, cost = { Mana = 25, }, },
+ [16] = { baseMultiplier = 2.26, levelRequirement = 66, cost = { Mana = 28, }, },
[17] = { baseMultiplier = 2.37, levelRequirement = 72, cost = { Mana = 30, }, },
[18] = { baseMultiplier = 2.49, levelRequirement = 78, cost = { Mana = 33, }, },
- [19] = { baseMultiplier = 2.61, levelRequirement = 84, cost = { Mana = 37, }, },
- [20] = { baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 41, }, },
- [21] = { baseMultiplier = 2.88, levelRequirement = 90, cost = { Mana = 46, }, },
- [22] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 51, }, },
- [23] = { baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 56, }, },
- [24] = { baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 62, }, },
- [25] = { baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 69, }, },
- [26] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 76, }, },
- [27] = { baseMultiplier = 3.86, levelRequirement = 90, cost = { Mana = 85, }, },
- [28] = { baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 94, }, },
- [29] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 104, }, },
- [30] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 115, }, },
- [31] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 128, }, },
- [32] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 142, }, },
- [33] = { baseMultiplier = 5.18, levelRequirement = 90, cost = { Mana = 157, }, },
- [34] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 174, }, },
- [35] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 193, }, },
- [36] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 214, }, },
- [37] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 237, }, },
- [38] = { baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 263, }, },
- [39] = { baseMultiplier = 6.94, levelRequirement = 90, cost = { Mana = 292, }, },
- [40] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 323, }, },
+ [19] = { baseMultiplier = 2.61, levelRequirement = 84, cost = { Mana = 35, }, },
+ [20] = { baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 38, }, },
+ [21] = { baseMultiplier = 2.88, levelRequirement = 90, cost = { Mana = 41, }, },
+ [22] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 44, }, },
+ [23] = { baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 48, }, },
+ [24] = { baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 52, }, },
+ [25] = { baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 55, }, },
+ [26] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 60, }, },
+ [27] = { baseMultiplier = 3.86, levelRequirement = 90, cost = { Mana = 64, }, },
+ [28] = { baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 69, }, },
+ [29] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 73, }, },
+ [30] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 79, }, },
+ [31] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 84, }, },
+ [32] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 90, }, },
+ [33] = { baseMultiplier = 5.18, levelRequirement = 90, cost = { Mana = 96, }, },
+ [34] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 103, }, },
+ [35] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 110, }, },
+ [36] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 117, }, },
+ [37] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 124, }, },
+ [38] = { baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 133, }, },
+ [39] = { baseMultiplier = 6.94, levelRequirement = 90, cost = { Mana = 141, }, },
+ [40] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 150, }, },
},
statSets = {
[1] = {
@@ -4963,7 +5898,7 @@ skills["PoisonBurstArrowPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_is_projectile",
@@ -4975,6 +5910,7 @@ skills["PoisonBurstArrowPlayer"] = {
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
"disable_visual_hit_effect",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5032,7 +5968,7 @@ skills["PoisonBurstArrowPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"active_skill_base_area_of_effect_radius",
@@ -5046,6 +5982,7 @@ skills["PoisonBurstArrowPlayer"] = {
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
"disable_visual_hit_effect",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_no_hit_damage",
"display_statset_hide_usage_stats",
@@ -5053,6 +5990,9 @@ skills["PoisonBurstArrowPlayer"] = {
"display_skill_poisons_without_hit",
"poison_duration_is_skill_duration",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 15, 3000, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 15, 3100, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
@@ -5102,7 +6042,7 @@ skills["PrimalStrikesPlayer"] = {
name = "Primal Strikes",
baseTypeName = "Primal Strikes",
color = 2,
- description = "Perform a Lightning-charged stab that can be chained into a combination of up to three attacks. The first two attacks conjure a charging Wildwood spirit if they Hit a Shocked enemy and refresh Shock duration. The third attack is a large swipe that inflicts Lightning Exposure, and can Consume Shock to conjure a stampede of spirits.",
+ description = "Perform a Lightning-charged stab that can be chained into a combination of up to three attacks. The first two attacks conjure a charging Wildwood spirit if they Hit a Shocked enemy and refresh Shock duration. The third attack is a large swipe that inflicts Elemental Exposure, and can Consume Shock to conjure a stampede of spirits.",
skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.SkillConsumesShock] = true, },
weaponTypes = {
["Spear"] = true,
@@ -5116,42 +6056,42 @@ skills["PrimalStrikesPlayer"] = {
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 7, }, },
[4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 13, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 14, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 16, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 18, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 20, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 22, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 24, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 27, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 16, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 18, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 21, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 23, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 26, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 28, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 30, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 34, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 37, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 41, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 46, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 51, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 56, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 62, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 69, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 77, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 85, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 94, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 105, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 116, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 129, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 143, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 158, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 175, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 194, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 215, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 239, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 264, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 293, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 325, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 33, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 36, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 38, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 42, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 45, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 48, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 52, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 56, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 60, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 64, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 69, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 74, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 79, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 85, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 91, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 97, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 103, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 110, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 118, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 125, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 134, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 142, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 151, }, },
},
statSets = {
[1] = {
@@ -5165,7 +6105,6 @@ skills["PrimalStrikesPlayer"] = {
},
constantStats = {
{ "statset_index_for_final_animation_combo_index", 2 },
- { "attack_maximum_action_distance_+", 5 },
{ "melee_range_+", 5 },
{ "perfect_strike_timing_window_base_ms", 200 },
{ "melee_conditional_step_distance", 15 },
@@ -5180,6 +6119,7 @@ skills["PrimalStrikesPlayer"] = {
"is_area_damage",
"primal_strikes_stag_is_scaled_with_area_of_effect",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5235,7 +6175,6 @@ skills["PrimalStrikesPlayer"] = {
},
constantStats = {
{ "statset_index_for_final_animation_combo_index", 2 },
- { "attack_maximum_action_distance_+", 5 },
{ "perfect_strike_timing_window_base_ms", 200 },
{ "melee_conditional_step_distance", 15 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 },
@@ -5252,6 +6191,7 @@ skills["PrimalStrikesPlayer"] = {
"is_area_damage",
"primal_strikes_stag_is_scaled_with_area_of_effect",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
@@ -5308,7 +6248,6 @@ skills["PrimalStrikesPlayer"] = {
},
constantStats = {
{ "statset_index_for_final_animation_combo_index", 2 },
- { "attack_maximum_action_distance_+", 5 },
{ "melee_range_+", 5 },
{ "perfect_strike_timing_window_base_ms", 200 },
{ "melee_conditional_step_distance", 15 },
@@ -5321,12 +6260,13 @@ skills["PrimalStrikesPlayer"] = {
{ "supplementary_stat_container_attack_speed_+%_final", -35 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "primal_strikes_number_of_stags", 6 },
- { "base_inflict_lightning_exposure_on_hit_%_chance", 100 },
+ { "inflict_exposure_on_hit_%_chance", 100 },
},
stats = {
"is_area_damage",
"primal_strikes_stag_is_scaled_with_area_of_effect",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"base_consume_enemy_shock_on_hit",
},
@@ -5380,55 +6320,55 @@ skills["RainOfArrowsPlayer"] = {
baseTypeName = "Rain of Arrows",
color = 2,
description = "Fire a hail of arrows into the air, causing them to rain from above. Consumes your Frenzy Charges to fire more arrows.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "base_number_of_projectiles", 0.5 },
+ { "rain_of_arrows_arrow_speed_+%", 1 },
},
levels = {
[1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 15, }, },
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 17, }, },
- [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 19, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 10, cost = { Mana = 21, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 14, cost = { Mana = 23, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 18, cost = { Mana = 26, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 22, cost = { Mana = 29, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 26, cost = { Mana = 32, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 35, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 39, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 41, cost = { Mana = 44, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 46, cost = { Mana = 48, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.03, levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 58, cost = { Mana = 60, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 64, cost = { Mana = 66, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 73, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 20, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 10, cost = { Mana = 23, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 14, cost = { Mana = 26, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 18, cost = { Mana = 29, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 22, cost = { Mana = 32, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 31, cost = { Mana = 40, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 36, cost = { Mana = 44, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 41, cost = { Mana = 48, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.99, levelRequirement = 46, cost = { Mana = 53, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.03, levelRequirement = 52, cost = { Mana = 58, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 58, cost = { Mana = 63, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 64, cost = { Mana = 69, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 75, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 72, cost = { Mana = 81, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.23, levelRequirement = 78, cost = { Mana = 90, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 84, cost = { Mana = 100, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 111, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 123, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 90, cost = { Mana = 136, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 151, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 167, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 185, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 205, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 228, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 252, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 90, cost = { Mana = 280, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.83, levelRequirement = 90, cost = { Mana = 310, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 344, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 381, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 422, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 468, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 518, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 574, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 636, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 705, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.45, levelRequirement = 90, cost = { Mana = 782, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 866, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.23, levelRequirement = 78, cost = { Mana = 88, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 84, cost = { Mana = 95, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 90, cost = { Mana = 103, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 111, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 90, cost = { Mana = 120, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 129, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 139, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 149, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 161, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 172, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 185, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.77, levelRequirement = 90, cost = { Mana = 198, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.83, levelRequirement = 90, cost = { Mana = 212, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.89, levelRequirement = 90, cost = { Mana = 226, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 242, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 258, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 276, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 294, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 314, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 334, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 356, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.45, levelRequirement = 90, cost = { Mana = 379, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 404, }, },
},
statSets = {
[1] = {
@@ -5456,7 +6396,7 @@ skills["RainOfArrowsPlayer"] = {
{ "rain_of_arrows_projectile_count_multiplier_per_frenzy_charge", 50 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_arrow_rains_allowed", 1 },
{ "rain_of_arrows_delay_per_arrow", 80 },
{ "rain_hit_delay_ms", 120 },
@@ -5521,55 +6461,55 @@ skills["RakePlayer"] = {
baseTypeName = "Rake",
color = 2,
description = "Dash towards an enemy and perform a lacerating slash, inflicting Bleeding on all enemies struck.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spear] = true, [SkillType.Physical] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spear] = true, [SkillType.Physical] = true, [SkillType.Movement] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "base_dash_additional_damage_from_distance_+%_final", 1.5 },
+ { "base_additional_damage_from_distance_+%_final", 1.5 },
},
levels = {
[1] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { baseMultiplier = 0.83, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { baseMultiplier = 0.88, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { baseMultiplier = 0.93, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { baseMultiplier = 0.99, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { baseMultiplier = 1.11, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { baseMultiplier = 1.17, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { baseMultiplier = 1.25, levelRequirement = 58, cost = { Mana = 23, }, },
- [15] = { baseMultiplier = 1.32, levelRequirement = 64, cost = { Mana = 26, }, },
- [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 28, }, },
+ [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { baseMultiplier = 0.83, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { baseMultiplier = 0.88, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { baseMultiplier = 0.93, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { baseMultiplier = 0.99, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { baseMultiplier = 1.11, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { baseMultiplier = 1.17, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { baseMultiplier = 1.25, levelRequirement = 58, cost = { Mana = 24, }, },
+ [15] = { baseMultiplier = 1.32, levelRequirement = 64, cost = { Mana = 27, }, },
+ [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 29, }, },
[17] = { baseMultiplier = 1.5, levelRequirement = 72, cost = { Mana = 32, }, },
- [18] = { baseMultiplier = 1.59, levelRequirement = 78, cost = { Mana = 35, }, },
- [19] = { baseMultiplier = 1.7, levelRequirement = 84, cost = { Mana = 39, }, },
- [20] = { baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 43, }, },
- [21] = { baseMultiplier = 1.93, levelRequirement = 90, cost = { Mana = 48, }, },
- [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 53, }, },
- [23] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 59, }, },
- [24] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 65, }, },
- [25] = { baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 72, }, },
- [26] = { baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 80, }, },
- [27] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 89, }, },
- [28] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 99, }, },
- [29] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 109, }, },
- [30] = { baseMultiplier = 3.45, levelRequirement = 90, cost = { Mana = 121, }, },
- [31] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 134, }, },
- [32] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 149, }, },
- [33] = { baseMultiplier = 4.19, levelRequirement = 90, cost = { Mana = 165, }, },
- [34] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 183, }, },
- [35] = { baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 203, }, },
- [36] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 225, }, },
- [37] = { baseMultiplier = 5.42, levelRequirement = 90, cost = { Mana = 249, }, },
- [38] = { baseMultiplier = 5.78, levelRequirement = 90, cost = { Mana = 276, }, },
- [39] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 306, }, },
- [40] = { baseMultiplier = 6.58, levelRequirement = 90, cost = { Mana = 339, }, },
+ [18] = { baseMultiplier = 1.59, levelRequirement = 78, cost = { Mana = 34, }, },
+ [19] = { baseMultiplier = 1.7, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { baseMultiplier = 1.93, levelRequirement = 90, cost = { Mana = 43, }, },
+ [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 47, }, },
+ [23] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 50, }, },
+ [24] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 58, }, },
+ [26] = { baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 63, }, },
+ [27] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 67, }, },
+ [28] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 72, }, },
+ [29] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 77, }, },
+ [30] = { baseMultiplier = 3.45, levelRequirement = 90, cost = { Mana = 83, }, },
+ [31] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 88, }, },
+ [32] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 95, }, },
+ [33] = { baseMultiplier = 4.19, levelRequirement = 90, cost = { Mana = 101, }, },
+ [34] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 108, }, },
+ [35] = { baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 115, }, },
+ [36] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 123, }, },
+ [37] = { baseMultiplier = 5.42, levelRequirement = 90, cost = { Mana = 131, }, },
+ [38] = { baseMultiplier = 5.78, levelRequirement = 90, cost = { Mana = 139, }, },
+ [39] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 148, }, },
+ [40] = { baseMultiplier = 6.58, levelRequirement = 90, cost = { Mana = 158, }, },
},
statSets = {
[1] = {
@@ -5591,7 +6531,7 @@ skills["RakePlayer"] = {
},
constantStats = {
{ "base_melee_dash_range", 50 },
- { "base_dash_additional_damage_from_distance_+%_final", 100 },
+ { "base_additional_damage_from_distance_+%_final", 100 },
{ "melee_conditional_step_distance", 8 },
{ "total_attack_time_+_ms", 400 },
{ "active_skill_bleeding_effect_+%_final", 100 },
@@ -5604,6 +6544,7 @@ skills["RakePlayer"] = {
"is_area_damage",
"quality_display_spear_puncture_is_gem",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5666,44 +6607,44 @@ skills["RapidAssaultPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -60, baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { attackSpeedMultiplier = -60, baseMultiplier = 0.27, levelRequirement = 3, cost = { Mana = 11, }, },
- [3] = { attackSpeedMultiplier = -60, baseMultiplier = 0.3, levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { attackSpeedMultiplier = -60, baseMultiplier = 0.33, levelRequirement = 10, cost = { Mana = 14, }, },
- [5] = { attackSpeedMultiplier = -60, baseMultiplier = 0.36, levelRequirement = 14, cost = { Mana = 15, }, },
- [6] = { attackSpeedMultiplier = -60, baseMultiplier = 0.38, levelRequirement = 18, cost = { Mana = 17, }, },
- [7] = { attackSpeedMultiplier = -60, baseMultiplier = 0.41, levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { attackSpeedMultiplier = -60, baseMultiplier = 0.43, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { attackSpeedMultiplier = -60, baseMultiplier = 0.46, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { attackSpeedMultiplier = -60, baseMultiplier = 0.48, levelRequirement = 36, cost = { Mana = 26, }, },
- [11] = { attackSpeedMultiplier = -60, baseMultiplier = 0.5, levelRequirement = 41, cost = { Mana = 29, }, },
- [12] = { attackSpeedMultiplier = -60, baseMultiplier = 0.53, levelRequirement = 46, cost = { Mana = 32, }, },
- [13] = { attackSpeedMultiplier = -60, baseMultiplier = 0.55, levelRequirement = 52, cost = { Mana = 36, }, },
- [14] = { attackSpeedMultiplier = -60, baseMultiplier = 0.58, levelRequirement = 58, cost = { Mana = 40, }, },
- [15] = { attackSpeedMultiplier = -60, baseMultiplier = 0.61, levelRequirement = 64, cost = { Mana = 44, }, },
- [16] = { attackSpeedMultiplier = -60, baseMultiplier = 0.64, levelRequirement = 66, cost = { Mana = 49, }, },
+ [3] = { attackSpeedMultiplier = -60, baseMultiplier = 0.3, levelRequirement = 6, cost = { Mana = 13, }, },
+ [4] = { attackSpeedMultiplier = -60, baseMultiplier = 0.33, levelRequirement = 10, cost = { Mana = 15, }, },
+ [5] = { attackSpeedMultiplier = -60, baseMultiplier = 0.36, levelRequirement = 14, cost = { Mana = 17, }, },
+ [6] = { attackSpeedMultiplier = -60, baseMultiplier = 0.38, levelRequirement = 18, cost = { Mana = 19, }, },
+ [7] = { attackSpeedMultiplier = -60, baseMultiplier = 0.41, levelRequirement = 22, cost = { Mana = 21, }, },
+ [8] = { attackSpeedMultiplier = -60, baseMultiplier = 0.43, levelRequirement = 26, cost = { Mana = 24, }, },
+ [9] = { attackSpeedMultiplier = -60, baseMultiplier = 0.46, levelRequirement = 31, cost = { Mana = 26, }, },
+ [10] = { attackSpeedMultiplier = -60, baseMultiplier = 0.48, levelRequirement = 36, cost = { Mana = 29, }, },
+ [11] = { attackSpeedMultiplier = -60, baseMultiplier = 0.5, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { attackSpeedMultiplier = -60, baseMultiplier = 0.53, levelRequirement = 46, cost = { Mana = 35, }, },
+ [13] = { attackSpeedMultiplier = -60, baseMultiplier = 0.55, levelRequirement = 52, cost = { Mana = 38, }, },
+ [14] = { attackSpeedMultiplier = -60, baseMultiplier = 0.58, levelRequirement = 58, cost = { Mana = 42, }, },
+ [15] = { attackSpeedMultiplier = -60, baseMultiplier = 0.61, levelRequirement = 64, cost = { Mana = 46, }, },
+ [16] = { attackSpeedMultiplier = -60, baseMultiplier = 0.64, levelRequirement = 66, cost = { Mana = 50, }, },
[17] = { attackSpeedMultiplier = -60, baseMultiplier = 0.67, levelRequirement = 72, cost = { Mana = 54, }, },
- [18] = { attackSpeedMultiplier = -60, baseMultiplier = 0.71, levelRequirement = 78, cost = { Mana = 60, }, },
- [19] = { attackSpeedMultiplier = -60, baseMultiplier = 0.74, levelRequirement = 84, cost = { Mana = 66, }, },
- [20] = { attackSpeedMultiplier = -60, baseMultiplier = 0.78, levelRequirement = 90, cost = { Mana = 74, }, },
- [21] = { attackSpeedMultiplier = -60, baseMultiplier = 0.82, levelRequirement = 90, cost = { Mana = 82, }, },
- [22] = { attackSpeedMultiplier = -60, baseMultiplier = 0.86, levelRequirement = 90, cost = { Mana = 90, }, },
- [23] = { attackSpeedMultiplier = -60, baseMultiplier = 0.9, levelRequirement = 90, cost = { Mana = 100, }, },
- [24] = { attackSpeedMultiplier = -60, baseMultiplier = 0.95, levelRequirement = 90, cost = { Mana = 111, }, },
- [25] = { attackSpeedMultiplier = -60, levelRequirement = 90, cost = { Mana = 123, }, },
- [26] = { attackSpeedMultiplier = -60, baseMultiplier = 1.04, levelRequirement = 90, cost = { Mana = 137, }, },
- [27] = { attackSpeedMultiplier = -60, baseMultiplier = 1.1, levelRequirement = 90, cost = { Mana = 152, }, },
- [28] = { attackSpeedMultiplier = -60, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 168, }, },
- [29] = { attackSpeedMultiplier = -60, baseMultiplier = 1.21, levelRequirement = 90, cost = { Mana = 186, }, },
- [30] = { attackSpeedMultiplier = -60, baseMultiplier = 1.27, levelRequirement = 90, cost = { Mana = 206, }, },
- [31] = { attackSpeedMultiplier = -60, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 229, }, },
- [32] = { attackSpeedMultiplier = -60, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 253, }, },
- [33] = { attackSpeedMultiplier = -60, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 281, }, },
- [34] = { attackSpeedMultiplier = -60, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 311, }, },
- [35] = { attackSpeedMultiplier = -60, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 345, }, },
- [36] = { attackSpeedMultiplier = -60, baseMultiplier = 1.7, levelRequirement = 90, cost = { Mana = 382, }, },
- [37] = { attackSpeedMultiplier = -60, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 424, }, },
- [38] = { attackSpeedMultiplier = -60, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 470, }, },
- [39] = { attackSpeedMultiplier = -60, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 521, }, },
- [40] = { attackSpeedMultiplier = -60, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 577, }, },
+ [18] = { attackSpeedMultiplier = -60, baseMultiplier = 0.71, levelRequirement = 78, cost = { Mana = 59, }, },
+ [19] = { attackSpeedMultiplier = -60, baseMultiplier = 0.74, levelRequirement = 84, cost = { Mana = 63, }, },
+ [20] = { attackSpeedMultiplier = -60, baseMultiplier = 0.78, levelRequirement = 90, cost = { Mana = 69, }, },
+ [21] = { attackSpeedMultiplier = -60, baseMultiplier = 0.82, levelRequirement = 90, cost = { Mana = 74, }, },
+ [22] = { attackSpeedMultiplier = -60, baseMultiplier = 0.86, levelRequirement = 90, cost = { Mana = 80, }, },
+ [23] = { attackSpeedMultiplier = -60, baseMultiplier = 0.9, levelRequirement = 90, cost = { Mana = 86, }, },
+ [24] = { attackSpeedMultiplier = -60, baseMultiplier = 0.95, levelRequirement = 90, cost = { Mana = 93, }, },
+ [25] = { attackSpeedMultiplier = -60, levelRequirement = 90, cost = { Mana = 99, }, },
+ [26] = { attackSpeedMultiplier = -60, baseMultiplier = 1.04, levelRequirement = 90, cost = { Mana = 107, }, },
+ [27] = { attackSpeedMultiplier = -60, baseMultiplier = 1.1, levelRequirement = 90, cost = { Mana = 115, }, },
+ [28] = { attackSpeedMultiplier = -60, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 123, }, },
+ [29] = { attackSpeedMultiplier = -60, baseMultiplier = 1.21, levelRequirement = 90, cost = { Mana = 132, }, },
+ [30] = { attackSpeedMultiplier = -60, baseMultiplier = 1.27, levelRequirement = 90, cost = { Mana = 141, }, },
+ [31] = { attackSpeedMultiplier = -60, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 151, }, },
+ [32] = { attackSpeedMultiplier = -60, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 161, }, },
+ [33] = { attackSpeedMultiplier = -60, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 172, }, },
+ [34] = { attackSpeedMultiplier = -60, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 184, }, },
+ [35] = { attackSpeedMultiplier = -60, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 196, }, },
+ [36] = { attackSpeedMultiplier = -60, baseMultiplier = 1.7, levelRequirement = 90, cost = { Mana = 209, }, },
+ [37] = { attackSpeedMultiplier = -60, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 223, }, },
+ [38] = { attackSpeedMultiplier = -60, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 237, }, },
+ [39] = { attackSpeedMultiplier = -60, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 253, }, },
+ [40] = { attackSpeedMultiplier = -60, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 269, }, },
},
statSets = {
[1] = {
@@ -5723,6 +6664,7 @@ skills["RapidAssaultPlayer"] = {
stats = {
"melee_defer_damage_prediction",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5782,12 +6724,13 @@ skills["RapidAssaultPlayer"] = {
{ "melee_conditional_step_distance", 13 },
{ "melee_range_+", 6 },
{ "rapid_assault_attached_spear_limit", 5 },
- { "base_skill_effect_duration", 10000 },
+ { "base_skill_effect_duration", 30000 },
{ "base_chance_to_inflict_bleeding_%", 100 },
},
stats = {
"melee_defer_damage_prediction",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"global_knockback",
},
@@ -5851,6 +6794,7 @@ skills["RapidAssaultPlayer"] = {
stats = {
"melee_defer_damage_prediction",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
@@ -5905,7 +6849,7 @@ skills["RhoaMountPlayer"] = {
"SummonedRhoa",
},
color = 2,
- description = "Harnesses a Companion Rhoa that you can ride. While you're mounted on the Rhoa, you can only use Bow, thrown Spear and Mark Skills, you run at full speed when attacking, and Hits against you cause Heavy Stun buildup. While you aren't mounted, the Rhoa attacks your enemies alongside you with its beak, but can be damaged.",
+ description = "Harnesses a Companion Rhoa you can mount while you're wielding a Bow or Spear. While mounted you can use Bow, thrown Spear and Mark Skills, run faster and barely slow to use Skills, but being Hit will cause Heavy Stun buildup. While you aren't mounted, the Rhoa will attack your enemies alongside you with its beak, but can be damaged.",
skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, },
castTime = 1,
@@ -5965,6 +6909,8 @@ skills["RhoaMountPlayer"] = {
constantStats = {
{ "minion_base_resummon_time_ms", 12000 },
{ "minion_accuracy_rating_+%", 100 },
+ { "rhoa_movement_speed_+%", 15 },
+ { "rhoa_movement_speed_penalty_+%_final_while_performing_action", -80 },
},
stats = {
"is_resummoning_minion",
@@ -6019,8 +6965,8 @@ skills["ShockchainArrowPlayer"] = {
name = "Shockchain Arrow",
baseTypeName = "Shockchain Arrow",
color = 2,
- description = "Fire a Lightning-infused arrow that homes in on enemies afflicted by Lightning Ailments. Hitting such an enemy will charge the arrow, causing it to release a damaging shockwave and split beams towards up to two nearby targets. Those beams will repeat this process if they hit an enemy afflicted by a Lightning Ailment. Consumes Shock from enemies it Hits, but not Electrocution.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.SkillConsumesShock] = true, [SkillType.Bow] = true, },
+ description = "Fire a Lightning-charged arrow that homes in on enemies afflicted by Lightning Ailments. Hitting such an enemy will charge the arrow, causing it to release a damaging shockwave and split beams towards up to two nearby targets. Those beams will repeat this process if they hit an enemy afflicted by a Lightning Ailment. Consumes Shock from enemies it Hits, but not Electrocution.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Chains] = true, [SkillType.SkillConsumesShock] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -6031,44 +6977,44 @@ skills["ShockchainArrowPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 11, }, },
- [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 14, }, },
- [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 15, }, },
- [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 17, }, },
- [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 26, }, },
- [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 29, }, },
- [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 32, }, },
- [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 35, }, },
- [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 39, }, },
- [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 43, }, },
- [16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 48, }, },
- [17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 53, }, },
- [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 59, }, },
- [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 66, }, },
- [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 73, }, },
- [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 81, }, },
- [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 90, }, },
- [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 99, }, },
- [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 110, }, },
- [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 122, }, },
- [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 136, }, },
- [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 150, }, },
- [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 167, }, },
- [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 185, }, },
- [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 205, }, },
- [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 227, }, },
- [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 251, }, },
- [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 279, }, },
- [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 309, }, },
- [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 342, }, },
- [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 379, }, },
- [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 420, }, },
- [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 466, }, },
- [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 516, }, },
- [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 572, }, },
+ [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 13, }, },
+ [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 15, }, },
+ [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 17, }, },
+ [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 19, }, },
+ [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 21, }, },
+ [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 23, }, },
+ [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 26, }, },
+ [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 29, }, },
+ [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 35, }, },
+ [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 38, }, },
+ [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 42, }, },
+ [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 45, }, },
+ [16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 49, }, },
+ [17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 54, }, },
+ [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 58, }, },
+ [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 63, }, },
+ [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 68, }, },
+ [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 73, }, },
+ [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 79, }, },
+ [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 85, }, },
+ [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 92, }, },
+ [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 99, }, },
+ [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 106, }, },
+ [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 114, }, },
+ [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 122, }, },
+ [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 130, }, },
+ [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 140, }, },
+ [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 149, }, },
+ [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 160, }, },
+ [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 170, }, },
+ [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 182, }, },
+ [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 194, }, },
+ [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 207, }, },
+ [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 221, }, },
+ [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 235, }, },
+ [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 250, }, },
+ [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 266, }, },
},
statSets = {
[1] = {
@@ -6083,7 +7029,7 @@ skills["ShockchainArrowPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_is_projectile",
@@ -6098,6 +7044,7 @@ skills["ShockchainArrowPlayer"] = {
"base_consume_enemy_shock_on_hit",
"always_pierce_non_shocked_enemies_if_targeting_shocked_enemy",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6154,7 +7101,7 @@ skills["ShockchainArrowPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "number_of_chains", 10 },
},
@@ -6169,6 +7116,7 @@ skills["ShockchainArrowPlayer"] = {
"should_use_additive_aiming_animation",
"base_consume_enemy_shock_on_hit",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
@@ -6226,7 +7174,7 @@ skills["ShockchainArrowPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_area_of_effect_radius", 25 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
},
@@ -6240,6 +7188,7 @@ skills["ShockchainArrowPlayer"] = {
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
@@ -6291,56 +7240,56 @@ skills["SnipePlayer"] = {
name = "Snipe",
baseTypeName = "Snipe",
color = 2,
- description = "Channel to charge up your bow before releasing a powerful shot. Releasing the moment you fully charge causes the arrow to explode on impact for a guaranteed Critical Hit.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.PerfectTiming] = true, [SkillType.Bow] = true, },
+ description = "Channel to charge up your bow before releasing a powerful shot. Releasing with Perfect Timing causes the arrow to explode on impact and Consume Freeze on directly Hitting. Consuming Freeze or Hitting a Heavy Stunned enemy enhances the explosion.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.PerfectTiming] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cold] = true, [SkillType.SkillConsumesFreeze] = true, },
weaponTypes = {
["Bow"] = true,
},
castTime = 1,
qualityStats = {
- { "base_critical_strike_multiplier_+", 2.5 },
+ { "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
- [1] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 0, cost = { ManaPerMinute = 1086, }, },
- [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 3, cost = { ManaPerMinute = 1203, }, },
- [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.33, levelRequirement = 6, cost = { ManaPerMinute = 1333, }, },
- [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.45, levelRequirement = 10, cost = { ManaPerMinute = 1477, }, },
- [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.57, levelRequirement = 14, cost = { ManaPerMinute = 1637, }, },
- [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.68, levelRequirement = 18, cost = { ManaPerMinute = 1814, }, },
- [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.8, levelRequirement = 22, cost = { ManaPerMinute = 2010, }, },
- [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 26, cost = { ManaPerMinute = 2227, }, },
- [9] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 31, cost = { ManaPerMinute = 2468, }, },
- [10] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 36, cost = { ManaPerMinute = 2735, }, },
- [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.21, levelRequirement = 41, cost = { ManaPerMinute = 3031, }, },
- [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.32, levelRequirement = 46, cost = { ManaPerMinute = 3358, }, },
- [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 52, cost = { ManaPerMinute = 3722, }, },
- [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.56, levelRequirement = 58, cost = { ManaPerMinute = 4124, }, },
- [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 64, cost = { ManaPerMinute = 4570, }, },
- [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.82, levelRequirement = 66, cost = { ManaPerMinute = 5064, }, },
- [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.96, levelRequirement = 72, cost = { ManaPerMinute = 5611, }, },
- [18] = { attackSpeedMultiplier = -55, baseMultiplier = 3.11, levelRequirement = 78, cost = { ManaPerMinute = 6218, }, },
- [19] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 84, cost = { ManaPerMinute = 6890, }, },
- [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.43, levelRequirement = 90, cost = { ManaPerMinute = 7635, }, },
- [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.6, levelRequirement = 90, cost = { ManaPerMinute = 8460, }, },
- [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.78, levelRequirement = 90, cost = { ManaPerMinute = 9375, }, },
- [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.97, levelRequirement = 90, cost = { ManaPerMinute = 10388, }, },
- [24] = { attackSpeedMultiplier = -55, baseMultiplier = 4.17, levelRequirement = 90, cost = { ManaPerMinute = 11511, }, },
- [25] = { attackSpeedMultiplier = -55, baseMultiplier = 4.38, levelRequirement = 90, cost = { ManaPerMinute = 12756, }, },
- [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.6, levelRequirement = 90, cost = { ManaPerMinute = 14135, }, },
- [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 15663, }, },
- [28] = { attackSpeedMultiplier = -55, baseMultiplier = 5.07, levelRequirement = 90, cost = { ManaPerMinute = 17356, }, },
- [29] = { attackSpeedMultiplier = -55, baseMultiplier = 5.32, levelRequirement = 90, cost = { ManaPerMinute = 19232, }, },
- [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.59, levelRequirement = 90, cost = { ManaPerMinute = 21311, }, },
- [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.87, levelRequirement = 90, cost = { ManaPerMinute = 23615, }, },
- [32] = { attackSpeedMultiplier = -55, baseMultiplier = 6.16, levelRequirement = 90, cost = { ManaPerMinute = 26168, }, },
- [33] = { attackSpeedMultiplier = -55, baseMultiplier = 6.47, levelRequirement = 90, cost = { ManaPerMinute = 28997, }, },
- [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.79, levelRequirement = 90, cost = { ManaPerMinute = 32131, }, },
- [35] = { attackSpeedMultiplier = -55, baseMultiplier = 7.13, levelRequirement = 90, cost = { ManaPerMinute = 35605, }, },
- [36] = { attackSpeedMultiplier = -55, baseMultiplier = 7.49, levelRequirement = 90, cost = { ManaPerMinute = 39454, }, },
- [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.86, levelRequirement = 90, cost = { ManaPerMinute = 43719, }, },
- [38] = { attackSpeedMultiplier = -55, baseMultiplier = 8.26, levelRequirement = 90, cost = { ManaPerMinute = 48445, }, },
- [39] = { attackSpeedMultiplier = -55, baseMultiplier = 8.67, levelRequirement = 90, cost = { ManaPerMinute = 53682, }, },
- [40] = { attackSpeedMultiplier = -55, baseMultiplier = 9.1, levelRequirement = 90, cost = { ManaPerMinute = 59485, }, },
+ [1] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 0, cost = { ManaPerMinute = 1053, }, },
+ [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 3, cost = { ManaPerMinute = 1218, }, },
+ [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.33, levelRequirement = 6, cost = { ManaPerMinute = 1395, }, },
+ [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.45, levelRequirement = 10, cost = { ManaPerMinute = 1585, }, },
+ [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.57, levelRequirement = 14, cost = { ManaPerMinute = 1788, }, },
+ [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.68, levelRequirement = 18, cost = { ManaPerMinute = 2006, }, },
+ [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.8, levelRequirement = 22, cost = { ManaPerMinute = 2238, }, },
+ [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 26, cost = { ManaPerMinute = 2487, }, },
+ [9] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 31, cost = { ManaPerMinute = 2752, }, },
+ [10] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 36, cost = { ManaPerMinute = 3036, }, },
+ [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.21, levelRequirement = 41, cost = { ManaPerMinute = 3338, }, },
+ [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.32, levelRequirement = 46, cost = { ManaPerMinute = 3661, }, },
+ [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 52, cost = { ManaPerMinute = 4004, }, },
+ [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.56, levelRequirement = 58, cost = { ManaPerMinute = 4370, }, },
+ [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 64, cost = { ManaPerMinute = 4760, }, },
+ [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.82, levelRequirement = 66, cost = { ManaPerMinute = 5175, }, },
+ [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.96, levelRequirement = 72, cost = { ManaPerMinute = 5616, }, },
+ [18] = { attackSpeedMultiplier = -55, baseMultiplier = 3.11, levelRequirement = 78, cost = { ManaPerMinute = 6085, }, },
+ [19] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 84, cost = { ManaPerMinute = 6584, }, },
+ [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.43, levelRequirement = 90, cost = { ManaPerMinute = 7114, }, },
+ [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.6, levelRequirement = 90, cost = { ManaPerMinute = 7677, }, },
+ [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.78, levelRequirement = 90, cost = { ManaPerMinute = 8274, }, },
+ [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.97, levelRequirement = 90, cost = { ManaPerMinute = 8908, }, },
+ [24] = { attackSpeedMultiplier = -55, baseMultiplier = 4.17, levelRequirement = 90, cost = { ManaPerMinute = 9581, }, },
+ [25] = { attackSpeedMultiplier = -55, baseMultiplier = 4.38, levelRequirement = 90, cost = { ManaPerMinute = 10294, }, },
+ [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.6, levelRequirement = 90, cost = { ManaPerMinute = 11051, }, },
+ [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 11853, }, },
+ [28] = { attackSpeedMultiplier = -55, baseMultiplier = 5.07, levelRequirement = 90, cost = { ManaPerMinute = 12703, }, },
+ [29] = { attackSpeedMultiplier = -55, baseMultiplier = 5.32, levelRequirement = 90, cost = { ManaPerMinute = 13603, }, },
+ [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.59, levelRequirement = 90, cost = { ManaPerMinute = 14556, }, },
+ [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.87, levelRequirement = 90, cost = { ManaPerMinute = 15566, }, },
+ [32] = { attackSpeedMultiplier = -55, baseMultiplier = 6.16, levelRequirement = 90, cost = { ManaPerMinute = 16635, }, },
+ [33] = { attackSpeedMultiplier = -55, baseMultiplier = 6.47, levelRequirement = 90, cost = { ManaPerMinute = 17766, }, },
+ [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.79, levelRequirement = 90, cost = { ManaPerMinute = 18963, }, },
+ [35] = { attackSpeedMultiplier = -55, baseMultiplier = 7.13, levelRequirement = 90, cost = { ManaPerMinute = 20228, }, },
+ [36] = { attackSpeedMultiplier = -55, baseMultiplier = 7.49, levelRequirement = 90, cost = { ManaPerMinute = 21567, }, },
+ [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.86, levelRequirement = 90, cost = { ManaPerMinute = 22983, }, },
+ [38] = { attackSpeedMultiplier = -55, baseMultiplier = 8.26, levelRequirement = 90, cost = { ManaPerMinute = 24479, }, },
+ [39] = { attackSpeedMultiplier = -55, baseMultiplier = 8.67, levelRequirement = 90, cost = { ManaPerMinute = 26061, }, },
+ [40] = { attackSpeedMultiplier = -55, baseMultiplier = 9.1, levelRequirement = 90, cost = { ManaPerMinute = 27732, }, },
},
preDamageFunc = function(activeSkill, output)
activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime
@@ -6349,7 +7298,7 @@ skills["SnipePlayer"] = {
[1] = {
label = "Arrow",
incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "channelled_snipe",
+ statDescriptionScope = "channelled_snipe_statset_0",
baseFlags = {
attack = true,
projectile = true,
@@ -6361,7 +7310,6 @@ skills["SnipePlayer"] = {
{ "perfect_strike_timing_window_base_ms", 300 },
{ "channel_start_lock_cancelling_of_attack_time_%", 16 },
{ "base_minimum_channel_time_ms", 300 },
- { "base_critical_strike_multiplier_+", 200 },
{ "channel_skill_end_animation_duration_multiplier_permyriad", 2500 },
{ "channel_end_duration_as_%_of_attack_time", 133 },
},
@@ -6375,6 +7323,10 @@ skills["SnipePlayer"] = {
"attack_speed_modifiers_apply_to_over_time_cost",
"channel_start_lock_cancelling_scales_with_attack_speed",
"skill_moving_start_slowdown",
+ "never_freeze",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "cannot_stun",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6422,23 +7374,99 @@ skills["SnipePlayer"] = {
[2] = {
label = "Explosion",
incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "channelled_snipe",
+ statDescriptionScope = "channelled_snipe_statset_1",
baseFlags = {
attack = true,
projectile = true,
area = true,
},
- baseMods = {
- mod("Condition:PerfectTiming", "FLAG", true),
+ constantStats = {
+ { "active_skill_override_turn_duration_ms", 120 },
+ { "skill_animation_duration_multiplier_override", 2 },
+ { "perfect_strike_timing_window_base_ms", 300 },
+ { "channel_skill_end_animation_duration_multiplier_permyriad", 2500 },
+ { "channel_end_duration_as_%_of_attack_time", 133 },
+ { "active_skill_base_area_of_effect_radius", 25 },
+ },
+ stats = {
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "skill_can_fire_arrows",
+ "has_modular_projectiles_enabled",
+ "attack_speed_modifiers_apply_to_over_time_cost",
+ "channel_start_lock_cancelling_scales_with_attack_speed",
+ "skill_moving_start_slowdown",
+ "never_freeze",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "cannot_stun",
+ "is_area_damage",
+ "display_statset_hide_usage_stats",
+ "perfectly_timed",
+ },
+ levels = {
+ [1] = { baseMultiplier = 3, actorLevel = 1, },
+ [2] = { baseMultiplier = 3.3, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 3.63, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 3.96, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 4.27, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 4.59, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 4.92, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 5.21, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 5.47, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 5.74, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 6.03, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 6.33, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 6.65, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 6.98, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 7.33, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 7.7, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 8.08, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 8.49, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 8.91, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 9.36, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 9.82, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 10.32, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 10.83, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 11.37, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 11.94, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 12.54, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 13.17, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 13.82, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 14.52, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 15.24, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 16, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 16.8, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 17.64, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 18.53, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 19.45, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 20.42, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 21.45, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 22.52, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 23.64, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 24.83, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Icy Blast",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "channelled_snipe_statset_2",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ area = true,
},
constantStats = {
{ "active_skill_override_turn_duration_ms", 120 },
{ "skill_animation_duration_multiplier_override", 2 },
{ "perfect_strike_timing_window_base_ms", 300 },
- { "base_critical_strike_multiplier_+", 200 },
{ "channel_skill_end_animation_duration_multiplier_permyriad", 2500 },
{ "channel_end_duration_as_%_of_attack_time", 133 },
- { "active_skill_base_area_of_effect_radius", 15 },
+ { "active_skill_base_area_of_effect_radius", 32 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "snipe_damage_+%_final_if_created_from_unique", 50 },
},
stats = {
"base_is_projectile",
@@ -6450,12 +7478,55 @@ skills["SnipePlayer"] = {
"attack_speed_modifiers_apply_to_over_time_cost",
"channel_start_lock_cancelling_scales_with_attack_speed",
"skill_moving_start_slowdown",
+ "never_freeze",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "cannot_stun",
"is_area_damage",
- "always_crit",
"display_statset_hide_usage_stats",
+ "perfectly_timed",
},
levels = {
- [1] = { actorLevel = 1, },
+ [1] = { baseMultiplier = 4.6, actorLevel = 1, },
+ [2] = { baseMultiplier = 5.07, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 5.6, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 6.14, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 6.67, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 7.23, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 7.8, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 8.36, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 8.88, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 9.45, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 10.06, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 10.73, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 11.45, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 12.25, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 13.11, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 14.05, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 15.08, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 16.2, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 17.43, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 18.78, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 20.23, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 21.8, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 23.48, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 25.3, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 27.25, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 29.36, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 31.63, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 34.07, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 36.7, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 39.54, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 42.6, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 45.89, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 49.44, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 53.26, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 57.38, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 61.81, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 66.59, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 71.73, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 77.28, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 83.25, actorLevel = 288.29998779297, },
},
},
}
@@ -6464,53 +7535,53 @@ skills["SnipersMarkPlayer"] = {
name = "Sniper's Mark",
baseTypeName = "Sniper's Mark",
color = 2,
- description = "Mark a target. The next Critical Hit the target receives consumes the Mark to deal extra damage and grant you a Frenzy Charge.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, },
+ description = "Mark a target. The next Critical Hit the target receives Consumes the Mark to deal extra damage and grant you a Frenzy Charge.",
+ skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.UsableWhileMounted] = true, },
castTime = 0.5,
qualityStats = {
{ "enemy_additional_critical_strike_multiplier_against_self", 0.75 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 2, cost = { Mana = 23, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 2, cost = { Mana = 25, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 2, cost = { Mana = 27, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 2, cost = { Mana = 29, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 2, cost = { Mana = 31, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 2, cost = { Mana = 33, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 2, cost = { Mana = 35, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 2, cost = { Mana = 38, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 2, cost = { Mana = 41, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 2, cost = { Mana = 44, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 2, cost = { Mana = 47, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 2, cost = { Mana = 50, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 2, cost = { Mana = 54, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 2, cost = { Mana = 58, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 2, cost = { Mana = 62, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 2, cost = { Mana = 67, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 2, cost = { Mana = 72, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 2, cost = { Mana = 77, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 2, cost = { Mana = 82, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 88, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 95, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 102, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 109, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 117, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 125, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 135, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 144, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 155, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 166, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 178, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 191, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 205, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 219, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 235, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 252, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 271, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 290, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 311, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 334, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 2, cost = { Mana = 358, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 6, cost = { Mana = 18, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 6, cost = { Mana = 20, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 6, cost = { Mana = 23, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 6, cost = { Mana = 25, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 6, cost = { Mana = 28, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 6, cost = { Mana = 31, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 6, cost = { Mana = 33, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 6, cost = { Mana = 36, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 6, cost = { Mana = 39, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 6, cost = { Mana = 42, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 6, cost = { Mana = 46, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 6, cost = { Mana = 49, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 6, cost = { Mana = 52, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 6, cost = { Mana = 56, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 6, cost = { Mana = 59, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 6, cost = { Mana = 63, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 6, cost = { Mana = 67, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 6, cost = { Mana = 71, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 6, cost = { Mana = 75, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 79, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 83, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 88, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 92, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 97, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 102, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 107, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 112, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 117, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 123, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 128, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 134, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 140, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 146, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 152, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 159, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 166, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 172, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 179, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 187, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 194, }, },
},
statSets = {
[1] = {
@@ -6524,9 +7595,7 @@ skills["SnipersMarkPlayer"] = {
},
},
baseFlags = {
- spell = true,
duration = true,
- mark = true,
},
baseMods = {
skill("debuff", true),
@@ -6535,7 +7604,7 @@ skills["SnipersMarkPlayer"] = {
{ "base_skill_effect_duration", 8000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "number_of_marks_allowed_per_type", 1 },
},
stats = {
@@ -6593,55 +7662,55 @@ skills["SpearOfSolarisPlayer"] = {
baseTypeName = "Spear of Solaris",
color = 2,
description = "Build Glory by Heavy Stunning enemies. When you have maximum Glory you may call forth the Azmeri goddess Solaris, jumping backwards and throwing your Spear in the air. On landing the spear deals heavy damage in an area, then calls a divine skybeam that pulses periodically and creates expanding Ignited Ground. Modifiers to number of Projectiles fired do not apply to this skill.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RangedAttack] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Rain] = true, [SkillType.HasUsageCondition] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RangedAttack] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Rain] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_ignite_effect_+%_final", 2 },
+ { "chance_to_retain_40%_of_glory_on_use_%", 1.25 },
},
levels = {
- [1] = { baseMultiplier = 2.1, levelRequirement = 0, cost = { Mana = 13, }, },
- [2] = { baseMultiplier = 2.32, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { baseMultiplier = 2.56, levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { baseMultiplier = 2.8, levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { baseMultiplier = 3.05, levelRequirement = 14, cost = { Mana = 21, }, },
- [6] = { baseMultiplier = 3.3, levelRequirement = 18, cost = { Mana = 23, }, },
- [7] = { baseMultiplier = 3.56, levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { baseMultiplier = 3.82, levelRequirement = 26, cost = { Mana = 28, }, },
- [9] = { baseMultiplier = 4.05, levelRequirement = 31, cost = { Mana = 31, }, },
- [10] = { baseMultiplier = 4.31, levelRequirement = 36, cost = { Mana = 35, }, },
- [11] = { baseMultiplier = 4.59, levelRequirement = 41, cost = { Mana = 38, }, },
- [12] = { baseMultiplier = 4.9, levelRequirement = 46, cost = { Mana = 43, }, },
- [13] = { baseMultiplier = 5.23, levelRequirement = 52, cost = { Mana = 47, }, },
- [14] = { baseMultiplier = 5.59, levelRequirement = 58, cost = { Mana = 53, }, },
- [15] = { baseMultiplier = 5.98, levelRequirement = 64, cost = { Mana = 58, }, },
- [16] = { baseMultiplier = 6.41, levelRequirement = 66, cost = { Mana = 65, }, },
- [17] = { baseMultiplier = 6.88, levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { baseMultiplier = 7.4, levelRequirement = 78, cost = { Mana = 79, }, },
- [19] = { baseMultiplier = 7.96, levelRequirement = 84, cost = { Mana = 88, }, },
- [20] = { baseMultiplier = 8.57, levelRequirement = 90, cost = { Mana = 98, }, },
- [21] = { baseMultiplier = 9.24, levelRequirement = 90, cost = { Mana = 108, }, },
- [22] = { baseMultiplier = 9.95, levelRequirement = 90, cost = { Mana = 120, }, },
- [23] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { Mana = 133, }, },
- [24] = { baseMultiplier = 11.55, levelRequirement = 90, cost = { Mana = 148, }, },
- [25] = { baseMultiplier = 12.44, levelRequirement = 90, cost = { Mana = 164, }, },
- [26] = { baseMultiplier = 13.4, levelRequirement = 90, cost = { Mana = 181, }, },
- [27] = { baseMultiplier = 14.44, levelRequirement = 90, cost = { Mana = 201, }, },
- [28] = { baseMultiplier = 15.55, levelRequirement = 90, cost = { Mana = 223, }, },
- [29] = { baseMultiplier = 16.76, levelRequirement = 90, cost = { Mana = 247, }, },
- [30] = { baseMultiplier = 18.05, levelRequirement = 90, cost = { Mana = 274, }, },
- [31] = { baseMultiplier = 19.45, levelRequirement = 90, cost = { Mana = 303, }, },
- [32] = { baseMultiplier = 20.95, levelRequirement = 90, cost = { Mana = 336, }, },
- [33] = { baseMultiplier = 22.57, levelRequirement = 90, cost = { Mana = 373, }, },
- [34] = { baseMultiplier = 24.31, levelRequirement = 90, cost = { Mana = 413, }, },
- [35] = { baseMultiplier = 26.19, levelRequirement = 90, cost = { Mana = 458, }, },
- [36] = { baseMultiplier = 28.22, levelRequirement = 90, cost = { Mana = 507, }, },
- [37] = { baseMultiplier = 30.4, levelRequirement = 90, cost = { Mana = 562, }, },
- [38] = { baseMultiplier = 32.75, levelRequirement = 90, cost = { Mana = 623, }, },
- [39] = { baseMultiplier = 35.28, levelRequirement = 90, cost = { Mana = 690, }, },
- [40] = { baseMultiplier = 38.01, levelRequirement = 90, cost = { Mana = 765, }, },
+ [1] = { baseMultiplier = 1.5, levelRequirement = 0, cost = { Mana = 13, }, },
+ [2] = { baseMultiplier = 1.65, levelRequirement = 3, cost = { Mana = 15, }, },
+ [3] = { baseMultiplier = 1.83, levelRequirement = 6, cost = { Mana = 17, }, },
+ [4] = { baseMultiplier = 2, levelRequirement = 10, cost = { Mana = 20, }, },
+ [5] = { baseMultiplier = 2.18, levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { baseMultiplier = 2.36, levelRequirement = 18, cost = { Mana = 25, }, },
+ [7] = { baseMultiplier = 2.55, levelRequirement = 22, cost = { Mana = 28, }, },
+ [8] = { baseMultiplier = 2.73, levelRequirement = 26, cost = { Mana = 31, }, },
+ [9] = { baseMultiplier = 2.9, levelRequirement = 31, cost = { Mana = 35, }, },
+ [10] = { baseMultiplier = 3.08, levelRequirement = 36, cost = { Mana = 39, }, },
+ [11] = { baseMultiplier = 3.28, levelRequirement = 41, cost = { Mana = 42, }, },
+ [12] = { baseMultiplier = 3.5, levelRequirement = 46, cost = { Mana = 47, }, },
+ [13] = { baseMultiplier = 3.74, levelRequirement = 52, cost = { Mana = 51, }, },
+ [14] = { baseMultiplier = 3.99, levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { baseMultiplier = 4.27, levelRequirement = 64, cost = { Mana = 61, }, },
+ [16] = { baseMultiplier = 4.58, levelRequirement = 66, cost = { Mana = 66, }, },
+ [17] = { baseMultiplier = 4.92, levelRequirement = 72, cost = { Mana = 72, }, },
+ [18] = { baseMultiplier = 5.28, levelRequirement = 78, cost = { Mana = 78, }, },
+ [19] = { baseMultiplier = 5.68, levelRequirement = 84, cost = { Mana = 84, }, },
+ [20] = { baseMultiplier = 6.12, levelRequirement = 90, cost = { Mana = 91, }, },
+ [21] = { baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 98, }, },
+ [22] = { baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 106, }, },
+ [23] = { baseMultiplier = 7.66, levelRequirement = 90, cost = { Mana = 114, }, },
+ [24] = { baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 123, }, },
+ [25] = { baseMultiplier = 8.89, levelRequirement = 90, cost = { Mana = 132, }, },
+ [26] = { baseMultiplier = 9.57, levelRequirement = 90, cost = { Mana = 142, }, },
+ [27] = { baseMultiplier = 10.31, levelRequirement = 90, cost = { Mana = 152, }, },
+ [28] = { baseMultiplier = 11.11, levelRequirement = 90, cost = { Mana = 163, }, },
+ [29] = { baseMultiplier = 11.97, levelRequirement = 90, cost = { Mana = 174, }, },
+ [30] = { baseMultiplier = 12.89, levelRequirement = 90, cost = { Mana = 187, }, },
+ [31] = { baseMultiplier = 13.89, levelRequirement = 90, cost = { Mana = 200, }, },
+ [32] = { baseMultiplier = 14.96, levelRequirement = 90, cost = { Mana = 213, }, },
+ [33] = { baseMultiplier = 16.12, levelRequirement = 90, cost = { Mana = 228, }, },
+ [34] = { baseMultiplier = 17.37, levelRequirement = 90, cost = { Mana = 243, }, },
+ [35] = { baseMultiplier = 18.71, levelRequirement = 90, cost = { Mana = 260, }, },
+ [36] = { baseMultiplier = 20.16, levelRequirement = 90, cost = { Mana = 277, }, },
+ [37] = { baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 295, }, },
+ [38] = { baseMultiplier = 23.39, levelRequirement = 90, cost = { Mana = 314, }, },
+ [39] = { baseMultiplier = 25.2, levelRequirement = 90, cost = { Mana = 335, }, },
+ [40] = { baseMultiplier = 27.15, levelRequirement = 90, cost = { Mana = 356, }, },
},
statSets = {
[1] = {
@@ -6658,7 +7727,8 @@ skills["SpearOfSolarisPlayer"] = {
{ "attack_maximum_action_distance_+", 60 },
{ "total_attack_time_+_ms", 1400 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 75 },
- { "skill_requires_X_ultimate_charge", 20 },
+ { "active_skill_requires_X_glory", 20 },
+ { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 },
},
stats = {
"is_area_damage",
@@ -6731,6 +7801,7 @@ skills["SpearOfSolarisPlayer"] = {
constantStats = {
{ "attack_maximum_action_distance_+", 60 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 75 },
+ { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 },
{ "active_skill_base_area_of_effect_radius", 20 },
{ "solaris_spear_number_of_pulses", 20 },
{ "solaris_spear_pulse_delay_ms", 200 },
@@ -6741,48 +7812,49 @@ skills["SpearOfSolarisPlayer"] = {
"base_is_projectile",
"base_skill_enabled_while_mounted",
"display_statset_hide_usage_stats",
+ "quality_hide_display_character_panel",
},
levels = {
- [1] = { baseMultiplier = 0.18, actorLevel = 1, },
- [2] = { baseMultiplier = 0.2, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.22, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.24, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.26, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.28, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.31, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.33, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.35, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.37, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 0.39, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 0.42, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 0.45, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 0.48, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 0.51, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 0.55, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 0.59, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 0.63, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 0.68, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 0.73, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 0.79, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 0.85, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 0.92, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 0.99, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 1.07, actorLevel = 136.875, },
- [26] = { baseMultiplier = 1.15, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 1.24, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 1.33, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 1.44, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 1.55, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 1.67, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 1.8, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 1.93, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 2.08, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 2.25, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 2.42, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 2.61, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 2.81, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 3.02, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 3.26, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.27, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.3, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.33, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.36, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.39, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.42, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.46, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.49, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.52, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.55, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 0.59, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 0.63, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 0.67, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 0.72, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 0.77, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 0.82, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 0.89, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 0.95, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.02, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.1, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.19, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 1.28, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 1.38, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 1.48, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 1.6, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 1.72, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 1.86, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 2, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 2.15, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 2.32, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 2.5, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 2.69, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 2.9, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 3.13, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 3.37, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 3.63, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 3.91, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 4.21, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 4.54, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 4.89, actorLevel = 288.29998779297, },
},
},
[3] = {
@@ -6801,8 +7873,9 @@ skills["SpearOfSolarisPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 20 },
{ "attack_maximum_action_distance_+", 60 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 75 },
+ { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 25 },
- { "solaris_spear_ground_expands_to_+%_final_by_skill_end", 30 },
+ { "solaris_spear_ground_expands_to_+%_final_by_skill_end", 100 },
},
stats = {
"is_area_damage",
@@ -6810,48 +7883,49 @@ skills["SpearOfSolarisPlayer"] = {
"base_is_projectile",
"base_skill_enabled_while_mounted",
"display_statset_hide_usage_stats",
+ "quality_hide_display_character_panel",
},
levels = {
- [1] = { baseMultiplier = 2.1, actorLevel = 1, },
- [2] = { baseMultiplier = 2.32, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 2.56, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 2.8, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 3.05, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 3.3, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 3.56, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 3.82, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 4.05, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 4.31, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 4.59, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 4.9, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 5.23, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 5.59, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 5.98, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 6.41, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 6.88, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 7.4, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 7.96, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 8.57, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 9.24, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 9.95, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 10.72, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 11.55, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 12.44, actorLevel = 136.875, },
- [26] = { baseMultiplier = 13.4, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 14.44, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 15.55, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 16.76, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 18.05, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 19.45, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 20.95, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 22.57, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 24.31, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 26.19, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 28.22, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 30.4, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 32.75, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 35.28, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 38.01, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 3.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 20.73, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, },
},
},
}
@@ -6870,46 +7944,46 @@ skills["SpearfieldPlayer"] = {
{ "hazard_rearm_%_chance", 0.5 },
},
levels = {
- [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.12, levelRequirement = 0, cost = { Mana = 6, }, },
- [2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.13, levelRequirement = 3, cost = { Mana = 6, }, },
- [3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.15, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.16, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -30, baseMultiplier = 0.17, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -30, baseMultiplier = 0.19, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -30, baseMultiplier = 0.2, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -30, baseMultiplier = 0.22, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -30, baseMultiplier = 0.23, levelRequirement = 31, cost = { Mana = 13, }, },
- [10] = { attackSpeedMultiplier = -30, baseMultiplier = 0.25, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -30, baseMultiplier = 0.26, levelRequirement = 41, cost = { Mana = 16, }, },
- [12] = { attackSpeedMultiplier = -30, baseMultiplier = 0.28, levelRequirement = 46, cost = { Mana = 18, }, },
- [13] = { attackSpeedMultiplier = -30, baseMultiplier = 0.3, levelRequirement = 52, cost = { Mana = 20, }, },
- [14] = { attackSpeedMultiplier = -30, baseMultiplier = 0.32, levelRequirement = 58, cost = { Mana = 22, }, },
- [15] = { attackSpeedMultiplier = -30, baseMultiplier = 0.34, levelRequirement = 64, cost = { Mana = 25, }, },
- [16] = { attackSpeedMultiplier = -30, baseMultiplier = 0.37, levelRequirement = 66, cost = { Mana = 28, }, },
- [17] = { attackSpeedMultiplier = -30, baseMultiplier = 0.39, levelRequirement = 72, cost = { Mana = 31, }, },
- [18] = { attackSpeedMultiplier = -30, baseMultiplier = 0.42, levelRequirement = 78, cost = { Mana = 34, }, },
- [19] = { attackSpeedMultiplier = -30, baseMultiplier = 0.45, levelRequirement = 84, cost = { Mana = 38, }, },
- [20] = { attackSpeedMultiplier = -30, baseMultiplier = 0.49, levelRequirement = 90, cost = { Mana = 42, }, },
- [21] = { attackSpeedMultiplier = -30, baseMultiplier = 0.53, levelRequirement = 90, cost = { Mana = 46, }, },
- [22] = { attackSpeedMultiplier = -30, baseMultiplier = 0.57, levelRequirement = 90, cost = { Mana = 52, }, },
- [23] = { attackSpeedMultiplier = -30, baseMultiplier = 0.61, levelRequirement = 90, cost = { Mana = 57, }, },
- [24] = { attackSpeedMultiplier = -30, baseMultiplier = 0.66, levelRequirement = 90, cost = { Mana = 63, }, },
- [25] = { attackSpeedMultiplier = -30, baseMultiplier = 0.71, levelRequirement = 90, cost = { Mana = 70, }, },
- [26] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 90, cost = { Mana = 78, }, },
- [27] = { attackSpeedMultiplier = -30, baseMultiplier = 0.83, levelRequirement = 90, cost = { Mana = 86, }, },
- [28] = { attackSpeedMultiplier = -30, baseMultiplier = 0.89, levelRequirement = 90, cost = { Mana = 96, }, },
- [29] = { attackSpeedMultiplier = -30, baseMultiplier = 0.96, levelRequirement = 90, cost = { Mana = 106, }, },
- [30] = { attackSpeedMultiplier = -30, baseMultiplier = 1.03, levelRequirement = 90, cost = { Mana = 118, }, },
- [31] = { attackSpeedMultiplier = -30, baseMultiplier = 1.11, levelRequirement = 90, cost = { Mana = 131, }, },
- [32] = { attackSpeedMultiplier = -30, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 145, }, },
- [33] = { attackSpeedMultiplier = -30, baseMultiplier = 1.29, levelRequirement = 90, cost = { Mana = 161, }, },
- [34] = { attackSpeedMultiplier = -30, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 178, }, },
- [35] = { attackSpeedMultiplier = -30, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 197, }, },
- [36] = { attackSpeedMultiplier = -30, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 219, }, },
- [37] = { attackSpeedMultiplier = -30, baseMultiplier = 1.74, levelRequirement = 90, cost = { Mana = 242, }, },
- [38] = { attackSpeedMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 268, }, },
- [39] = { attackSpeedMultiplier = -30, baseMultiplier = 2.02, levelRequirement = 90, cost = { Mana = 298, }, },
- [40] = { attackSpeedMultiplier = -30, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 330, }, },
+ [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, cost = { Mana = 6, }, },
+ [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, cost = { Mana = 7, }, },
+ [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 8, }, },
+ [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 16, }, },
+ [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 18, }, },
+ [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 24, }, },
+ [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 26, }, },
+ [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 28, }, },
+ [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, cost = { Mana = 31, }, },
+ [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 33, }, },
+ [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 36, }, },
+ [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 39, }, },
+ [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 42, }, },
+ [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 45, }, },
+ [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 49, }, },
+ [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 53, }, },
+ [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 57, }, },
+ [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 61, }, },
+ [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 65, }, },
+ [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 70, }, },
+ [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 75, }, },
+ [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 80, }, },
+ [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 86, }, },
+ [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 92, }, },
+ [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 98, }, },
+ [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 105, }, },
+ [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 112, }, },
+ [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 119, }, },
+ [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 127, }, },
+ [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 135, }, },
+ [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 144, }, },
+ [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 153, }, },
},
statSets = {
[1] = {
@@ -6929,7 +8003,7 @@ skills["SpearfieldPlayer"] = {
{ "spear_wall_cm_per_spear", 20 },
{ "active_skill_base_secondary_area_of_effect_radius", 6 },
{ "spearfield_maim_slows_an_additional_%", 10 },
- { "spearfield_spear_damage_+%_final_after_half_seconds", 300 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
},
stats = {
"active_skill_base_area_of_effect_radius",
@@ -7001,7 +8075,7 @@ skills["SpearfieldPlayer"] = {
{ "attack_maximum_action_distance_+", 40 },
{ "active_skill_base_secondary_area_of_effect_radius", 6 },
{ "spearfield_maim_slows_an_additional_%", 10 },
- { "spearfield_spear_damage_+%_final_after_half_seconds", 300 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
},
stats = {
"active_skill_base_area_of_effect_radius",
@@ -7011,46 +8085,46 @@ skills["SpearfieldPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
},
levels = {
- [1] = { 40, baseMultiplier = 0.12, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 42, baseMultiplier = 0.13, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 43, baseMultiplier = 0.15, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 45, baseMultiplier = 0.16, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 46, baseMultiplier = 0.17, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 48, baseMultiplier = 0.19, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 49, baseMultiplier = 0.2, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 51, baseMultiplier = 0.22, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 52, baseMultiplier = 0.23, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 54, baseMultiplier = 0.25, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 55, baseMultiplier = 0.26, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 57, baseMultiplier = 0.28, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 58, baseMultiplier = 0.3, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 60, baseMultiplier = 0.32, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 61, baseMultiplier = 0.34, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 63, baseMultiplier = 0.37, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 64, baseMultiplier = 0.39, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 66, baseMultiplier = 0.42, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 67, baseMultiplier = 0.45, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 69, baseMultiplier = 0.49, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 70, baseMultiplier = 0.53, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 72, baseMultiplier = 0.57, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 73, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 75, baseMultiplier = 0.66, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 76, baseMultiplier = 0.71, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 78, baseMultiplier = 0.77, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 79, baseMultiplier = 0.83, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, baseMultiplier = 0.89, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 82, baseMultiplier = 0.96, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 84, baseMultiplier = 1.03, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 85, baseMultiplier = 1.11, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 87, baseMultiplier = 1.2, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 88, baseMultiplier = 1.29, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 90, baseMultiplier = 1.39, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 91, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 93, baseMultiplier = 1.61, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 94, baseMultiplier = 1.74, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 96, baseMultiplier = 1.87, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 97, baseMultiplier = 2.02, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 99, baseMultiplier = 2.17, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 40, baseMultiplier = 0.5, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 42, baseMultiplier = 0.55, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 43, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 45, baseMultiplier = 0.67, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 46, baseMultiplier = 0.73, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 48, baseMultiplier = 0.79, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 49, baseMultiplier = 0.85, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 51, baseMultiplier = 0.91, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 52, baseMultiplier = 0.97, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 54, baseMultiplier = 1.03, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 55, baseMultiplier = 1.09, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 57, baseMultiplier = 1.17, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 58, baseMultiplier = 1.25, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 60, baseMultiplier = 1.33, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 61, baseMultiplier = 1.42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 63, baseMultiplier = 1.53, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 64, baseMultiplier = 1.64, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 66, baseMultiplier = 1.76, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 67, baseMultiplier = 1.89, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 69, baseMultiplier = 2.04, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 70, baseMultiplier = 2.2, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 72, baseMultiplier = 2.37, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 73, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, baseMultiplier = 2.75, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 76, baseMultiplier = 2.96, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 78, baseMultiplier = 3.19, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 79, baseMultiplier = 3.44, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 81, baseMultiplier = 3.7, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 82, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 84, baseMultiplier = 4.3, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 85, baseMultiplier = 4.63, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 87, baseMultiplier = 4.99, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 88, baseMultiplier = 5.37, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 90, baseMultiplier = 5.79, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 91, baseMultiplier = 6.24, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 93, baseMultiplier = 6.72, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 94, baseMultiplier = 7.24, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 96, baseMultiplier = 7.8, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 97, baseMultiplier = 8.4, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 99, baseMultiplier = 9.05, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -7060,7 +8134,7 @@ skills["SpiralVolleyPlayer"] = {
baseTypeName = "Spiral Volley",
color = 2,
description = "Load your Bow with a volley of enchanted arrows and fire them in a circle as you spin forward, firing directly at targets if possible. Consumes Frenzy Charges to cause the arrows to deal more damage and Chain to other targets. Each target can only be Hit once.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.Bow] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -7069,46 +8143,46 @@ skills["SpiralVolleyPlayer"] = {
{ "base_number_of_projectiles", 0.2 },
},
levels = {
- [1] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 7, }, },
- [2] = { baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 9, }, },
+ [1] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 8, }, },
[4] = { baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 10, }, },
- [5] = { baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 12, }, },
+ [5] = { baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 11, }, },
[6] = { baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 16, }, },
- [8] = { baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 18, }, },
- [9] = { baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 27, }, },
- [12] = { baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 31, }, },
- [13] = { baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 36, }, },
- [14] = { baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 42, }, },
- [15] = { baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 48, }, },
- [16] = { baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 55, }, },
- [17] = { baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 63, }, },
- [18] = { baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 73, }, },
- [19] = { baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 83, }, },
- [20] = { baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 96, }, },
- [21] = { baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 110, }, },
- [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 127, }, },
- [23] = { baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 145, }, },
- [24] = { baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 167, }, },
- [25] = { baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 192, }, },
- [26] = { baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 220, }, },
- [27] = { baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 253, }, },
- [28] = { baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 290, }, },
- [29] = { baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 333, }, },
- [30] = { baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 383, }, },
- [31] = { baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 439, }, },
- [32] = { baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 505, }, },
- [33] = { baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 579, }, },
- [34] = { baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 665, }, },
- [35] = { baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 764, }, },
- [36] = { baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 877, }, },
- [37] = { baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 1006, }, },
- [38] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 1155, }, },
- [39] = { baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 1327, }, },
- [40] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 1523, }, },
+ [7] = { baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 17, }, },
+ [9] = { baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 19, }, },
+ [10] = { baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 22, }, },
+ [11] = { baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 24, }, },
+ [12] = { baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 27, }, },
+ [13] = { baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 31, }, },
+ [14] = { baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 34, }, },
+ [15] = { baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 38, }, },
+ [16] = { baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 42, }, },
+ [17] = { baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 47, }, },
+ [18] = { baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 52, }, },
+ [19] = { baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 58, }, },
+ [20] = { baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 64, }, },
+ [21] = { baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 71, }, },
+ [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 78, }, },
+ [23] = { baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 86, }, },
+ [24] = { baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 94, }, },
+ [25] = { baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 103, }, },
+ [26] = { baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 114, }, },
+ [27] = { baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 125, }, },
+ [28] = { baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 136, }, },
+ [29] = { baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 149, }, },
+ [30] = { baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 163, }, },
+ [31] = { baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 179, }, },
+ [32] = { baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 195, }, },
+ [33] = { baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 213, }, },
+ [34] = { baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 233, }, },
+ [35] = { baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 254, }, },
+ [36] = { baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 276, }, },
+ [37] = { baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 301, }, },
+ [38] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 328, }, },
+ [39] = { baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 357, }, },
+ [40] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 388, }, },
},
statSets = {
[1] = {
@@ -7145,6 +8219,7 @@ skills["SpiralVolleyPlayer"] = {
"active_skill_enable_movement_cancelling",
"projectile_uses_contact_position",
"projectile_uses_contact_direction",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7196,7 +8271,7 @@ skills["StormLancePlayer"] = {
baseTypeName = "Storm Lance",
color = 2,
description = "Throw an electrified Spear that lodges in the ground and periodically zaps nearby enemies with Lightning bolts. If the Spear is Detonated by another Skill, it immediately unleashes a volley of bolts and expires. Consumes a Frenzy Charge if possible to fire bolts more frequently for a shorter duration, automatically Detonate at the end of its duration, and create Shocked Ground on Detonation.",
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.CanRapidFire] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, },
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -7205,46 +8280,46 @@ skills["StormLancePlayer"] = {
{ "base_number_of_overcharged_spears_allowed", 0.05 },
},
levels = {
- [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 7, }, },
+ [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 29, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 32, }, },
+ [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 33, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 36, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 40, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 44, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 49, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 54, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 60, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 67, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 74, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 82, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 91, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 101, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 112, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 124, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 137, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 152, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 169, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 187, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 207, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 230, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 255, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 283, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 313, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 347, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 385, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 42, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 46, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 49, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 53, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 57, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 62, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 66, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 71, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 76, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 82, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 88, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 100, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 107, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 114, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 122, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 130, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 139, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 148, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 158, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 168, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 179, }, },
},
statSets = {
[1] = {
@@ -7258,7 +8333,7 @@ skills["StormLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_skill_effect_duration", 6000 },
{ "base_number_of_overcharged_spears_allowed", 3 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 },
@@ -7340,7 +8415,7 @@ skills["StormLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_overcharged_spears_allowed", 3 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 },
{ "active_skill_base_area_of_effect_radius", 20 },
@@ -7424,7 +8499,7 @@ skills["StormLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_skill_effect_duration", 6000 },
{ "base_number_of_overcharged_spears_allowed", 3 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 },
@@ -7501,7 +8576,7 @@ skills["StormLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_skill_effect_duration", 6000 },
{ "base_number_of_overcharged_spears_allowed", 3 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 },
@@ -7571,8 +8646,8 @@ skills["StormcallerArrowPlayer"] = {
name = "Stormcaller Arrow",
baseTypeName = "Stormcaller Arrow",
color = 2,
- description = "Fire an arrow that embeds where it lands for a short duration. At the end of the duration, a Lightning Bolt strikes the arrow, disintegrating it and damaging enemies with a high chance to Shock. Shocks caused by the Bolt will spread to Enemies near the impact.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, },
+ description = "Fire an arrow that embeds where it lands for a short duration. At the end of the duration, a Lightning Bolt strikes the arrow, disintegrating it and damaging enemies, with a high chance to Shock. Shocking any enemy with the Bolt also applies Shock to all enemies near the impact.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -7584,43 +8659,43 @@ skills["StormcallerArrowPlayer"] = {
[1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 8, }, },
[3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 9, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 10, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 11, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 14, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 15, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 17, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 19, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 21, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 23, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 26, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 29, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 32, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 12, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 14, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 17, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 19, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 21, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 23, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 26, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 28, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 31, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 33, }, },
[16] = { attackSpeedMultiplier = -20, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 36, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 39, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 44, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 49, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 54, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 60, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 66, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 73, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 81, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 90, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 100, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 111, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 123, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 136, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 151, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 168, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 186, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 206, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 228, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 253, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 280, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 311, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 344, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 382, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 423, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 43, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 46, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 50, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 54, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 58, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 63, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 68, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 73, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 78, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 84, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 90, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 96, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 103, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 110, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 118, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 126, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 134, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 143, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 153, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 163, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 174, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 185, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 197, }, },
},
statSets = {
[1] = {
@@ -7636,7 +8711,7 @@ skills["StormcallerArrowPlayer"] = {
{ "base_skill_effect_duration", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_is_projectile",
@@ -7647,6 +8722,7 @@ skills["StormcallerArrowPlayer"] = {
"has_modular_projectiles_enabled",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7705,7 +8781,7 @@ skills["StormcallerArrowPlayer"] = {
{ "base_skill_effect_duration", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "active_skill_shock_chance_+%_final", 500 },
},
@@ -7720,6 +8796,7 @@ skills["StormcallerArrowPlayer"] = {
"has_modular_projectiles_enabled",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
},
@@ -7773,52 +8850,52 @@ skills["TameBeastPlayer"] = {
baseTypeName = "Tame Beast",
color = 2,
description = "Conjure Azmeri wisps to engulf a Rare Beast for a duration, Hindering them. If you defeat the Beast while it is engulfed in wisps, it will be captured by this gem, transforming the gem to instead allow you to summon the Beast as a Reviving Companion.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.Companion] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.Companion] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
{ "base_skill_effect_duration", 80 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 23, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 22, }, },
[2] = { levelRequirement = 3, cost = { Mana = 25, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 27, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 29, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 31, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 33, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 35, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 41, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 50, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 67, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 77, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 117, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 235, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 252, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 271, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 311, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 334, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 28, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 32, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 35, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 38, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 42, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 45, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 49, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 53, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 57, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 61, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 65, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 70, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 74, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 79, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 84, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 89, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 94, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 99, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 116, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 121, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 128, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 147, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 154, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 161, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 168, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 175, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 183, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 191, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 199, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 207, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 216, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 224, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 233, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 243, }, },
},
statSets = {
[1] = {
@@ -7831,7 +8908,7 @@ skills["TameBeastPlayer"] = {
{ "spell_maximum_action_distance_+%", -82 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "tame_beast_hinder_%", 30 },
},
stats = {
@@ -7842,6 +8919,9 @@ skills["TameBeastPlayer"] = {
"quality_display_base_skill_effect_duration_is_gem",
"display_tame_beast_mod_limit",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, },
[2] = { 8200, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
@@ -7891,56 +8971,56 @@ skills["ThunderousLeapPlayer"] = {
name = "Thunderous Leap",
baseTypeName = "Thunderous Leap",
color = 2,
- description = "Leap into the air and plunge your Spear into the ground at the target location, emitting a Lightning-charged shockwave.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Travel] = true, [SkillType.Spear] = true, [SkillType.Jumping] = true, [SkillType.Slam] = true, [SkillType.Lightning] = true, [SkillType.Melee] = true, },
+ description = "Leap into the air and plunge your Spear into the ground at the target location, emitting a Lightning-charged shockwave and Detonating Spear skills.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Travel] = true, [SkillType.Spear] = true, [SkillType.Jumping] = true, [SkillType.Slam] = true, [SkillType.Lightning] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.25 },
+ { "thunderous_leap_%_chance_for_shocked_ground_when_detonating", 1.5 },
},
levels = {
[1] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 11, }, },
- [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 12, }, },
+ [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 13, }, },
[3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 14, }, },
- [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 17, }, },
- [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 19, }, },
- [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 21, }, },
- [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 23, }, },
- [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 26, }, },
- [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 29, }, },
- [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 32, }, },
- [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 36, }, },
- [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 39, }, },
- [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 44, }, },
- [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 48, }, },
- [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 54, }, },
+ [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 17, }, },
+ [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 19, }, },
+ [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 21, }, },
+ [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 24, }, },
+ [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 26, }, },
+ [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 29, }, },
+ [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 32, }, },
+ [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 35, }, },
+ [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 39, }, },
+ [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 42, }, },
+ [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 46, }, },
+ [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 51, }, },
+ [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 55, }, },
[17] = { baseMultiplier = 3.61, levelRequirement = 72, cost = { Mana = 60, }, },
- [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 66, }, },
- [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 73, }, },
- [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 81, }, },
- [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 90, }, },
- [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 100, }, },
- [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 111, }, },
- [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 123, }, },
- [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 136, }, },
- [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 151, }, },
- [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 167, }, },
- [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 186, }, },
- [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 206, }, },
- [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 228, }, },
- [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 253, }, },
- [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 280, }, },
- [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 310, }, },
- [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 344, }, },
- [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 381, }, },
- [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 422, }, },
- [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 468, }, },
- [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 519, }, },
- [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 575, }, },
- [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 637, }, },
+ [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 65, }, },
+ [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 70, }, },
+ [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 76, }, },
+ [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 82, }, },
+ [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 88, }, },
+ [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 95, }, },
+ [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 102, }, },
+ [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 110, }, },
+ [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 118, }, },
+ [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 127, }, },
+ [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 136, }, },
+ [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 145, }, },
+ [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 156, }, },
+ [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 166, }, },
+ [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 178, }, },
+ [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 190, }, },
+ [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 203, }, },
+ [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 216, }, },
+ [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 231, }, },
+ [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 246, }, },
+ [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 262, }, },
+ [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 279, }, },
+ [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 297, }, },
},
statSets = {
[1] = {
@@ -8014,8 +9094,8 @@ skills["TornadoShotPlayer"] = {
name = "Tornado Shot",
baseTypeName = "Tornado Shot",
color = 2,
- description = "Fire a skyward shot that whips up a Tornado where it lands, dealing Physical damage over time and Hindering enemies standing in it. Arrows, thrown Spears and Crossbow bolts fired at the Tornado are sucked into it, causing the Tornado to spit out a nova of copied Projectiles. Copied Projectiles cannot be copied again, even by further Tornados.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.CannotChain] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, },
+ description = "Fire a skyward shot that whips up a Tornado where it lands, dealing Physical damage over time and Hindering enemies standing in it. Arrows, thrown Spears and Crossbow bolts fired at the Tornado are sucked into it, causing the Tornado to spit out a ring of copied Projectiles. Copied Projectiles cannot be copied again, even by further Tornados.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Barrageable] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.CannotChain] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ObjectDurability] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -8026,44 +9106,44 @@ skills["TornadoShotPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 13, }, },
[2] = { attackSpeedMultiplier = 20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 16, }, },
- [4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 18, }, },
- [5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 20, }, },
- [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 22, }, },
- [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 27, }, },
- [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 30, }, },
- [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 34, }, },
- [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 37, }, },
- [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 42, }, },
- [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 46, }, },
- [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 51, }, },
- [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 57, }, },
- [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 63, }, },
+ [3] = { attackSpeedMultiplier = 20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 17, }, },
+ [4] = { attackSpeedMultiplier = 20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 19, }, },
+ [5] = { attackSpeedMultiplier = 20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 22, }, },
+ [6] = { attackSpeedMultiplier = 20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 25, }, },
+ [7] = { attackSpeedMultiplier = 20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 28, }, },
+ [8] = { attackSpeedMultiplier = 20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 31, }, },
+ [9] = { attackSpeedMultiplier = 20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 34, }, },
+ [10] = { attackSpeedMultiplier = 20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 37, }, },
+ [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 41, }, },
+ [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 45, }, },
+ [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 50, }, },
+ [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 54, }, },
+ [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 59, }, },
+ [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 64, }, },
[17] = { attackSpeedMultiplier = 20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 70, }, },
- [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 77, }, },
- [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 86, }, },
- [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 95, }, },
- [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 105, }, },
- [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 117, }, },
- [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 130, }, },
- [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 144, }, },
- [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 159, }, },
- [26] = { attackSpeedMultiplier = 20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 176, }, },
- [27] = { attackSpeedMultiplier = 20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 196, }, },
- [28] = { attackSpeedMultiplier = 20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 217, }, },
- [29] = { attackSpeedMultiplier = 20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 240, }, },
- [30] = { attackSpeedMultiplier = 20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 266, }, },
- [31] = { attackSpeedMultiplier = 20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 295, }, },
- [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 327, }, },
- [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 362, }, },
- [34] = { attackSpeedMultiplier = 20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 402, }, },
- [35] = { attackSpeedMultiplier = 20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 445, }, },
- [36] = { attackSpeedMultiplier = 20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 493, }, },
- [37] = { attackSpeedMultiplier = 20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 547, }, },
- [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 606, }, },
- [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 671, }, },
- [40] = { attackSpeedMultiplier = 20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 744, }, },
+ [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 76, }, },
+ [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 82, }, },
+ [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 88, }, },
+ [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 96, }, },
+ [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 103, }, },
+ [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 111, }, },
+ [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 119, }, },
+ [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 128, }, },
+ [26] = { attackSpeedMultiplier = 20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 138, }, },
+ [27] = { attackSpeedMultiplier = 20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 148, }, },
+ [28] = { attackSpeedMultiplier = 20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 158, }, },
+ [29] = { attackSpeedMultiplier = 20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 170, }, },
+ [30] = { attackSpeedMultiplier = 20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 182, }, },
+ [31] = { attackSpeedMultiplier = 20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 194, }, },
+ [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 208, }, },
+ [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 222, }, },
+ [34] = { attackSpeedMultiplier = 20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 237, }, },
+ [35] = { attackSpeedMultiplier = 20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 253, }, },
+ [36] = { attackSpeedMultiplier = 20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 269, }, },
+ [37] = { attackSpeedMultiplier = 20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 287, }, },
+ [38] = { attackSpeedMultiplier = 20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 306, }, },
+ [39] = { attackSpeedMultiplier = 20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 326, }, },
+ [40] = { attackSpeedMultiplier = 20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 346, }, },
},
statSets = {
[1] = {
@@ -8080,8 +9160,9 @@ skills["TornadoShotPlayer"] = {
{ "active_skill_base_secondary_area_of_effect_radius", 30 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_tornado_shots_allowed", 1 },
+ { "console_cast_on_self_custom_range", 10 },
},
stats = {
"tornado_shot_number_of_hits_allowed",
@@ -8138,8 +9219,8 @@ skills["TornadoShotPlayer"] = {
[2] = {
label = "Tornado",
baseEffectiveness = 4,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
statDescriptionScope = "tornado_shot_statset_1",
baseFlags = {
attack = true,
@@ -8155,8 +9236,9 @@ skills["TornadoShotPlayer"] = {
{ "active_skill_base_secondary_area_of_effect_radius", 30 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_tornado_shots_allowed", 1 },
+ { "console_cast_on_self_custom_range", 10 },
{ "base_number_of_projectiles", 3 },
{ "tornado_shot_projectile_range", 60 },
},
@@ -8176,47 +9258,246 @@ skills["TornadoShotPlayer"] = {
"display_statset_no_hit_damage",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 259, 5, -60, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 382, 5, -59, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 557, 5, -58, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 755, 5, -57, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 979, 5, -56, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 1233, 6, -55, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 1521, 6, -54, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 1846, 6, -53, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 2215, 6, -52, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 2632, 6, -51, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 3104, 7, -50, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 3639, 7, -49, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 4246, 7, -48, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 4934, 7, -47, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 5715, 7, -46, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6602, 8, -45, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7611, 8, -44, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 8759, 8, -43, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 10067, 8, -42, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 11558, 8, -41, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 13259, 9, -40, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 15203, 9, -39, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 17425, 9, -38, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 19969, 9, -37, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 22885, 9, -36, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 26229, 10, -35, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 30071, 10, -34, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 34488, 10, -33, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 39574, 10, -32, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 45435, 10, -31, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 52200, 11, -30, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 60016, 11, -29, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 69058, 11, -28, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 79533, 11, -27, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 91683, 11, -26, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 105794, 12, -25, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 122206, 12, -24, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 141318, 12, -23, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 163605, 12, -22, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 189632, 12, -21, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [2] = { 377, 5, -59, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 545, 5, -58, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 738, 5, -57, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 958, 5, -56, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1210, 6, -55, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 1497, 6, -54, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 1826, 6, -53, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 2202, 6, -52, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 2631, 6, -51, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 3123, 7, -50, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3685, 7, -49, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 4330, 7, -48, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 5070, 7, -47, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 5919, 7, -46, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 6895, 8, -45, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 8018, 8, -44, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9311, 8, -43, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 10801, 8, -42, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 12522, 8, -41, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 14510, 9, -40, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 16810, 9, -39, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 19474, 9, -38, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 22564, 9, -37, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 26153, 9, -36, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 30328, 10, -35, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 35189, 10, -34, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 40858, 10, -33, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 47479, 10, -32, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 55223, 10, -31, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 64293, 11, -30, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 74932, 11, -29, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 87431, 11, -28, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 102136, 11, -27, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 119466, 11, -26, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 139919, 12, -25, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 164098, 12, -24, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 192728, 12, -23, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 226682, 12, -22, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 267018, 12, -21, 15000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ToxicDomainPlayer"] = {
+ name = "Toxic Domain",
+ baseTypeName = "Toxic Domain",
+ color = 2,
+ description = "Create an area of Toxic Bloom on the ground around you. While in the Bloom, you have increased Skill costs, Regenerate Life, and your Projectile Attacks attach a Toxic Pustule, which can be Poisoned. Pustules will Detonate after a duration or when enough Poison has been applied, dealing more damage based on the stored Poison damage and applying Poison in an area around it.",
+ skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Chaos] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Attack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Physical] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.15 },
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.38, storedUses = 1, levelRequirement = 0, cooldown = 11, cost = { Mana = 24, }, },
+ [2] = { baseMultiplier = 0.42, storedUses = 1, levelRequirement = 3, cooldown = 11, cost = { Mana = 27, }, },
+ [3] = { baseMultiplier = 0.46, storedUses = 1, levelRequirement = 6, cooldown = 11, cost = { Mana = 31, }, },
+ [4] = { baseMultiplier = 0.5, storedUses = 1, levelRequirement = 10, cooldown = 11, cost = { Mana = 34, }, },
+ [5] = { baseMultiplier = 0.54, storedUses = 1, levelRequirement = 14, cooldown = 11, cost = { Mana = 38, }, },
+ [6] = { baseMultiplier = 0.58, storedUses = 1, levelRequirement = 18, cooldown = 11, cost = { Mana = 41, }, },
+ [7] = { baseMultiplier = 0.62, storedUses = 1, levelRequirement = 22, cooldown = 11, cost = { Mana = 45, }, },
+ [8] = { baseMultiplier = 0.66, storedUses = 1, levelRequirement = 26, cooldown = 11, cost = { Mana = 49, }, },
+ [9] = { baseMultiplier = 0.69, storedUses = 1, levelRequirement = 31, cooldown = 11, cost = { Mana = 53, }, },
+ [10] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 36, cooldown = 11, cost = { Mana = 57, }, },
+ [11] = { baseMultiplier = 0.76, storedUses = 1, levelRequirement = 41, cooldown = 11, cost = { Mana = 61, }, },
+ [12] = { baseMultiplier = 0.8, storedUses = 1, levelRequirement = 46, cooldown = 11, cost = { Mana = 66, }, },
+ [13] = { baseMultiplier = 0.84, storedUses = 1, levelRequirement = 52, cooldown = 11, cost = { Mana = 70, }, },
+ [14] = { baseMultiplier = 0.88, storedUses = 1, levelRequirement = 58, cooldown = 11, cost = { Mana = 75, }, },
+ [15] = { baseMultiplier = 0.93, storedUses = 1, levelRequirement = 64, cooldown = 11, cost = { Mana = 80, }, },
+ [16] = { baseMultiplier = 0.98, storedUses = 1, levelRequirement = 66, cooldown = 11, cost = { Mana = 85, }, },
+ [17] = { baseMultiplier = 1.02, storedUses = 1, levelRequirement = 72, cooldown = 11, cost = { Mana = 90, }, },
+ [18] = { baseMultiplier = 1.08, storedUses = 1, levelRequirement = 78, cooldown = 11, cost = { Mana = 95, }, },
+ [19] = { baseMultiplier = 1.13, storedUses = 1, levelRequirement = 84, cooldown = 11, cost = { Mana = 101, }, },
+ [20] = { baseMultiplier = 1.19, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 106, }, },
+ [21] = { baseMultiplier = 1.24, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 112, }, },
+ [22] = { baseMultiplier = 1.31, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 118, }, },
+ [23] = { baseMultiplier = 1.37, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 124, }, },
+ [24] = { baseMultiplier = 1.44, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 130, }, },
+ [25] = { baseMultiplier = 1.51, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 137, }, },
+ [26] = { baseMultiplier = 1.59, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 144, }, },
+ [27] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 151, }, },
+ [28] = { baseMultiplier = 1.75, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 158, }, },
+ [29] = { baseMultiplier = 1.84, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 165, }, },
+ [30] = { baseMultiplier = 1.93, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 173, }, },
+ [31] = { baseMultiplier = 2.03, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 180, }, },
+ [32] = { baseMultiplier = 2.13, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 188, }, },
+ [33] = { baseMultiplier = 2.23, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 196, }, },
+ [34] = { baseMultiplier = 2.35, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 205, }, },
+ [35] = { baseMultiplier = 2.46, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 214, }, },
+ [36] = { baseMultiplier = 2.59, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 222, }, },
+ [37] = { baseMultiplier = 2.72, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 232, }, },
+ [38] = { baseMultiplier = 2.85, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 241, }, },
+ [39] = { baseMultiplier = 2.99, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 251, }, },
+ [40] = { baseMultiplier = 3.14, storedUses = 1, levelRequirement = 90, cooldown = 11, cost = { Mana = 261, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Toxic Bloom",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "toxic_domain_statset_0",
+ baseFlags = {
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "toxic_domain_healing_per_minute_+", 100 },
+ { "toxic_domain_mana_cost_+%", 25 },
+ { "toxic_domain_pustule_chance_%", 100 },
+ { "toxic_domain_pustule_poison_explode_threshold", 0 },
+ { "active_skill_base_area_of_effect_radius", 30 },
+ { "base_skill_effect_duration", 8000 },
+ { "skill_specific_stat_description_mode", 1 },
+ },
+ stats = {
+ "toxic_domain_pustule_poison_explode_threshold",
+ "toxic_domain_healing_per_minute_+",
+ "can_perform_skill_while_moving",
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { 255, 240, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 465, 348, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 795, 456, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1275, 564, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1905, 672, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 2730, 780, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 3870, 888, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 5385, 996, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7365, 1104, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 10005, 1212, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 13425, 1320, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 17850, 1428, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 23610, 1536, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 30960, 1644, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 40455, 1752, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 52680, 1860, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 68280, 1968, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 88080, 2076, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 113325, 2184, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 145365, 2400, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 154620, 2508, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 171030, 2616, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 198720, 2724, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 233250, 2832, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 276345, 2940, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 295545, 3048, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 315975, 3156, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 337695, 3264, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 360795, 3372, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 385365, 3480, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 408045, 3588, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 432060, 3696, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 457440, 3804, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 484275, 3912, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 512700, 4020, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 542685, 4128, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 574440, 4236, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 607950, 4344, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 643440, 4452, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 680925, 4560, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Pustule Explosion",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "toxic_domain_statset_1",
+ baseFlags = {
+ attack = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "toxic_domain_healing_per_minute_+", 100 },
+ { "toxic_domain_mana_cost_+%", 25 },
+ { "toxic_domain_pustule_chance_%", 100 },
+ { "toxic_domain_pustule_poison_explode_threshold", 0 },
+ { "base_skill_effect_duration", 8000 },
+ { "skill_specific_stat_description_mode", 1 },
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "base_skill_detonation_time", 6000 },
+ { "base_chance_to_poison_on_hit_%", 100 },
+ { "toxic_domain_max_damage_+%_final_from_stored_poison", 300 },
+ },
+ stats = {
+ "toxic_domain_+1%_final_more_damage_per_x_stored_poison",
+ "toxic_domain_+1%_final_more_damage_per_x_stored_poison",
+ "can_perform_skill_while_moving",
+ "is_area_damage",
+ "skill_no_cost_or_reservation",
+ },
+ levels = {
+ [1] = { 2, 2, baseMultiplier = 0.38, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 3, baseMultiplier = 0.42, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 5, 5, baseMultiplier = 0.46, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, 9, baseMultiplier = 0.5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 12, 12, baseMultiplier = 0.54, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 19, 19, baseMultiplier = 0.58, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 26, baseMultiplier = 0.62, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 36, 36, baseMultiplier = 0.66, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 49, 49, baseMultiplier = 0.69, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 66, 66, baseMultiplier = 0.73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 89, 89, baseMultiplier = 0.76, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 119, 119, baseMultiplier = 0.8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 157, 157, baseMultiplier = 0.84, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 206, 206, baseMultiplier = 0.88, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 270, 270, baseMultiplier = 0.93, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 351, 351, baseMultiplier = 0.98, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 455, 455, baseMultiplier = 1.02, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 588, 588, baseMultiplier = 1.08, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 755, 755, baseMultiplier = 1.13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 969, 969, baseMultiplier = 1.19, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1032, 1032, baseMultiplier = 1.24, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1141, 1141, baseMultiplier = 1.31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1324, 1324, baseMultiplier = 1.37, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1555, 1555, baseMultiplier = 1.44, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1843, 1843, baseMultiplier = 1.51, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1971, 1971, baseMultiplier = 1.59, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 2107, 2107, baseMultiplier = 1.67, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2252, 2252, baseMultiplier = 1.75, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 2405, 2405, baseMultiplier = 1.84, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 2568, 2568, baseMultiplier = 1.93, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 2721, 2721, baseMultiplier = 2.03, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2880, 2880, baseMultiplier = 2.13, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 3049, 3049, baseMultiplier = 2.23, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 3229, 3229, baseMultiplier = 2.35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3417, 3417, baseMultiplier = 2.46, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3619, 3619, baseMultiplier = 2.59, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 3829, 3829, baseMultiplier = 2.72, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4053, 4053, baseMultiplier = 2.85, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 4290, 4290, baseMultiplier = 2.99, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 4540, 4540, baseMultiplier = 3.14, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -8225,8 +9506,8 @@ skills["ToxicGrowthPlayer"] = {
name = "Toxic Growth",
baseTypeName = "Toxic Growth",
color = 2,
- description = "Leap into the air and fire a volley of arrows which cause toxic pustules to sprout from the ground on impact. The pustules explode after a delay and can be Poisoned, causing them to explode faster and more violently.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Limit] = true, },
+ description = "Fire a rain of Toxic Pustules into the air. The Pustules deal damage on impact, then Detonate after a delay. They can also be Poisoned, causing them to Detonate faster and more violently.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.Bow] = true, [SkillType.Limit] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Rain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Barrageable] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -8236,50 +9517,50 @@ skills["ToxicGrowthPlayer"] = {
{ "number_of_poisonbloom_arrow_bloom_allowed", 0.1 },
},
levels = {
- [1] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 15, }, },
- [2] = { baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 27, }, },
- [8] = { baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 30, }, },
- [9] = { baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 34, }, },
- [10] = { baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 37, }, },
- [11] = { baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 41, }, },
- [12] = { baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 46, }, },
- [13] = { baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 51, }, },
- [14] = { baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 57, }, },
- [15] = { baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 63, }, },
- [16] = { baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 69, }, },
- [17] = { baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 77, }, },
- [18] = { baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 85, }, },
- [19] = { baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 95, }, },
- [20] = { baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 105, }, },
- [21] = { baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 116, }, },
- [22] = { baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 129, }, },
- [23] = { baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 143, }, },
- [24] = { baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 159, }, },
- [25] = { baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 176, }, },
- [26] = { baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 195, }, },
- [27] = { baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 216, }, },
- [28] = { baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 239, }, },
- [29] = { baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 265, }, },
- [30] = { baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 294, }, },
- [31] = { baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 326, }, },
- [32] = { baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 361, }, },
- [33] = { baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 400, }, },
- [34] = { baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 444, }, },
- [35] = { baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 492, }, },
- [36] = { baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 545, }, },
- [37] = { baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 604, }, },
- [38] = { baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 669, }, },
- [39] = { baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 741, }, },
- [40] = { baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 822, }, },
+ [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.22, levelRequirement = 3, cost = { Mana = 16, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.24, levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.26, levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.28, levelRequirement = 14, cost = { Mana = 24, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.31, levelRequirement = 18, cost = { Mana = 27, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.33, levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.35, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.36, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.38, levelRequirement = 36, cost = { Mana = 41, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.4, levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.42, levelRequirement = 46, cost = { Mana = 50, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 0.44, levelRequirement = 52, cost = { Mana = 55, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 0.47, levelRequirement = 58, cost = { Mana = 60, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 64, cost = { Mana = 65, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 0.51, levelRequirement = 66, cost = { Mana = 71, }, },
+ [17] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 72, cost = { Mana = 77, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 0.57, levelRequirement = 78, cost = { Mana = 84, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 84, cost = { Mana = 90, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 0.62, levelRequirement = 90, cost = { Mana = 98, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 0.65, levelRequirement = 90, cost = { Mana = 106, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 90, cost = { Mana = 114, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 90, cost = { Mana = 123, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 0.76, levelRequirement = 90, cost = { Mana = 132, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 90, cost = { Mana = 142, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 90, cost = { Mana = 152, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 90, cost = { Mana = 163, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 0.92, levelRequirement = 90, cost = { Mana = 175, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 90, cost = { Mana = 187, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 1.02, levelRequirement = 90, cost = { Mana = 201, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 1.07, levelRequirement = 90, cost = { Mana = 215, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 90, cost = { Mana = 229, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 90, cost = { Mana = 245, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 1.24, levelRequirement = 90, cost = { Mana = 262, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 90, cost = { Mana = 279, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 90, cost = { Mana = 298, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 90, cost = { Mana = 317, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 338, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 90, cost = { Mana = 360, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 90, cost = { Mana = 383, }, },
},
statSets = {
[1] = {
- label = "Arrow",
+ label = "Pustules",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "poisonbloom_arrow_statset_0",
baseFlags = {
@@ -8294,12 +9575,14 @@ skills["ToxicGrowthPlayer"] = {
{ "fixed_projectile_spread", 100 },
{ "number_of_projectiles_override", 1 },
{ "active_skill_base_secondary_area_of_effect_radius", 45 },
- { "total_attack_time_+_ms", 700 },
{ "active_skill_projectile_speed_+%_variation_final", 150 },
{ "poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison", 300 },
{ "poisonbloom_arrow_max_additional_burst_base_radius_+", 15 },
{ "range_backflip_conditional_distance", 46 },
{ "number_of_poisonbloom_arrow_bloom_allowed", 8 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison",
@@ -8307,6 +9590,7 @@ skills["ToxicGrowthPlayer"] = {
"poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison",
"base_is_projectile",
"skill_can_fire_arrows",
+ "can_perform_skill_while_moving",
"has_modular_projectiles_enabled",
"projectiles_fire_at_ground",
"disable_visual_hit_effect",
@@ -8355,6 +9639,87 @@ skills["ToxicGrowthPlayer"] = {
[40] = { 4540, 2178, 45395, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
+ [2] = {
+ label = "Explosion",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "poisonbloom_arrow_statset_1",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 8 },
+ { "base_skill_detonation_time", 15000 },
+ { "fixed_projectile_spread", 100 },
+ { "number_of_projectiles_override", 1 },
+ { "active_skill_base_secondary_area_of_effect_radius", 45 },
+ { "active_skill_projectile_speed_+%_variation_final", 150 },
+ { "poisonbloom_arrow_bloom_max_burst_damage_+%_final_from_stored_poison", 300 },
+ { "poisonbloom_arrow_max_additional_burst_base_radius_+", 15 },
+ { "range_backflip_conditional_distance", 46 },
+ { "number_of_poisonbloom_arrow_bloom_allowed", 8 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_chance_to_poison_on_hit_%", 100 },
+ { "skill_specific_stat_description_mode", 1 },
+ },
+ stats = {
+ "poisonbloom_arrow_bloom_burst_1%_more_damage_per_x_stored_poison",
+ "poisonbloom_arrow_duration_expires_1%_faster_per_x_stored_poison_damage",
+ "poisonbloom_arrow_burst_base_radius_+1_per_x_stored_poison",
+ "base_is_projectile",
+ "skill_can_fire_arrows",
+ "can_perform_skill_while_moving",
+ "has_modular_projectiles_enabled",
+ "projectiles_fire_at_ground",
+ "disable_visual_hit_effect",
+ "quality_display_base_number_of_projectiles_is_gem",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { 2, 1, 17, baseMultiplier = 0.32, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 1, 31, baseMultiplier = 0.35, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 5, 2, 53, baseMultiplier = 0.39, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, 4, 85, baseMultiplier = 0.42, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 12, 6, 127, baseMultiplier = 0.46, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 19, 8, 182, baseMultiplier = 0.49, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 12, 258, baseMultiplier = 0.52, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 36, 17, 359, baseMultiplier = 0.56, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 49, 24, 491, baseMultiplier = 0.58, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 66, 33, 667, baseMultiplier = 0.61, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 89, 43, 895, baseMultiplier = 0.64, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 119, 57, 1190, baseMultiplier = 0.68, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 157, 76, 1574, baseMultiplier = 0.71, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 206, 99, 2064, baseMultiplier = 0.74, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 270, 129, 2697, baseMultiplier = 0.78, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 351, 168, 3512, baseMultiplier = 0.82, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 455, 218, 4552, baseMultiplier = 0.86, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 588, 282, 5872, baseMultiplier = 0.91, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 755, 363, 7555, baseMultiplier = 0.95, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 969, 466, 9691, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1032, 495, 10308, baseMultiplier = 1.05, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1141, 547, 11402, baseMultiplier = 1.1, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1324, 636, 13248, baseMultiplier = 1.16, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1555, 746, 15550, baseMultiplier = 1.21, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1843, 884, 18423, baseMultiplier = 1.27, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1971, 946, 19703, baseMultiplier = 1.34, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 2107, 1012, 21065, baseMultiplier = 1.4, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2252, 1081, 22513, baseMultiplier = 1.47, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 2405, 1154, 24053, baseMultiplier = 1.55, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 2568, 1233, 25691, baseMultiplier = 1.63, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 2721, 1305, 27203, baseMultiplier = 1.71, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2880, 1382, 28804, baseMultiplier = 1.79, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 3049, 1464, 30496, baseMultiplier = 1.88, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 3229, 1549, 32285, baseMultiplier = 1.98, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3417, 1640, 34180, baseMultiplier = 2.07, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3619, 1736, 36179, baseMultiplier = 2.18, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 3829, 1838, 38296, baseMultiplier = 2.29, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4053, 1945, 40530, baseMultiplier = 2.4, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 4290, 2060, 42896, baseMultiplier = 2.52, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 4540, 2178, 45395, baseMultiplier = 2.65, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
}
}
skills["TrailOfCaltropsPlayer"] = {
@@ -8472,7 +9837,7 @@ skills["TrailOfCaltropsPlayer"] = {
skills["TriggeredTrailOfCaltropsPlayer"] = {
name = "Caltrops",
hidden = true,
- description = "Maims and deals Physical area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.",
+ description = "Maims and deals Attack area damage when triggered by an Enemy. Caltrops are destroyed when triggered, and a maximum of 20 Caltrops can be active at once.",
skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Projectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Hazard] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.Attack] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.NoAttackOrCastTime] = true, },
castTime = 0,
qualityStats = {
@@ -8541,7 +9906,6 @@ skills["TriggeredTrailOfCaltropsPlayer"] = {
"main_hand_weapon_minimum_physical_damage",
"main_hand_weapon_maximum_physical_damage",
"triggered_by_generic_ongoing_trigger",
- "skill_cannot_generate_energy",
"global_maim_on_hit",
"additive_thorns_damage_modifiers_apply_to_attack_damage",
"replace_main_hand_unarmed_attack_stats_with_nothing_type",
@@ -8551,6 +9915,10 @@ skills["TriggeredTrailOfCaltropsPlayer"] = {
"projectiles_not_offset",
"base_skill_show_average_damage_instead_of_dps",
},
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ },
levels = {
[1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
@@ -8596,142 +9964,12 @@ skills["TriggeredTrailOfCaltropsPlayer"] = {
},
}
}
-skills["TrinityPlayer"] = {
- name = "Trinity",
- baseTypeName = "Trinity",
- color = 2,
- description = "Become attuned to all Elements building up Fire, Cold and Lightning Resonance based off the highest Elemental Damage type dealt by your Attack Hits. Your Elemental Damage with Attacks is greatly enhanced the more Resonance of any type you have.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, },
- castTime = 0,
- qualityStats = {
- { "trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant", 0.75 },
- },
- levels = {
- [1] = { spiritReservationFlat = 100, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 100, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 100, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 100, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 100, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 100, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 100, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 100, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 100, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 100, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 100, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 100, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 100, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 100, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 100, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 100, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 100, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 100, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 100, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 100, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 100, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Trinity",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
- statMap = {
- ["trinity_damage_+%_final_to_grant_per_50_resonance"] = {
- mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }),
- },
- ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = {
- mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }),
- },
- ["quality_display_trinity_is_gem"] = {
- -- Display only
- },
- ["trinity_loss_per_hit"] = {
- -- Display only
- },
- },
- baseFlags = {
- buff = true,
- duration = true,
- },
- constantStats = {
- { "trinity_resonance_decay_delay_ms", 8000 },
- { "trinity_resonance_loss_per_second", 10 },
- { "trinity_loss_per_hit", 3 },
- },
- stats = {
- "trinity_damage_+%_final_to_grant_per_50_resonance",
- "trinity_resonance_to_grant",
- "quality_display_trinity_is_gem",
- },
- levels = {
- [1] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 3, 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 3, 11, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 4, 11, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 4, 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 5, 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 5, 13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 6, 13, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
skills["TwisterPlayer"] = {
name = "Twister",
baseTypeName = "Twister",
color = 2,
description = "Whip up a twister with a flick of your Spear. The twister moves forward erratically, Blinding and repeatedly Hitting enemies within. If a twister touches a Whirlwind from your other skills, it Consumes the Whirlwind to create additional twisters that deal more damage. Passing over Elemental Ground Surfaces or Consuming an elemental Whirlwind will grant twisters extra damage of that element.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -8740,46 +9978,46 @@ skills["TwisterPlayer"] = {
{ "twister_%_chance_for_additional_twister", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 0, cost = { Mana = 4, }, },
- [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.79, levelRequirement = 3, cost = { Mana = 5, }, },
- [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 6, cost = { Mana = 6, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.94, levelRequirement = 10, cost = { Mana = 6, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 14, cost = { Mana = 7, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.08, levelRequirement = 18, cost = { Mana = 8, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 9, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 10, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 31, cost = { Mana = 11, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.32, levelRequirement = 36, cost = { Mana = 12, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.37, levelRequirement = 41, cost = { Mana = 13, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 46, cost = { Mana = 15, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.48, levelRequirement = 52, cost = { Mana = 16, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.54, levelRequirement = 58, cost = { Mana = 18, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 64, cost = { Mana = 20, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.66, levelRequirement = 66, cost = { Mana = 23, }, },
- [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 72, cost = { Mana = 25, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.78, levelRequirement = 78, cost = { Mana = 28, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.84, levelRequirement = 84, cost = { Mana = 31, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 34, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 38, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 42, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 47, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 52, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.23, levelRequirement = 90, cost = { Mana = 58, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.31, levelRequirement = 90, cost = { Mana = 64, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 71, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.46, levelRequirement = 90, cost = { Mana = 79, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 87, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 97, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 107, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 119, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 132, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 146, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.1, levelRequirement = 90, cost = { Mana = 162, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 180, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 199, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.42, levelRequirement = 90, cost = { Mana = 221, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 245, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.65, levelRequirement = 90, cost = { Mana = 271, }, },
+ [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 4, }, },
+ [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 5, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 6, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 10, cost = { Mana = 7, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 8, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 9, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 22, cost = { Mana = 10, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 1.38, levelRequirement = 26, cost = { Mana = 11, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 1.44, levelRequirement = 31, cost = { Mana = 12, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.51, levelRequirement = 36, cost = { Mana = 13, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.58, levelRequirement = 41, cost = { Mana = 15, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.65, levelRequirement = 46, cost = { Mana = 16, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 52, cost = { Mana = 18, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.8, levelRequirement = 58, cost = { Mana = 19, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 64, cost = { Mana = 21, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.96, levelRequirement = 66, cost = { Mana = 23, }, },
+ [17] = { attackSpeedMultiplier = -20, baseMultiplier = 2.05, levelRequirement = 72, cost = { Mana = 25, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 2.14, levelRequirement = 78, cost = { Mana = 27, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 2.23, levelRequirement = 84, cost = { Mana = 30, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 32, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 35, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 37, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 40, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.74, levelRequirement = 90, cost = { Mana = 43, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.85, levelRequirement = 90, cost = { Mana = 46, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.97, levelRequirement = 90, cost = { Mana = 50, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 3.1, levelRequirement = 90, cost = { Mana = 54, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 57, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 62, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 3.5, levelRequirement = 90, cost = { Mana = 66, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 3.65, levelRequirement = 90, cost = { Mana = 71, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 3.8, levelRequirement = 90, cost = { Mana = 75, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 3.96, levelRequirement = 90, cost = { Mana = 81, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.13, levelRequirement = 90, cost = { Mana = 86, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 92, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 98, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 4.67, levelRequirement = 90, cost = { Mana = 104, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 4.87, levelRequirement = 90, cost = { Mana = 111, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 118, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 126, }, },
},
statSets = {
[1] = {
@@ -8825,6 +10063,7 @@ skills["TwisterPlayer"] = {
"visual_hit_effect_physical_is_wind",
"base_is_projectile",
"always_pierce",
+ "active_skill_ignore_setting_aim_stance",
},
levels = {
[1] = { actorLevel = 1, },
@@ -8876,7 +10115,7 @@ skills["VineArrowPlayer"] = {
baseTypeName = "Vine Arrow",
color = 2,
description = "Fire an arrow into the air that lands after a short delay, damaging enemies and causing a plant to spring up at the impact location. The plant sprouts vines that latch onto nearby enemies, Slowing their movement speed and dealing Chaos damage over time. The plant can be Poisoned, causing it to deal more damage.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.CanRapidFire] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.SupportedByFountains] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, },
weaponTypes = {
["Bow"] = true,
},
@@ -8887,44 +10126,44 @@ skills["VineArrowPlayer"] = {
levels = {
[1] = { baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
- [6] = { baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 20, }, },
- [12] = { baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 22, }, },
- [13] = { baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 25, }, },
- [14] = { baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 27, }, },
- [15] = { baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 30, }, },
+ [3] = { baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 12, }, },
+ [6] = { baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 13, }, },
+ [7] = { baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 24, }, },
+ [13] = { baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 26, }, },
+ [14] = { baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 29, }, },
+ [15] = { baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 32, }, },
[16] = { baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 34, }, },
[17] = { baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 37, }, },
- [18] = { baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 41, }, },
- [19] = { baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 46, }, },
- [20] = { baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 51, }, },
- [21] = { baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 56, }, },
- [22] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 63, }, },
- [23] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 69, }, },
- [24] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 77, }, },
- [25] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 85, }, },
- [26] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 95, }, },
- [27] = { baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 105, }, },
- [28] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 116, }, },
- [29] = { baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 129, }, },
- [30] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 143, }, },
- [31] = { baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 158, }, },
- [32] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 176, }, },
- [33] = { baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 195, }, },
- [34] = { baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 216, }, },
- [35] = { baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 239, }, },
- [36] = { baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 265, }, },
- [37] = { baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 294, }, },
- [38] = { baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 326, }, },
- [39] = { baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 361, }, },
- [40] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 400, }, },
+ [18] = { baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 40, }, },
+ [19] = { baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 44, }, },
+ [20] = { baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 47, }, },
+ [21] = { baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 51, }, },
+ [22] = { baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 55, }, },
+ [23] = { baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 59, }, },
+ [24] = { baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 64, }, },
+ [25] = { baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 69, }, },
+ [26] = { baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 74, }, },
+ [27] = { baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 79, }, },
+ [28] = { baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 85, }, },
+ [29] = { baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 91, }, },
+ [30] = { baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 97, }, },
+ [31] = { baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 104, }, },
+ [32] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 111, }, },
+ [33] = { baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 119, }, },
+ [34] = { baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 127, }, },
+ [35] = { baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 136, }, },
+ [36] = { baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 145, }, },
+ [37] = { baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 154, }, },
+ [38] = { baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 164, }, },
+ [39] = { baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 175, }, },
+ [40] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 186, }, },
},
statSets = {
[1] = {
@@ -8941,7 +10180,7 @@ skills["VineArrowPlayer"] = {
{ "active_skill_base_secondary_area_of_effect_radius", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "number_of_vine_arrow_pod_allowed", 1 },
},
stats = {
@@ -8997,8 +10236,8 @@ skills["VineArrowPlayer"] = {
[2] = {
label = "Vines",
baseEffectiveness = 5.1999998092651,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
statDescriptionScope = "poison_vine_arrow_statset_1",
statMap = {
["active_skill_base_slow_debuff_movement_speed_+%_final"] = {
@@ -9014,7 +10253,7 @@ skills["VineArrowPlayer"] = {
{ "base_skill_effect_duration", 8000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_area_of_effect_radius", 24 },
{ "active_skill_base_secondary_area_of_effect_radius", 48 },
{ "active_skill_base_slow_debuff_movement_speed_+%_final", -40 },
@@ -9033,45 +10272,45 @@ skills["VineArrowPlayer"] = {
},
levels = {
[1] = { 337, 3367, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 496, 4964, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 723, 7235, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 981, 9810, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 1273, 12728, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 1603, 16032, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 1977, 19771, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 2400, 24002, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 2879, 28791, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 3421, 34213, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 4035, 40352, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 4731, 47308, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 5519, 55194, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 6414, 64139, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7429, 74294, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 8583, 85830, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 9895, 98946, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 11387, 113872, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 13087, 130872, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 15025, 150254, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 17237, 172372, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 19764, 197637, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 22653, 226529, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 25960, 259602, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 29750, 297502, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 34098, 340983, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 39092, 390923, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 44835, 448348, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 51446, 514458, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 59066, 590658, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 67859, 678595, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 78020, 780203, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 89776, 897756, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 103393, 1033929, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 119188, 1191879, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 137533, 1375328, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 158868, 1588676, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 183713, 1837131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 212687, 2126868, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 246521, 2465211, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [2] = { 490, 4896, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 709, 7086, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 959, 9592, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1246, 12456, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1573, 15728, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 1947, 19466, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 2374, 23737, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 2862, 28620, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3420, 34204, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 4059, 40593, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 4791, 47910, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5629, 56295, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 6591, 65912, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7695, 76952, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 8964, 89640, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 10423, 104235, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 12104, 121042, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 14042, 140418, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 16278, 162782, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 18862, 188624, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 21852, 218524, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 25316, 253160, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 29333, 293335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 34000, 339995, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 39426, 394261, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 45746, 457458, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 53116, 531160, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 61723, 617233, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 71790, 717901, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 83581, 835809, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 97412, 974117, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 113660, 1136599, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 132777, 1327773, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 155306, 1553056, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 181895, 1818951, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 213328, 2133279, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 250546, 2505462, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 294687, 2946869, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 347124, 3471238, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -9080,59 +10319,59 @@ skills["VoltaicMarkPlayer"] = {
name = "Voltaic Mark",
baseTypeName = "Voltaic Mark",
color = 2,
- description = "Mark a target, making them more susceptible to being Shocked. When the Marked target dies, a Lightning nova erupts from their corpse. This nova does not use your Weapon Damage, and instead uses its own base Attack Damage.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, },
+ description = "Mark a target, making them more susceptible to being Shocked. When the Marked target dies, a Lightning explosion erupts from their corpse. This explosion does not use your Weapon Damage, and instead uses its own base Attack Damage.",
+ skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.5,
qualityStats = {
{ "thaumaturgist_mark_enemy_shock_effect_+%_taken", 0.75 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 23, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 25, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 27, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 29, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 31, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 33, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 35, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 41, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 50, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 67, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 77, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 117, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 235, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 252, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 271, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 311, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 334, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 23, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 25, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 28, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 31, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 33, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 39, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 49, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 52, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 59, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 63, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 67, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 71, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 79, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 83, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 97, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 107, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 117, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 128, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 146, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 159, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 179, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 194, }, },
},
statSets = {
[1] = {
label = "Mark",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "thaumaturgist_mark",
+ statDescriptionScope = "voltaic_mark",
statMap = {
["thaumaturgist_mark_enemies_shocked_chance_+%_final"] = {
mod("SelfShockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
@@ -9150,7 +10389,7 @@ skills["VoltaicMarkPlayer"] = {
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "thaumaturgist_mark_enemy_shock_effect_+%_taken", 30 },
{ "thaumaturgist_mark_enemies_shocked_chance_+%_final", 50 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "number_of_marks_allowed_per_type", 1 },
},
stats = {
@@ -9202,6 +10441,121 @@ skills["VoltaicMarkPlayer"] = {
},
}
}
+skills["TriggeredVoltaicMarkNovaPlayer"] = {
+ name = "Voltaic Nova",
+ hidden = true,
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.UseGlobalStats] = true, [SkillType.Lightning] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { critChance = 8, baseMultiplier = 1.1, levelRequirement = 0, },
+ [2] = { critChance = 8, baseMultiplier = 1.21, levelRequirement = 0, },
+ [3] = { critChance = 8, baseMultiplier = 1.34, levelRequirement = 0, },
+ [4] = { critChance = 8, baseMultiplier = 1.47, levelRequirement = 0, },
+ [5] = { critChance = 8, baseMultiplier = 1.6, levelRequirement = 0, },
+ [6] = { critChance = 8, baseMultiplier = 1.73, levelRequirement = 0, },
+ [7] = { critChance = 8, baseMultiplier = 1.87, levelRequirement = 0, },
+ [8] = { critChance = 8, baseMultiplier = 2, levelRequirement = 0, },
+ [9] = { critChance = 8, baseMultiplier = 2.12, levelRequirement = 0, },
+ [10] = { critChance = 8, baseMultiplier = 2.26, levelRequirement = 0, },
+ [11] = { critChance = 8, baseMultiplier = 2.41, levelRequirement = 0, },
+ [12] = { critChance = 8, baseMultiplier = 2.57, levelRequirement = 0, },
+ [13] = { critChance = 8, baseMultiplier = 2.74, levelRequirement = 0, },
+ [14] = { critChance = 8, baseMultiplier = 2.93, levelRequirement = 0, },
+ [15] = { critChance = 8, baseMultiplier = 3.13, levelRequirement = 0, },
+ [16] = { critChance = 8, baseMultiplier = 3.36, levelRequirement = 0, },
+ [17] = { critChance = 8, baseMultiplier = 3.61, levelRequirement = 0, },
+ [18] = { critChance = 8, baseMultiplier = 3.87, levelRequirement = 0, },
+ [19] = { critChance = 8, baseMultiplier = 4.17, levelRequirement = 0, },
+ [20] = { critChance = 8, baseMultiplier = 4.49, levelRequirement = 0, },
+ [21] = { critChance = 8, baseMultiplier = 4.84, levelRequirement = 0, },
+ [22] = { critChance = 8, baseMultiplier = 5.21, levelRequirement = 0, },
+ [23] = { critChance = 8, baseMultiplier = 5.62, levelRequirement = 0, },
+ [24] = { critChance = 8, baseMultiplier = 6.05, levelRequirement = 0, },
+ [25] = { critChance = 8, baseMultiplier = 6.52, levelRequirement = 0, },
+ [26] = { critChance = 8, baseMultiplier = 7.02, levelRequirement = 0, },
+ [27] = { critChance = 8, baseMultiplier = 7.56, levelRequirement = 0, },
+ [28] = { critChance = 8, baseMultiplier = 8.15, levelRequirement = 0, },
+ [29] = { critChance = 8, baseMultiplier = 8.78, levelRequirement = 0, },
+ [30] = { critChance = 8, baseMultiplier = 9.46, levelRequirement = 0, },
+ [31] = { critChance = 8, baseMultiplier = 10.19, levelRequirement = 0, },
+ [32] = { critChance = 8, baseMultiplier = 10.97, levelRequirement = 0, },
+ [33] = { critChance = 8, baseMultiplier = 11.82, levelRequirement = 0, },
+ [34] = { critChance = 8, baseMultiplier = 12.74, levelRequirement = 0, },
+ [35] = { critChance = 8, baseMultiplier = 13.72, levelRequirement = 0, },
+ [36] = { critChance = 8, baseMultiplier = 14.78, levelRequirement = 0, },
+ [37] = { critChance = 8, baseMultiplier = 15.92, levelRequirement = 0, },
+ [38] = { critChance = 8, baseMultiplier = 17.15, levelRequirement = 0, },
+ [39] = { critChance = 8, baseMultiplier = 18.48, levelRequirement = 0, },
+ [40] = { critChance = 8, baseMultiplier = 19.91, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Explosion",
+ baseEffectiveness = 1.8600000143051,
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "voltaic_mark_nova",
+ baseFlags = {
+ nonWeaponAttack = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 26 },
+ { "active_skill_shock_chance_+%_final", 200 },
+ },
+ stats = {
+ "main_hand_weapon_minimum_lightning_damage",
+ "main_hand_weapon_maximum_lightning_damage",
+ "triggered_by_thaumaturgist_mark",
+ "replace_main_hand_unarmed_attack_stats_with_nothing_type",
+ "display_statset_hide_usage_stats",
+ "triggerable_in_any_set",
+ },
+ levels = {
+ [1] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 2, 35, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 3, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 9, 166, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 10, 186, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 11, 207, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 12, 228, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 13, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 14, 274, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 16, 299, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 17, 324, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 18, 350, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 20, 377, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 24, 463, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 26, 493, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 28, 524, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 29, 556, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 31, 589, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 33, 622, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 35, 657, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 36, 692, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 38, 729, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 40, 766, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 42, 803, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 44, 842, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 46, 882, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 49, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 51, 964, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 53, 1006, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 55, 1049, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 58, 1093, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["WhirlingSlashPlayer"] = {
name = "Whirling Slash",
baseTypeName = "Whirling Slash",
@@ -9216,46 +10570,46 @@ skills["WhirlingSlashPlayer"] = {
{ "sandstorm_swipe_storm_damage_+%_final_per_stage", 2 },
},
levels = {
- [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 6, }, },
+ [1] = { attackSpeedMultiplier = -30, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { attackSpeedMultiplier = -30, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -30, baseMultiplier = 0.85, levelRequirement = 6, cost = { Mana = 7, }, },
[4] = { attackSpeedMultiplier = -30, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 8, }, },
[5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 13, }, },
- [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 16, }, },
- [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 18, }, },
- [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 20, }, },
- [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 22, }, },
- [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 25, }, },
+ [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -30, baseMultiplier = 1.15, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -30, baseMultiplier = 1.22, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { attackSpeedMultiplier = -30, baseMultiplier = 1.28, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -30, baseMultiplier = 1.34, levelRequirement = 36, cost = { Mana = 16, }, },
+ [11] = { attackSpeedMultiplier = -30, baseMultiplier = 1.41, levelRequirement = 41, cost = { Mana = 18, }, },
+ [12] = { attackSpeedMultiplier = -30, baseMultiplier = 1.48, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -30, baseMultiplier = 1.55, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { attackSpeedMultiplier = -30, baseMultiplier = 1.63, levelRequirement = 58, cost = { Mana = 24, }, },
+ [15] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 64, cost = { Mana = 26, }, },
[16] = { attackSpeedMultiplier = -30, baseMultiplier = 1.8, levelRequirement = 66, cost = { Mana = 28, }, },
[17] = { attackSpeedMultiplier = -30, baseMultiplier = 1.89, levelRequirement = 72, cost = { Mana = 31, }, },
- [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 34, }, },
- [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 38, }, },
- [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 42, }, },
- [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 46, }, },
- [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 52, }, },
- [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 57, }, },
- [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 63, }, },
- [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 70, }, },
- [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 78, }, },
- [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 86, }, },
- [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 96, }, },
- [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 106, }, },
- [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 118, }, },
- [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 131, }, },
- [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 145, }, },
- [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 161, }, },
- [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 178, }, },
- [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 197, }, },
- [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 219, }, },
- [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 242, }, },
- [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 268, }, },
- [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 298, }, },
- [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 330, }, },
+ [18] = { attackSpeedMultiplier = -30, baseMultiplier = 1.98, levelRequirement = 78, cost = { Mana = 33, }, },
+ [19] = { attackSpeedMultiplier = -30, baseMultiplier = 2.08, levelRequirement = 84, cost = { Mana = 36, }, },
+ [20] = { attackSpeedMultiplier = -30, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 39, }, },
+ [21] = { attackSpeedMultiplier = -30, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 42, }, },
+ [22] = { attackSpeedMultiplier = -30, baseMultiplier = 2.41, levelRequirement = 90, cost = { Mana = 45, }, },
+ [23] = { attackSpeedMultiplier = -30, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 49, }, },
+ [24] = { attackSpeedMultiplier = -30, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 53, }, },
+ [25] = { attackSpeedMultiplier = -30, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 57, }, },
+ [26] = { attackSpeedMultiplier = -30, baseMultiplier = 2.93, levelRequirement = 90, cost = { Mana = 61, }, },
+ [27] = { attackSpeedMultiplier = -30, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 65, }, },
+ [28] = { attackSpeedMultiplier = -30, baseMultiplier = 3.23, levelRequirement = 90, cost = { Mana = 70, }, },
+ [29] = { attackSpeedMultiplier = -30, baseMultiplier = 3.39, levelRequirement = 90, cost = { Mana = 75, }, },
+ [30] = { attackSpeedMultiplier = -30, baseMultiplier = 3.56, levelRequirement = 90, cost = { Mana = 80, }, },
+ [31] = { attackSpeedMultiplier = -30, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 86, }, },
+ [32] = { attackSpeedMultiplier = -30, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 92, }, },
+ [33] = { attackSpeedMultiplier = -30, baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 98, }, },
+ [34] = { attackSpeedMultiplier = -30, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 105, }, },
+ [35] = { attackSpeedMultiplier = -30, baseMultiplier = 4.54, levelRequirement = 90, cost = { Mana = 112, }, },
+ [36] = { attackSpeedMultiplier = -30, baseMultiplier = 4.77, levelRequirement = 90, cost = { Mana = 119, }, },
+ [37] = { attackSpeedMultiplier = -30, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 127, }, },
+ [38] = { attackSpeedMultiplier = -30, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 135, }, },
+ [39] = { attackSpeedMultiplier = -30, baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 144, }, },
+ [40] = { attackSpeedMultiplier = -30, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 153, }, },
},
statSets = {
[1] = {
@@ -9283,6 +10637,7 @@ skills["WhirlingSlashPlayer"] = {
"is_area_damage",
"sandstorm_swipe_display",
"global_knockback",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9363,6 +10718,7 @@ skills["WhirlingSlashPlayer"] = {
stats = {
"visual_hit_effect_physical_is_wind",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
"quality_display_sandstorm_swipe_is_gem",
"base_skill_show_average_damage_instead_of_dps",
@@ -9417,7 +10773,7 @@ skills["WhirlwindLancePlayer"] = {
baseTypeName = "Whirlwind Lance",
color = 2,
description = "Throw a Spear with enough force to kick up a Whirlwind where it lands, Slowing enemies and Blinding them in its area of effect. Entering the Whirlwind collapses it, dealing damage and causing Knockback. Consumes a Frenzy Charge if possible to create the Whirlwind with one more than its normal maximum number of stages.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.SupportedByFountains] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.SupportedByFountains] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -9426,46 +10782,46 @@ skills["WhirlwindLancePlayer"] = {
{ "sandstorm_swipe_storm_damage_+%_final_per_stage", 2 },
},
levels = {
- [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 7, }, },
+ [1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 29, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 32, }, },
+ [3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 33, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 36, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 40, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 44, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 49, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 54, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 60, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 67, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 74, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 82, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 91, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 101, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 112, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 124, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 137, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 152, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 169, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 187, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 207, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 230, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 255, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 283, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 313, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 347, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 385, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 42, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 46, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 49, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 53, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 57, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 62, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 66, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 71, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 76, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 82, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 88, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 100, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 107, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 114, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 122, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 130, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 139, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 148, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 158, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 168, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 179, }, },
},
statSets = {
[1] = {
@@ -9479,7 +10835,7 @@ skills["WhirlwindLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_weapon_range_+", 65 },
},
stats = {
@@ -9557,7 +10913,7 @@ skills["WhirlwindLancePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_weapon_range_+", 65 },
{ "active_skill_base_area_of_effect_radius", 18 },
{ "sandstorm_swipe_storm_radius_+_per_stage", 3 },
@@ -9566,10 +10922,10 @@ skills["WhirlwindLancePlayer"] = {
{ "active_skill_base_slow_debuff_movement_speed_+%_final", -30 },
{ "sandstorm_swipe_storm_damage_+%_final_per_stage", 150 },
{ "sandstorm_swipe_max_stages", 3 },
- { "windstorm_base_maximum_number_of_storms", 5 },
+ { "windstorm_base_maximum_number_of_storms", 6 },
{ "windstorm_gain_all_damage_%_as_corresponding_element_if_empowered", 50 },
{ "sandstorm_swipe_nova_radius_+", 3 },
- { "base_skill_effect_duration", 8000 },
+ { "base_skill_effect_duration", 15000 },
{ "skill_specific_stat_description_mode", 1 },
},
stats = {
@@ -9584,160 +10940,46 @@ skills["WhirlwindLancePlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
},
levels = {
- [1] = { baseMultiplier = 0.5, actorLevel = 1, },
- [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
- [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["TriggeredVoltaicMarkNovaPlayer"] = {
- name = "Voltaic Nova",
- hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.UseGlobalStats] = true, [SkillType.Lightning] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
- castTime = 1,
- qualityStats = {
- },
- levels = {
- [1] = { critChance = 8, baseMultiplier = 1.1, levelRequirement = 0, },
- [2] = { critChance = 8, baseMultiplier = 1.21, levelRequirement = 0, },
- [3] = { critChance = 8, baseMultiplier = 1.34, levelRequirement = 0, },
- [4] = { critChance = 8, baseMultiplier = 1.47, levelRequirement = 0, },
- [5] = { critChance = 8, baseMultiplier = 1.6, levelRequirement = 0, },
- [6] = { critChance = 8, baseMultiplier = 1.73, levelRequirement = 0, },
- [7] = { critChance = 8, baseMultiplier = 1.87, levelRequirement = 0, },
- [8] = { critChance = 8, baseMultiplier = 2, levelRequirement = 0, },
- [9] = { critChance = 8, baseMultiplier = 2.12, levelRequirement = 0, },
- [10] = { critChance = 8, baseMultiplier = 2.26, levelRequirement = 0, },
- [11] = { critChance = 8, baseMultiplier = 2.41, levelRequirement = 0, },
- [12] = { critChance = 8, baseMultiplier = 2.57, levelRequirement = 0, },
- [13] = { critChance = 8, baseMultiplier = 2.74, levelRequirement = 0, },
- [14] = { critChance = 8, baseMultiplier = 2.93, levelRequirement = 0, },
- [15] = { critChance = 8, baseMultiplier = 3.13, levelRequirement = 0, },
- [16] = { critChance = 8, baseMultiplier = 3.36, levelRequirement = 0, },
- [17] = { critChance = 8, baseMultiplier = 3.61, levelRequirement = 0, },
- [18] = { critChance = 8, baseMultiplier = 3.87, levelRequirement = 0, },
- [19] = { critChance = 8, baseMultiplier = 4.17, levelRequirement = 0, },
- [20] = { critChance = 8, baseMultiplier = 4.49, levelRequirement = 0, },
- [21] = { critChance = 8, baseMultiplier = 4.84, levelRequirement = 0, },
- [22] = { critChance = 8, baseMultiplier = 5.21, levelRequirement = 0, },
- [23] = { critChance = 8, baseMultiplier = 5.62, levelRequirement = 0, },
- [24] = { critChance = 8, baseMultiplier = 6.05, levelRequirement = 0, },
- [25] = { critChance = 8, baseMultiplier = 6.52, levelRequirement = 0, },
- [26] = { critChance = 8, baseMultiplier = 7.02, levelRequirement = 0, },
- [27] = { critChance = 8, baseMultiplier = 7.56, levelRequirement = 0, },
- [28] = { critChance = 8, baseMultiplier = 8.15, levelRequirement = 0, },
- [29] = { critChance = 8, baseMultiplier = 8.78, levelRequirement = 0, },
- [30] = { critChance = 8, baseMultiplier = 9.46, levelRequirement = 0, },
- [31] = { critChance = 8, baseMultiplier = 10.19, levelRequirement = 0, },
- [32] = { critChance = 8, baseMultiplier = 10.97, levelRequirement = 0, },
- [33] = { critChance = 8, baseMultiplier = 11.82, levelRequirement = 0, },
- [34] = { critChance = 8, baseMultiplier = 12.74, levelRequirement = 0, },
- [35] = { critChance = 8, baseMultiplier = 13.72, levelRequirement = 0, },
- [36] = { critChance = 8, baseMultiplier = 14.78, levelRequirement = 0, },
- [37] = { critChance = 8, baseMultiplier = 15.92, levelRequirement = 0, },
- [38] = { critChance = 8, baseMultiplier = 17.15, levelRequirement = 0, },
- [39] = { critChance = 8, baseMultiplier = 18.48, levelRequirement = 0, },
- [40] = { critChance = 8, baseMultiplier = 19.91, levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "Nova",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "thaumaturgist_mark_nova",
- baseFlags = {
- nonWeaponAttack = true,
- },
- constantStats = {
- { "active_skill_base_area_of_effect_radius", 26 },
- { "active_skill_shock_chance_+%_final", 200 },
- },
- stats = {
- "main_hand_weapon_minimum_lightning_damage",
- "main_hand_weapon_maximum_lightning_damage",
- "triggered_by_thaumaturgist_mark",
- "replace_main_hand_unarmed_attack_stats_with_nothing_type",
- "display_statset_hide_usage_stats",
- },
- levels = {
- [1] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 2, 35, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 3, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 9, 166, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 10, 186, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 11, 207, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 12, 228, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 13, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 14, 274, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 16, 299, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 17, 324, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 18, 350, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 20, 377, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 24, 463, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 26, 493, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 28, 524, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 29, 556, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 31, 589, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 33, 622, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 35, 657, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 36, 692, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 38, 729, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 40, 766, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 42, 803, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 44, 842, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 46, 882, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 49, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 51, 964, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 53, 1006, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 55, 1049, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 58, 1093, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.6, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.66, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.73, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.79, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.86, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.93, actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.06, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.12, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.19, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.25, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.33, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.41, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.5, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.59, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.69, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.8, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.91, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.04, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.17, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 2.32, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.47, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.64, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.81, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 3, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 3.2, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 3.41, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.64, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.88, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 4.14, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 4.42, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 4.71, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 5.03, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 5.36, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 5.72, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 6.1, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 6.51, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 6.94, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 7.4, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 7.89, actorLevel = 288.29998779297, },
},
},
}
@@ -10024,56 +11266,56 @@ skills["WindSerpentsFuryPlayer"] = {
name = "Wind Serpent's Fury",
baseTypeName = "Wind Serpent's Fury",
color = 2,
- description = "Consume all Frenzy Charges to perform a gigantic spear thrust that Knocks Back enemies. For each Frenzy Charge consumed, a Wind Serpent follows in the spear's wake. Each Serpent also damages and Knocks Back enemies, and knocking an Enemy into terrain or another larger Enemy will cause a shockwave.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.HasUsageCondition] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.RequiresCharges] = true, },
+ description = "Consume all Frenzy Charges to perform a gigantic spear thrust that Knocks Back enemies. For each Frenzy Charge consumed, a Wind Serpent follows in the spear's wake. Each Serpent also damages and Knocks Back enemies.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.HasUsageCondition] = true, [SkillType.Spear] = true, [SkillType.Sustained] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.RequiresCharges] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
castTime = 1,
qualityStats = {
- { "knockback_distance_+%", 1.5 },
+ { "active_skill_knockback_distance_+%_final", 1.5 },
},
levels = {
[1] = { attackSpeedMultiplier = -60, baseMultiplier = 1.65, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { attackSpeedMultiplier = -60, baseMultiplier = 1.82, levelRequirement = 3, cost = { Mana = 11, }, },
- [3] = { attackSpeedMultiplier = -60, baseMultiplier = 2, levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { attackSpeedMultiplier = -60, baseMultiplier = 2.18, levelRequirement = 10, cost = { Mana = 14, }, },
- [5] = { attackSpeedMultiplier = -60, baseMultiplier = 2.36, levelRequirement = 14, cost = { Mana = 15, }, },
- [6] = { attackSpeedMultiplier = -60, baseMultiplier = 2.55, levelRequirement = 18, cost = { Mana = 17, }, },
- [7] = { attackSpeedMultiplier = -60, baseMultiplier = 2.74, levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { attackSpeedMultiplier = -60, baseMultiplier = 2.92, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { attackSpeedMultiplier = -60, baseMultiplier = 3.08, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { attackSpeedMultiplier = -60, baseMultiplier = 3.26, levelRequirement = 36, cost = { Mana = 26, }, },
- [11] = { attackSpeedMultiplier = -60, baseMultiplier = 3.45, levelRequirement = 41, cost = { Mana = 29, }, },
- [12] = { attackSpeedMultiplier = -60, baseMultiplier = 3.66, levelRequirement = 46, cost = { Mana = 32, }, },
- [13] = { attackSpeedMultiplier = -60, baseMultiplier = 3.88, levelRequirement = 52, cost = { Mana = 36, }, },
- [14] = { attackSpeedMultiplier = -60, baseMultiplier = 4.11, levelRequirement = 58, cost = { Mana = 40, }, },
- [15] = { attackSpeedMultiplier = -60, baseMultiplier = 4.37, levelRequirement = 64, cost = { Mana = 44, }, },
- [16] = { attackSpeedMultiplier = -60, baseMultiplier = 4.64, levelRequirement = 66, cost = { Mana = 49, }, },
+ [3] = { attackSpeedMultiplier = -60, baseMultiplier = 2, levelRequirement = 6, cost = { Mana = 13, }, },
+ [4] = { attackSpeedMultiplier = -60, baseMultiplier = 2.18, levelRequirement = 10, cost = { Mana = 15, }, },
+ [5] = { attackSpeedMultiplier = -60, baseMultiplier = 2.36, levelRequirement = 14, cost = { Mana = 17, }, },
+ [6] = { attackSpeedMultiplier = -60, baseMultiplier = 2.55, levelRequirement = 18, cost = { Mana = 19, }, },
+ [7] = { attackSpeedMultiplier = -60, baseMultiplier = 2.74, levelRequirement = 22, cost = { Mana = 21, }, },
+ [8] = { attackSpeedMultiplier = -60, baseMultiplier = 2.92, levelRequirement = 26, cost = { Mana = 24, }, },
+ [9] = { attackSpeedMultiplier = -60, baseMultiplier = 3.08, levelRequirement = 31, cost = { Mana = 26, }, },
+ [10] = { attackSpeedMultiplier = -60, baseMultiplier = 3.26, levelRequirement = 36, cost = { Mana = 29, }, },
+ [11] = { attackSpeedMultiplier = -60, baseMultiplier = 3.45, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { attackSpeedMultiplier = -60, baseMultiplier = 3.66, levelRequirement = 46, cost = { Mana = 35, }, },
+ [13] = { attackSpeedMultiplier = -60, baseMultiplier = 3.88, levelRequirement = 52, cost = { Mana = 38, }, },
+ [14] = { attackSpeedMultiplier = -60, baseMultiplier = 4.11, levelRequirement = 58, cost = { Mana = 42, }, },
+ [15] = { attackSpeedMultiplier = -60, baseMultiplier = 4.37, levelRequirement = 64, cost = { Mana = 46, }, },
+ [16] = { attackSpeedMultiplier = -60, baseMultiplier = 4.64, levelRequirement = 66, cost = { Mana = 50, }, },
[17] = { attackSpeedMultiplier = -60, baseMultiplier = 4.94, levelRequirement = 72, cost = { Mana = 54, }, },
- [18] = { attackSpeedMultiplier = -60, baseMultiplier = 5.26, levelRequirement = 78, cost = { Mana = 60, }, },
- [19] = { attackSpeedMultiplier = -60, baseMultiplier = 5.6, levelRequirement = 84, cost = { Mana = 66, }, },
- [20] = { attackSpeedMultiplier = -60, baseMultiplier = 5.98, levelRequirement = 90, cost = { Mana = 74, }, },
- [21] = { attackSpeedMultiplier = -60, baseMultiplier = 6.37, levelRequirement = 90, cost = { Mana = 82, }, },
- [22] = { attackSpeedMultiplier = -60, baseMultiplier = 6.8, levelRequirement = 90, cost = { Mana = 91, }, },
- [23] = { attackSpeedMultiplier = -60, baseMultiplier = 7.25, levelRequirement = 90, cost = { Mana = 100, }, },
- [24] = { attackSpeedMultiplier = -60, baseMultiplier = 7.74, levelRequirement = 90, cost = { Mana = 111, }, },
- [25] = { attackSpeedMultiplier = -60, baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 123, }, },
- [26] = { attackSpeedMultiplier = -60, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 137, }, },
- [27] = { attackSpeedMultiplier = -60, baseMultiplier = 9.39, levelRequirement = 90, cost = { Mana = 152, }, },
- [28] = { attackSpeedMultiplier = -60, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 168, }, },
- [29] = { attackSpeedMultiplier = -60, baseMultiplier = 10.68, levelRequirement = 90, cost = { Mana = 186, }, },
- [30] = { attackSpeedMultiplier = -60, baseMultiplier = 11.39, levelRequirement = 90, cost = { Mana = 207, }, },
- [31] = { attackSpeedMultiplier = -60, baseMultiplier = 12.15, levelRequirement = 90, cost = { Mana = 229, }, },
- [32] = { attackSpeedMultiplier = -60, baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 254, }, },
- [33] = { attackSpeedMultiplier = -60, baseMultiplier = 13.82, levelRequirement = 90, cost = { Mana = 281, }, },
- [34] = { attackSpeedMultiplier = -60, baseMultiplier = 14.74, levelRequirement = 90, cost = { Mana = 312, }, },
- [35] = { attackSpeedMultiplier = -60, baseMultiplier = 15.72, levelRequirement = 90, cost = { Mana = 345, }, },
- [36] = { attackSpeedMultiplier = -60, baseMultiplier = 16.77, levelRequirement = 90, cost = { Mana = 383, }, },
- [37] = { attackSpeedMultiplier = -60, baseMultiplier = 17.89, levelRequirement = 90, cost = { Mana = 424, }, },
- [38] = { attackSpeedMultiplier = -60, baseMultiplier = 19.08, levelRequirement = 90, cost = { Mana = 470, }, },
- [39] = { attackSpeedMultiplier = -60, baseMultiplier = 20.35, levelRequirement = 90, cost = { Mana = 521, }, },
- [40] = { attackSpeedMultiplier = -60, baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 577, }, },
+ [18] = { attackSpeedMultiplier = -60, baseMultiplier = 5.26, levelRequirement = 78, cost = { Mana = 59, }, },
+ [19] = { attackSpeedMultiplier = -60, baseMultiplier = 5.6, levelRequirement = 84, cost = { Mana = 63, }, },
+ [20] = { attackSpeedMultiplier = -60, baseMultiplier = 5.98, levelRequirement = 90, cost = { Mana = 69, }, },
+ [21] = { attackSpeedMultiplier = -60, baseMultiplier = 6.37, levelRequirement = 90, cost = { Mana = 74, }, },
+ [22] = { attackSpeedMultiplier = -60, baseMultiplier = 6.8, levelRequirement = 90, cost = { Mana = 80, }, },
+ [23] = { attackSpeedMultiplier = -60, baseMultiplier = 7.25, levelRequirement = 90, cost = { Mana = 86, }, },
+ [24] = { attackSpeedMultiplier = -60, baseMultiplier = 7.74, levelRequirement = 90, cost = { Mana = 93, }, },
+ [25] = { attackSpeedMultiplier = -60, baseMultiplier = 8.25, levelRequirement = 90, cost = { Mana = 100, }, },
+ [26] = { attackSpeedMultiplier = -60, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 107, }, },
+ [27] = { attackSpeedMultiplier = -60, baseMultiplier = 9.39, levelRequirement = 90, cost = { Mana = 115, }, },
+ [28] = { attackSpeedMultiplier = -60, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 123, }, },
+ [29] = { attackSpeedMultiplier = -60, baseMultiplier = 10.68, levelRequirement = 90, cost = { Mana = 132, }, },
+ [30] = { attackSpeedMultiplier = -60, baseMultiplier = 11.39, levelRequirement = 90, cost = { Mana = 141, }, },
+ [31] = { attackSpeedMultiplier = -60, baseMultiplier = 12.15, levelRequirement = 90, cost = { Mana = 151, }, },
+ [32] = { attackSpeedMultiplier = -60, baseMultiplier = 12.96, levelRequirement = 90, cost = { Mana = 161, }, },
+ [33] = { attackSpeedMultiplier = -60, baseMultiplier = 13.82, levelRequirement = 90, cost = { Mana = 172, }, },
+ [34] = { attackSpeedMultiplier = -60, baseMultiplier = 14.74, levelRequirement = 90, cost = { Mana = 184, }, },
+ [35] = { attackSpeedMultiplier = -60, baseMultiplier = 15.72, levelRequirement = 90, cost = { Mana = 196, }, },
+ [36] = { attackSpeedMultiplier = -60, baseMultiplier = 16.77, levelRequirement = 90, cost = { Mana = 209, }, },
+ [37] = { attackSpeedMultiplier = -60, baseMultiplier = 17.89, levelRequirement = 90, cost = { Mana = 223, }, },
+ [38] = { attackSpeedMultiplier = -60, baseMultiplier = 19.08, levelRequirement = 90, cost = { Mana = 237, }, },
+ [39] = { attackSpeedMultiplier = -60, baseMultiplier = 20.35, levelRequirement = 90, cost = { Mana = 253, }, },
+ [40] = { attackSpeedMultiplier = -60, baseMultiplier = 21.71, levelRequirement = 90, cost = { Mana = 269, }, },
},
statSets = {
[1] = {
@@ -10095,6 +11337,7 @@ skills["WindSerpentsFuryPlayer"] = {
stats = {
"is_area_damage",
"visual_hit_effect_physical_is_wind",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -10160,6 +11403,7 @@ skills["WindSerpentsFuryPlayer"] = {
stats = {
"is_area_damage",
"visual_hit_effect_physical_is_wind",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { baseMultiplier = 0.55, actorLevel = 1, },
@@ -10204,67 +11448,5 @@ skills["WindSerpentsFuryPlayer"] = {
[40] = { baseMultiplier = 7.24, actorLevel = 288.29998779297, },
},
},
- [3] = {
- label = "Shockwave",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "serpent_spear_statset_2",
- baseFlags = {
- attack = true,
- area = true,
- melee = true,
- },
- constantStats = {
- { "active_skill_requires_X_frenzy_charges", 1 },
- { "knockback_distance_+%_final_vs_unique_enemies", 200 },
- { "active_skill_base_area_of_effect_radius", 20 },
- },
- stats = {
- "is_area_damage",
- "visual_hit_effect_physical_is_wind",
- "cannot_knockback",
- },
- levels = {
- [1] = { baseMultiplier = 0.75, actorLevel = 1, },
- [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.16, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.25, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.33, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 1.4, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 1.48, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.57, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.66, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.76, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.87, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.98, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 2.11, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 2.24, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 2.39, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 2.55, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 2.72, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 2.9, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 3.09, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 3.3, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 3.52, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 3.75, actorLevel = 136.875, },
- [26] = { baseMultiplier = 4, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 4.27, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 4.55, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 4.85, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 5.18, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 5.52, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 5.89, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 6.28, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 6.7, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 7.15, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 7.62, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 8.13, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 8.67, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 9.25, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 9.87, actorLevel = 288.29998779297, },
- },
- },
}
}
\ No newline at end of file
diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua
index a25224ea9e..0e31d2f556 100644
--- a/src/Data/Skills/act_int.lua
+++ b/src/Data/Skills/act_int.lua
@@ -10,61 +10,61 @@ skills["ArcPlayer"] = {
name = "Arc",
baseTypeName = "Arc",
color = 3,
- description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Shocked enemies Hit release damaging pulses.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, },
+ description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Consumes a Lightning Infusion if possible to deal more damage and Chain further.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.1,
qualityStats = {
- { "arc_damage_+%_final_for_each_remaining_chain", 0.1 },
+ { "number_of_chains", 0.1 },
},
levels = {
[1] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 3, cost = { Mana = 10, }, },
+ [2] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 6, cost = { Mana = 11, }, },
[4] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 10, cost = { Mana = 12, }, },
[5] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 22, cost = { Mana = 18, }, },
- [8] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 36, cost = { Mana = 27, }, },
- [11] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 41, cost = { Mana = 30, }, },
- [12] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 46, cost = { Mana = 34, }, },
+ [6] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 36, cost = { Mana = 28, }, },
+ [11] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 41, cost = { Mana = 31, }, },
+ [12] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 46, cost = { Mana = 35, }, },
[13] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 52, cost = { Mana = 39, }, },
[14] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 58, cost = { Mana = 44, }, },
- [15] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 64, cost = { Mana = 50, }, },
- [16] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 66, cost = { Mana = 56, }, },
- [17] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 72, cost = { Mana = 64, }, },
- [18] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 78, cost = { Mana = 72, }, },
- [19] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 93, }, },
- [21] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 105, }, },
- [22] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 119, }, },
- [23] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 135, }, },
- [24] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 153, }, },
- [25] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 173, }, },
- [26] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 196, }, },
- [27] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 222, }, },
- [28] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 251, }, },
- [29] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 284, }, },
- [30] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 322, }, },
- [31] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 364, }, },
- [32] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 412, }, },
- [33] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 466, }, },
- [34] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 528, }, },
- [35] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 598, }, },
- [36] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 676, }, },
- [37] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 765, }, },
- [38] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 866, }, },
- [39] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 980, }, },
- [40] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 1110, }, },
+ [15] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 64, cost = { Mana = 49, }, },
+ [16] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 66, cost = { Mana = 54, }, },
+ [17] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 72, cost = { Mana = 60, }, },
+ [18] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 78, cost = { Mana = 67, }, },
+ [19] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 84, cost = { Mana = 74, }, },
+ [20] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 81, }, },
+ [21] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 90, }, },
+ [22] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 99, }, },
+ [23] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 109, }, },
+ [24] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 120, }, },
+ [25] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 132, }, },
+ [26] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 145, }, },
+ [27] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 159, }, },
+ [28] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 174, }, },
+ [29] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 190, }, },
+ [30] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 208, }, },
+ [31] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 228, }, },
+ [32] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 249, }, },
+ [33] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 271, }, },
+ [34] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 296, }, },
+ [35] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 323, }, },
+ [36] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 352, }, },
+ [37] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 383, }, },
+ [38] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 417, }, },
+ [39] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 454, }, },
+ [40] = { critChance = 9, PvPDamageMultiplier = -25, levelRequirement = 90, cost = { Mana = 494, }, },
},
statSets = {
[1] = {
label = "Arc",
- baseEffectiveness = 2.5,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "arc",
+ baseEffectiveness = 1.75,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "skill_stat_descriptions",
statMap = {
["arc_damage_+%_final_for_each_remaining_chain"] = {
mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }),
@@ -76,147 +76,75 @@ skills["ArcPlayer"] = {
baseFlags = {
spell = true,
chaining = true,
+ projectile = true,
},
constantStats = {
- { "arc_chain_distance", 35 },
+ { "arc_damage_+%_final_from_infusion_consumption", 200 },
+ { "arc_chains_gained_from_infusion_consumption", 6 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_shock_effect_+%_final", 50 },
},
stats = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
"number_of_chains",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
"disable_visual_hit_effect",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
- "quality_display_arc_is_gem",
- "arc_chain_explode_shocked_enemies",
- "never_shock",
- },
- levels = {
- [1] = { 3, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 4, 23, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 5, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 7, 41, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 9, 51, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 11, 63, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 13, 76, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 16, 90, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 19, 107, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 22, 125, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 26, 145, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 29, 167, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 34, 191, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, 219, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 44, 249, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 50, 283, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 57, 321, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 64, 363, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 72, 410, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 82, 462, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 92, 521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 103, 586, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 116, 658, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 130, 739, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 147, 830, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 164, 932, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 185, 1046, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 207, 1174, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 232, 1317, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 261, 1478, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 293, 1658, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 329, 1862, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 369, 2091, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 414, 2348, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 466, 2639, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 524, 2968, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 589, 3338, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 663, 3758, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 747, 4232, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 842, 4770, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- [2] = {
- label = "Pulse",
- baseEffectiveness = 1.5,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "arc",
- statMap = {
- ["arc_damage_+%_final_for_each_remaining_chain"] = {
- mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ChainRemaining" }),
- },
- ["quality_display_arc_is_gem"] = {
- -- Display only
- },
- },
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "arc_chain_distance", 35 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_base_area_of_effect_radius", 15 },
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_lightning_infusion",
},
- stats = {
- "spell_minimum_base_lightning_damage",
- "spell_maximum_base_lightning_damage",
+ notMinionStat = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
- "number_of_chains",
- "can_perform_skill_while_moving",
- "should_use_additive_aiming_animation",
- "quality_display_arc_is_gem",
- "arc_chain_explode_shocked_enemies",
- "never_shock",
- "is_area_damage",
- "display_statset_hide_usage_stats",
},
levels = {
- [1] = { 0, 0, 2, 10, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 2, 14, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 3, 19, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 4, 24, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 5, 31, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 7, 38, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 8, 46, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 10, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 11, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 13, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 15, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 18, 100, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 20, 115, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 23, 131, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 26, 150, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 30, 170, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 34, 193, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 38, 218, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 43, 246, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 49, 277, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 55, 312, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 62, 351, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 70, 395, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 78, 444, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 88, 498, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 99, 559, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 111, 628, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 124, 704, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 139, 790, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 156, 887, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 176, 995, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 197, 1117, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 221, 1254, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 249, 1409, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 279, 1584, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 314, 1781, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 353, 2003, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 398, 2255, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 448, 2539, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 505, 2862, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1, 24, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 2, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 2, 39, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 3, 48, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 3, 58, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 4, 69, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 4, 82, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 5, 96, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6, 112, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 7, 130, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 8, 151, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 9, 174, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 10, 199, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 12, 228, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 14, 261, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 16, 298, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 18, 339, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 20, 386, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 23, 439, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 26, 499, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 30, 567, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 34, 644, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 38, 731, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 44, 830, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 50, 943, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 56, 1071, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 64, 1217, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 73, 1384, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 83, 1574, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 94, 1791, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 107, 2039, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 122, 2324, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 139, 2650, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 159, 3024, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 182, 3454, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 208, 3949, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 238, 4518, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 272, 5175, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -229,7 +157,7 @@ skills["ArchmagePlayer"] = {
skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, },
castTime = 1,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { spiritReservationFlat = 100, levelRequirement = 0, },
@@ -290,7 +218,7 @@ skills["ArchmagePlayer"] = {
baseFlags = {
},
constantStats = {
- { "archmage_all_damage_%_to_gain_as_lightning_to_grant_to_non_channelling_spells_per_100_max_mana", 3 },
+ { "archmage_all_damage_%_to_gain_as_lightning_to_grant_to_non_channelling_spells_per_100_max_mana", 4 },
},
stats = {
"archmage_max_mana_permyriad_to_add_to_non_channelled_spell_mana_cost",
@@ -397,8 +325,8 @@ skills["ArcticArmourPlayer"] = {
[1] = {
label = "Arctic Armour",
baseEffectiveness = 2.1800000667572,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
spell = true,
@@ -412,44 +340,44 @@ skills["ArcticArmourPlayer"] = {
levels = {
[1] = { 7, 10, 2, 1250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
[2] = { 9, 14, 2, 1175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 13, 19, 2, 1150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 17, 25, 3, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 21, 31, 3, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 26, 39, 3, 1075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 31, 47, 3, 1050, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 37, 56, 3, 1025, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 44, 66, 3, 1000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 51, 77, 3, 975, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 59, 89, 4, 950, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [3] = { 12, 19, 2, 1150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 16, 24, 3, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 20, 31, 3, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 25, 38, 3, 1075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 30, 46, 3, 1050, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 36, 54, 3, 1025, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 43, 65, 3, 1000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 51, 76, 3, 975, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 59, 88, 4, 950, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 68, 103, 4, 925, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 79, 118, 4, 900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 90, 135, 4, 875, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 102, 154, 4, 850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 174, 4, 825, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 132, 198, 4, 800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 149, 224, 4, 775, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 168, 252, 4, 750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 190, 285, 5, 725, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 214, 320, 5, 700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 240, 360, 5, 675, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 270, 405, 5, 650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 303, 455, 5, 625, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 341, 511, 5, 600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 382, 574, 5, 575, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 429, 644, 6, 550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 482, 722, 6, 525, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 540, 811, 6, 500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 606, 910, 6, 475, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 681, 1021, 6, 450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 764, 1146, 7, 425, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 858, 1287, 7, 400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 964, 1446, 7, 375, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1083, 1625, 7, 350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1218, 1827, 7, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1370, 2055, 8, 300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1542, 2313, 8, 275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1737, 2605, 8, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1957, 2936, 8, 225, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [13] = { 79, 119, 4, 900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 91, 137, 4, 875, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 105, 157, 4, 850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 120, 180, 4, 825, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 137, 205, 4, 800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 156, 234, 4, 775, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 178, 267, 4, 750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 203, 304, 5, 725, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 230, 346, 5, 700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 262, 393, 5, 675, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 297, 446, 5, 650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 338, 507, 5, 625, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 384, 575, 5, 600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 436, 653, 5, 575, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 495, 742, 6, 550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 562, 843, 6, 525, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 639, 958, 6, 500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 726, 1089, 6, 475, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 826, 1238, 6, 450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 939, 1409, 7, 425, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1070, 1605, 7, 400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1219, 1828, 7, 375, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1390, 2085, 7, 350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1586, 2379, 7, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1812, 2717, 8, 300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2071, 3107, 8, 275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2370, 3555, 8, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2714, 4072, 8, 225, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -458,61 +386,61 @@ skills["BallLightningPlayer"] = {
name = "Ball Lightning",
baseTypeName = "Ball Lightning",
color = 3,
- description = "Fire a slow-moving orb Projectile that moves through enemies. The orb itself does not Hit enemies, but repeatedly shoots bolts of Lightning at nearby targets.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, },
+ description = "Fire a slow-moving Projectile that moves through enemies. The Projectile itself does not Hit enemies, but repeatedly discharges bolts of Lightning at nearby enemies. Consumes a Fire Infusion if possible to slow down over time, create Ignited Ground as it travels, and explode dealing Fire damage in an Area after it dissipates.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, },
castTime = 1,
qualityStats = {
{ "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
- [1] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 0, cost = { Mana = 10, }, },
+ [1] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 3, cost = { Mana = 11, }, },
[3] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 6, cost = { Mana = 13, }, },
[4] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 10, cost = { Mana = 15, }, },
[5] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 14, cost = { Mana = 17, }, },
[6] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 18, cost = { Mana = 19, }, },
- [7] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 22, cost = { Mana = 21, }, },
- [8] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 26, cost = { Mana = 24, }, },
- [9] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 31, cost = { Mana = 28, }, },
- [10] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 36, cost = { Mana = 31, }, },
- [11] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 41, cost = { Mana = 36, }, },
- [12] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 46, cost = { Mana = 40, }, },
+ [7] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 22, cost = { Mana = 22, }, },
+ [8] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 26, cost = { Mana = 25, }, },
+ [9] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 31, cost = { Mana = 29, }, },
+ [10] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 36, cost = { Mana = 33, }, },
+ [11] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 41, cost = { Mana = 37, }, },
+ [12] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 46, cost = { Mana = 41, }, },
[13] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 52, cost = { Mana = 46, }, },
- [14] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 58, cost = { Mana = 52, }, },
- [15] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 64, cost = { Mana = 59, }, },
- [16] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 66, cost = { Mana = 66, }, },
- [17] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 72, cost = { Mana = 75, }, },
- [18] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 78, cost = { Mana = 85, }, },
- [19] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 84, cost = { Mana = 96, }, },
- [20] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 109, }, },
- [21] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 124, }, },
- [22] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 140, }, },
- [23] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 159, }, },
- [24] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 180, }, },
- [25] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 203, }, },
- [26] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 230, }, },
- [27] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 260, }, },
- [28] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 295, }, },
- [29] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 334, }, },
- [30] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 378, }, },
- [31] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 428, }, },
- [32] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 484, }, },
- [33] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 548, }, },
- [34] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 620, }, },
- [35] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 702, }, },
- [36] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 794, }, },
- [37] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 899, }, },
- [38] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1017, }, },
- [39] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1151, }, },
- [40] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 1303, }, },
+ [14] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 58, cost = { Mana = 51, }, },
+ [15] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 64, cost = { Mana = 57, }, },
+ [16] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 66, cost = { Mana = 64, }, },
+ [17] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 72, cost = { Mana = 71, }, },
+ [18] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 78, cost = { Mana = 78, }, },
+ [19] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 84, cost = { Mana = 87, }, },
+ [20] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 96, }, },
+ [21] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 106, }, },
+ [22] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 116, }, },
+ [23] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 128, }, },
+ [24] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 141, }, },
+ [25] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 155, }, },
+ [26] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 170, }, },
+ [27] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 186, }, },
+ [28] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 204, }, },
+ [29] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 223, }, },
+ [30] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 244, }, },
+ [31] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 267, }, },
+ [32] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 292, }, },
+ [33] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 319, }, },
+ [34] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 348, }, },
+ [35] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 379, }, },
+ [36] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 413, }, },
+ [37] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 450, }, },
+ [38] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 490, }, },
+ [39] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 533, }, },
+ [40] = { critChance = 9, PvPDamageMultiplier = -40, levelRequirement = 90, cost = { Mana = 580, }, },
},
statSets = {
[1] = {
label = "Ball Lightning",
baseEffectiveness = 0.36000001430511,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0054999999701977,
- statDescriptionScope = "ball_lightning",
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "ball_lightning_statset_0",
statMap = {
["ball_lightning_base_hit_frequency_ms"] = {
skill("hitTimeOverride", nil),
@@ -528,9 +456,11 @@ skills["BallLightningPlayer"] = {
{ "active_skill_shock_chance_+%_final", 750 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_area_of_effect_radius", 18 },
{ "ball_lightning_base_hit_frequency_ms", 200 },
+ { "ball_lightning_infused_acceleration", -25 },
+ { "ball_lightning_infused_burning_ground_interval_ms", 350 },
},
stats = {
"spell_minimum_base_lightning_damage",
@@ -539,6 +469,12 @@ skills["BallLightningPlayer"] = {
"is_area_damage",
"can_perform_skill_while_moving",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_fire_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
},
levels = {
[1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
@@ -549,38 +485,200 @@ skills["BallLightningPlayer"] = {
[6] = { 1, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
[7] = { 1, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
[8] = { 1, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [9] = { 1, 16, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
[10] = { 1, 19, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
[11] = { 1, 22, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 1, 25, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 2, 29, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
[14] = { 2, 33, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 2, 37, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 2, 47, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 3, 59, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 3, 66, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 4, 82, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 5, 91, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 5, 101, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 7, 124, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7, 138, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 8, 153, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 9, 170, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 10, 188, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 11, 209, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 12, 231, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 15, 284, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 17, 315, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 18, 349, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 20, 387, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 23, 430, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 25, 477, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 28, 530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [15] = { 2, 38, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 2, 43, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 3, 49, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 3, 55, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 3, 62, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 4, 70, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 4, 79, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 5, 89, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 5, 100, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7, 126, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7, 142, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 8, 159, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 9, 179, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 11, 201, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 13, 253, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 15, 285, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 17, 320, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 19, 360, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 21, 405, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 24, 455, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 27, 513, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 30, 578, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 34, 651, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 39, 735, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Fire-Infused",
+ baseEffectiveness = 3.5,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "ball_lightning_statset_1",
+ baseFlags = {
+ spell = true,
+ area = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "ball_lightning_infused_acceleration", -25 },
+ { "ball_lightning_infused_burning_ground_interval_ms", 350 },
+ { "active_skill_base_secondary_area_of_effect_radius", 26 },
+ },
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "base_is_projectile",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_fire_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 11, 16, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 15, 22, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 20, 30, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 26, 38, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 32, 48, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 39, 59, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 47, 71, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 56, 85, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 66, 100, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 78, 116, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 90, 135, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 104, 155, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 119, 178, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 136, 204, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 155, 232, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 176, 264, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 199, 299, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 225, 338, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 255, 382, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 287, 431, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 323, 485, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 364, 546, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 409, 614, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 460, 690, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 517, 775, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 580, 871, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 652, 978, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 732, 1098, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 822, 1233, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 923, 1385, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 1037, 1555, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 1165, 1747, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 1309, 1964, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 1472, 2208, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 1656, 2484, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 1864, 2796, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 2099, 3148, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 2365, 3547, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 2666, 3999, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 3008, 4512, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Ignited Ground",
+ baseEffectiveness = 4,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "ball_lightning_statset_2",
+ baseFlags = {
+ spell = true,
+ area = true,
+ projectile = true,
+ duration = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "ball_lightning_infused_acceleration", -25 },
+ { "ball_lightning_infused_burning_ground_interval_ms", 350 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 9 },
+ { "base_skill_effect_duration", 4000 },
+ },
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "base_is_projectile",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_fire_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 12, 19, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 17, 25, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 23, 34, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 30, 45, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 38, 57, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 47, 71, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 57, 86, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 69, 104, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 82, 123, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 97, 146, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 114, 172, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 134, 201, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 156, 234, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 181, 271, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 209, 314, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 242, 363, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 279, 419, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 321, 482, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 370, 555, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 425, 638, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 488, 733, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 561, 841, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 644, 966, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 740, 1110, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 850, 1275, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 977, 1465, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 1123, 1684, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 1291, 1937, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 1486, 2229, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 1711, 2567, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 1973, 2959, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 2276, 3414, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 2628, 3942, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 3037, 4556, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 3515, 5272, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 4071, 6107, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 4722, 7083, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 5483, 8224, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 6374, 9561, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 7420, 11131, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -590,7 +688,7 @@ skills["MetaBarrierInvocationPlayer"] = {
baseTypeName = "Barrier Invocation",
color = 3,
description = "While active, gains Energy when your Energy Shield is damaged by Enemy Hits. Using the Invocation once sufficient Energy is gathered will consume the Energy to trigger socketed Spells, and can trigger them multiple times if it has enough Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Invocation] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Invocation] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
{ "energy_generated_+%", 0.75 },
@@ -705,6 +803,8 @@ skills["SupportBarrierInvocationPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -751,7 +851,7 @@ skills["SupportBarrierInvocationPlayer"] = {
[1] = {
label = "SupportBarrierInvocationPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -759,8 +859,7 @@ skills["SupportBarrierInvocationPlayer"] = {
},
stats = {
"triggered_by_generic_ongoing_trigger",
- "display_generic_ongoing_triggerer_is_invocation_skill",
- "skill_cannot_generate_energy",
+ "generic_ongoing_triggerer_is_invocation_skill",
},
levels = {
[1] = { actorLevel = 1, },
@@ -815,7 +914,7 @@ skills["BlasphemyPlayer"] = {
skillTypes = { [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Meta] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.IsBlasphemy] = true, },
castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -933,6 +1032,8 @@ skills["SupportBlasphemyPlayer"] = {
excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.OR, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.NOT, SkillType.AND, SkillType.SupportedByHourglass, },
isTrigger = true,
ignoreMinionTypes = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -979,7 +1080,7 @@ skills["SupportBlasphemyPlayer"] = {
[1] = {
label = "Curses",
incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
statMap = {
["support_blasphemy_curse_effect_+%_final"] = {
mod("CurseEffect", "MORE", nil),
@@ -1047,7 +1148,7 @@ skills["BlinkReservationPlayer"] = {
baseTypeName = "Blink",
color = 3,
description = "While active, replaces your dodge roll with a short-cooldown Spell that allows you to tunnel through space, instantly reappearing a medium distance away.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, },
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.DodgeReplacement] = true, [SkillType.ReserveInAllSets] = true, },
castTime = 1,
qualityStats = {
},
@@ -1153,7 +1254,7 @@ skills["BlinkPlayer"] = {
name = "Blink",
hidden = true,
description = "While active, replaces your dodge roll with a short-cooldown Spell that allows you to tunnel through space, instantly reappearing a medium distance away.",
- skillTypes = { [SkillType.UsableWhileShapeshifted] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, },
+ skillTypes = { [SkillType.UsableWhileShapeshifted] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "base_cooldown_speed_+%", 0.5 },
@@ -1269,7 +1370,7 @@ skills["BoneBlastPlayer"] = {
fromItem = true,
color = 3,
description = "Conjure a circle of ritual inscriptions that last for a short duration. When the duration ends, spikes of bone erupt from enemies in the area, damaging them and potentially causing Bleeding.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cascadable] = true, [SkillType.CreatesGroundRune] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cascadable] = true, [SkillType.CreatesGroundRune] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.75,
qualityStats = {
{ "active_skill_base_area_of_effect_radius", 0.2 },
@@ -1319,9 +1420,9 @@ skills["BoneBlastPlayer"] = {
statSets = {
[1] = {
label = "Bone Blast",
- baseEffectiveness = 1.9099999666214,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 2.1300001144409,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "bone_blast",
baseFlags = {
spell = true,
@@ -1333,7 +1434,7 @@ skills["BoneBlastPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 10 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_chance_to_inflict_bleeding_%", 40 },
},
stats = {
@@ -1342,47 +1443,51 @@ skills["BoneBlastPlayer"] = {
"is_area_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
- [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 74, 111, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 85, 128, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 146, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 167, 250, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 190, 285, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 246, 369, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 279, 419, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 317, 476, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 361, 541, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 410, 614, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 465, 698, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 529, 793, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 601, 901, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 683, 1024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 777, 1165, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 884, 1326, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1007, 1510, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1147, 1721, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1308, 1963, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1493, 2240, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1706, 2559, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1950, 2925, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2232, 3348, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2556, 3835, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 61, 91, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 71, 107, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 96, 145, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 112, 167, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 129, 193, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 226, 339, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 299, 448, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 343, 515, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 394, 591, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 453, 679, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 598, 897, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 688, 1031, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 791, 1187, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 911, 1367, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1050, 1576, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1212, 1818, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1399, 2099, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1617, 2426, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1872, 2807, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2168, 3252, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2514, 3772, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2920, 4379, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3394, 5091, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3951, 5927, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1391,60 +1496,60 @@ skills["BoneCagePlayer"] = {
name = "Bone Cage",
baseTypeName = "Bone Cage",
color = 3,
- description = "Raise a ring of bone spikes around you. The spikes are destroyed when enemies touch them, damaging and Pinning those enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, },
+ description = "Raise a ring of bone spikes around you. The spikes are destroyed when enemies touch them, damaging and Pinning those enemies. Raising a new ring of spikes destroys the previous one.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
{ "active_skill_pins_as_though_dealt_damage_+%_final", 2.5 },
},
levels = {
- [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 8, }, },
+ [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 11, }, },
+ [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 10, }, },
[4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 12, }, },
[5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 14, }, },
[6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 18, }, },
- [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 20, }, },
- [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 26, }, },
- [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 30, }, },
+ [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 27, }, },
+ [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 31, }, },
[12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 34, }, },
- [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 38, }, },
+ [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 39, }, },
[14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 43, }, },
- [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 49, }, },
- [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 56, }, },
- [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 63, }, },
- [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 71, }, },
- [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 81, }, },
- [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 92, }, },
- [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 104, }, },
- [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 117, }, },
- [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 133, }, },
- [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 151, }, },
- [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 171, }, },
- [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 193, }, },
- [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 219, }, },
- [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 247, }, },
- [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 280, }, },
- [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 317, }, },
- [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 359, }, },
- [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 406, }, },
- [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 460, }, },
- [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 520, }, },
- [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 589, }, },
- [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 666, }, },
- [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 754, }, },
- [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 854, }, },
- [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 966, }, },
- [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 1093, }, },
+ [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 48, }, },
+ [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 53, }, },
+ [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 59, }, },
+ [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 66, }, },
+ [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 73, }, },
+ [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 80, }, },
+ [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 89, }, },
+ [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 98, }, },
+ [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 107, }, },
+ [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 118, }, },
+ [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 130, }, },
+ [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 143, }, },
+ [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 156, }, },
+ [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 171, }, },
+ [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 187, }, },
+ [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 205, }, },
+ [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 224, }, },
+ [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 245, }, },
+ [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 267, }, },
+ [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 292, }, },
+ [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 318, }, },
+ [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 347, }, },
+ [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 378, }, },
+ [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 411, }, },
+ [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 447, }, },
+ [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 487, }, },
},
statSets = {
[1] = {
label = "Bone Cage",
baseEffectiveness = 3.2699999809265,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "ring_of_bone",
baseFlags = {
area = true,
@@ -1458,7 +1563,7 @@ skills["BoneCagePlayer"] = {
{ "ring_of_bone_maximum_number_of_rings", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "ring_of_bone_spike_break_chance_%", 100 },
{ "base_pinned_art_variation", 1 },
{ "active_skill_pins_as_though_dealt_damage_+%_final", 50 },
@@ -1471,47 +1576,51 @@ skills["BoneCagePlayer"] = {
"base_all_damage_can_pin",
"quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 68, 103, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 81, 121, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [3] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 56, 85, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 80, 119, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 127, 190, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 192, 288, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 220, 329, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 251, 376, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 325, 488, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 370, 555, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 421, 631, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 478, 718, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 543, 815, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 617, 926, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 701, 1052, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 796, 1195, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 905, 1357, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1028, 1542, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1169, 1754, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1330, 1995, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1514, 2270, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1724, 2585, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1964, 2946, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2240, 3360, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2557, 3835, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2920, 4380, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3339, 5008, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 3821, 5731, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4377, 6565, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [13] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 228, 342, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 263, 394, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 302, 453, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 347, 521, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 459, 688, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 527, 790, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 605, 907, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 695, 1042, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 798, 1197, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 918, 1377, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1056, 1583, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1215, 1822, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1399, 2099, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1613, 2419, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1860, 2791, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2148, 3222, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2483, 3725, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2873, 4310, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3328, 4993, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 3860, 5790, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4482, 6723, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 5211, 7816, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 6066, 9099, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1520,58 +1629,58 @@ skills["BoneOfferingPlayer"] = {
name = "Bone Offering",
baseTypeName = "Bone Offering",
color = 3,
- description = "Impale a Skeleton on a bone spike to shield your Minions while the spike remains. The shield absorbs all damage from the next Hit each Minion takes, then explodes.\n\nThe bone spike is itself a Minion, and shields itself. If it dies, shields on your other Minions disappear.",
- skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, },
+ description = "Impale a Skeleton on a bone spike to shield your Minions while the spike remains, reducing the amount of damage taken from Hits. Taking a Hit that deals damage above a certain threshold will cause that Minion's shield to absorb all damage from that Hit, then explode.\n\nThe bone spike is itself a Minion, and shields itself. If it dies, shields on your other Minions disappear.",
+ skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Area] = true, },
castTime = 0.6,
qualityStats = {
+ { "bone_offering_damage_taken_+%_final_after_shield_loss", -1.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 26, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 25, }, },
[2] = { levelRequirement = 3, cost = { Mana = 28, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 31, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 34, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 38, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 42, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 46, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 50, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 32, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 35, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 39, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 43, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 47, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 51, }, },
[9] = { levelRequirement = 31, cost = { Mana = 55, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 61, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 67, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 73, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 80, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 88, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 97, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 107, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 117, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 129, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 141, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 171, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 187, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 206, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 226, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 248, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 273, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 300, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 329, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 361, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 397, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 436, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 479, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 526, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 577, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 634, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 696, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 764, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 839, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 922, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1012, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 59, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 64, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 68, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 73, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 78, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 83, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 88, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 93, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 99, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 104, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 116, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 122, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 129, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 135, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 156, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 164, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 171, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 179, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 195, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 204, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 213, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 222, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 231, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 240, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 250, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 260, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 270, }, },
},
statSets = {
[1] = {
label = "Buff",
- baseEffectiveness = 1.710000038147,
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "bone_offering",
baseFlags = {
@@ -1579,58 +1688,60 @@ skills["BoneOfferingPlayer"] = {
duration = true,
},
constantStats = {
- { "base_skill_effect_duration", 5000 },
- { "base_secondary_skill_effect_duration", 5000 },
+ { "base_skill_effect_duration", 8000 },
+ { "base_secondary_skill_effect_duration", 8000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_bone_offerings_allowed", 1 },
+ { "bone_offering_hit_threshold_%_of_maximum_life", 25 },
},
stats = {
+ "bone_offering_damage_taken_+%_final",
"can_perform_skill_while_moving",
"display_statset_no_hit_damage",
},
levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ [1] = { -15, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { -16, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { -16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { -17, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { -17, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { -18, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { -18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { -19, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { -19, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { -20, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { -20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { -21, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { -21, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { -22, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { -22, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { -23, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { -23, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { -24, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { -24, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { -25, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { -25, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { -26, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { -26, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { -27, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { -27, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { -28, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { -28, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { -29, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { -29, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { -30, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { -30, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { -30, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { -30, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { -31, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { -31, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { -31, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { -31, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { -32, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { -32, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { -32, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1639,60 +1750,60 @@ skills["BonestormPlayer"] = {
name = "Bonestorm",
baseTypeName = "Bonestorm",
color = 3,
- description = "Channel to conjure a swarm of bone spikes in the air, then release to fire them at enemies and explode. Shrapnel Impales Enemies Hit, causing subsequent Attack Hits against those targets to deal extra Damage. Consumes your Power Charges to cause much larger explosions.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Sustained] = true, },
+ description = "Channel to conjure a swarm of bone spikes in the air, then release to fire them at enemies and explode. Shrapnel Impales enemies Hit, causing subsequent Attack Hits against those targets to deal extra damage. Consumes your Power Charges to cause much larger explosions.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.125,
qualityStats = {
{ "active_skill_cast_speed_+%_final", 0.5 },
},
levels = {
- [1] = { critChance = 15, levelRequirement = 0, cost = { ManaPerMinute = 395, }, },
- [2] = { critChance = 15, levelRequirement = 3, cost = { ManaPerMinute = 447, }, },
- [3] = { critChance = 15, levelRequirement = 6, cost = { ManaPerMinute = 505, }, },
- [4] = { critChance = 15, levelRequirement = 10, cost = { ManaPerMinute = 572, }, },
- [5] = { critChance = 15, levelRequirement = 14, cost = { ManaPerMinute = 647, }, },
- [6] = { critChance = 15, levelRequirement = 18, cost = { ManaPerMinute = 733, }, },
- [7] = { critChance = 15, levelRequirement = 22, cost = { ManaPerMinute = 829, }, },
- [8] = { critChance = 15, levelRequirement = 26, cost = { ManaPerMinute = 939, }, },
- [9] = { critChance = 15, levelRequirement = 31, cost = { ManaPerMinute = 1062, }, },
- [10] = { critChance = 15, levelRequirement = 36, cost = { ManaPerMinute = 1202, }, },
- [11] = { critChance = 15, levelRequirement = 41, cost = { ManaPerMinute = 1361, }, },
- [12] = { critChance = 15, levelRequirement = 46, cost = { ManaPerMinute = 1540, }, },
- [13] = { critChance = 15, levelRequirement = 52, cost = { ManaPerMinute = 1743, }, },
- [14] = { critChance = 15, levelRequirement = 58, cost = { ManaPerMinute = 1972, }, },
- [15] = { critChance = 15, levelRequirement = 64, cost = { ManaPerMinute = 2232, }, },
- [16] = { critChance = 15, levelRequirement = 66, cost = { ManaPerMinute = 2526, }, },
- [17] = { critChance = 15, levelRequirement = 72, cost = { ManaPerMinute = 2859, }, },
- [18] = { critChance = 15, levelRequirement = 78, cost = { ManaPerMinute = 3236, }, },
- [19] = { critChance = 15, levelRequirement = 84, cost = { ManaPerMinute = 3662, }, },
- [20] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4144, }, },
- [21] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4690, }, },
- [22] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5308, }, },
- [23] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6007, }, },
- [24] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6798, }, },
- [25] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7693, }, },
- [26] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 8707, }, },
- [27] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 9853, }, },
- [28] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 11151, }, },
- [29] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 12620, }, },
- [30] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 14282, }, },
- [31] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 16163, }, },
- [32] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 18292, }, },
- [33] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 20701, }, },
- [34] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 23427, }, },
- [35] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 26513, }, },
- [36] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 30004, }, },
- [37] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 33956, }, },
- [38] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 38428, }, },
- [39] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 43489, }, },
- [40] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 49217, }, },
+ [1] = { critChance = 15, levelRequirement = 0, cost = { ManaPerMinute = 355, }, },
+ [2] = { critChance = 15, levelRequirement = 3, cost = { ManaPerMinute = 420, }, },
+ [3] = { critChance = 15, levelRequirement = 6, cost = { ManaPerMinute = 491, }, },
+ [4] = { critChance = 15, levelRequirement = 10, cost = { ManaPerMinute = 571, }, },
+ [5] = { critChance = 15, levelRequirement = 14, cost = { ManaPerMinute = 658, }, },
+ [6] = { critChance = 15, levelRequirement = 18, cost = { ManaPerMinute = 754, }, },
+ [7] = { critChance = 15, levelRequirement = 22, cost = { ManaPerMinute = 861, }, },
+ [8] = { critChance = 15, levelRequirement = 26, cost = { ManaPerMinute = 977, }, },
+ [9] = { critChance = 15, levelRequirement = 31, cost = { ManaPerMinute = 1106, }, },
+ [10] = { critChance = 15, levelRequirement = 36, cost = { ManaPerMinute = 1246, }, },
+ [11] = { critChance = 15, levelRequirement = 41, cost = { ManaPerMinute = 1401, }, },
+ [12] = { critChance = 15, levelRequirement = 46, cost = { ManaPerMinute = 1570, }, },
+ [13] = { critChance = 15, levelRequirement = 52, cost = { ManaPerMinute = 1755, }, },
+ [14] = { critChance = 15, levelRequirement = 58, cost = { ManaPerMinute = 1958, }, },
+ [15] = { critChance = 15, levelRequirement = 64, cost = { ManaPerMinute = 2180, }, },
+ [16] = { critChance = 15, levelRequirement = 66, cost = { ManaPerMinute = 2422, }, },
+ [17] = { critChance = 15, levelRequirement = 72, cost = { ManaPerMinute = 2687, }, },
+ [18] = { critChance = 15, levelRequirement = 78, cost = { ManaPerMinute = 2976, }, },
+ [19] = { critChance = 15, levelRequirement = 84, cost = { ManaPerMinute = 3291, }, },
+ [20] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 3634, }, },
+ [21] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4008, }, },
+ [22] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4415, }, },
+ [23] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 4859, }, },
+ [24] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5341, }, },
+ [25] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 5865, }, },
+ [26] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 6435, }, },
+ [27] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7055, }, },
+ [28] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 7728, }, },
+ [29] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 8458, }, },
+ [30] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 9251, }, },
+ [31] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 10111, }, },
+ [32] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 11043, }, },
+ [33] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 12054, }, },
+ [34] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 13150, }, },
+ [35] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 14338, }, },
+ [36] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 15624, }, },
+ [37] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 17017, }, },
+ [38] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 18526, }, },
+ [39] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 20158, }, },
+ [40] = { critChance = 15, levelRequirement = 90, cost = { ManaPerMinute = 21924, }, },
},
statSets = {
[1] = {
label = "Projectile",
baseEffectiveness = 1.4199999570847,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0054999999701977,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
statDescriptionScope = "bone_spike_statset_0",
baseFlags = {
spell = true,
@@ -1702,7 +1813,7 @@ skills["BonestormPlayer"] = {
{ "base_number_of_projectiles", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_minimum_channel_time_ms", 300 },
{ "bone_spear_target_rectangle_length", 40 },
{ "base_number_of_allowed_bone_storm_projectiles", 20 },
@@ -1722,54 +1833,58 @@ skills["BonestormPlayer"] = {
"projectiles_fire_at_ground",
"cast_speed_modifiers_apply_to_over_time_cost",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [4] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
[5] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [6] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 36, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 54, 82, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 61, 92, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 69, 104, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 98, 146, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 122, 182, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 151, 226, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 186, 279, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 207, 310, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 229, 344, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 254, 382, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 472, 708, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 523, 785, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 644, 965, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 714, 1071, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 792, 1188, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 880, 1319, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [14] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 71, 107, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 81, 121, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 116, 175, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 166, 249, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 187, 280, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 210, 315, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 236, 353, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 264, 397, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 297, 445, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 333, 500, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 374, 562, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 421, 631, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 531, 797, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 597, 896, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 672, 1008, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 756, 1134, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 851, 1277, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 959, 1439, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1082, 1623, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1220, 1831, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
label = "Explosion",
baseEffectiveness = 1.0900000333786,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0054999999701977,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
statDescriptionScope = "bone_spike_statset_1",
baseFlags = {
spell = true,
@@ -1779,7 +1894,7 @@ skills["BonestormPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_minimum_channel_time_ms", 300 },
{ "bone_spear_target_rectangle_length", 40 },
{ "base_number_of_allowed_bone_storm_projectiles", 20 },
@@ -1806,47 +1921,51 @@ skills["BonestormPlayer"] = {
"display_statset_hide_usage_stats",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0, 0, 3, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
[2] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
[4] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
[5] = { 0, 0, 10, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 21, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 24, 37, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [6] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 21, 31, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
[11] = { 0, 0, 28, 42, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 0, 0, 32, 48, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 37, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [13] = { 0, 0, 37, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
[14] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 47, 71, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 60, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 67, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 75, 112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 84, 126, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 93, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 104, 156, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 116, 174, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 129, 193, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 143, 214, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 159, 238, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 176, 264, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 195, 293, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 217, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 240, 360, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 266, 399, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 295, 442, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 327, 490, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 362, 544, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 402, 603, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 445, 668, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 494, 741, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 548, 822, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 608, 912, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 675, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [15] = { 0, 0, 48, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 55, 82, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 70, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 79, 119, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 89, 134, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 101, 151, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 113, 170, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 127, 191, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 143, 215, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 161, 241, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 181, 271, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 203, 305, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 228, 342, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 256, 384, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 287, 431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 323, 484, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 363, 544, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 408, 612, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 458, 688, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 516, 774, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 580, 871, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 654, 980, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 736, 1105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 830, 1245, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 937, 1405, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1856,10 +1975,10 @@ skills["MetaCastOnCritPlayer"] = {
baseTypeName = "Cast on Critical",
color = 3,
description = "While active, gains Energy when you Critically Hit enemies and triggers socketed Spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { spiritReservationFlat = 100, levelRequirement = 0, },
@@ -1972,6 +2091,8 @@ skills["SupportMetaCastOnCritPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -2018,7 +2139,7 @@ skills["SupportMetaCastOnCritPlayer"] = {
[1] = {
label = "SupportMetaCastOnCritPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -2028,7 +2149,6 @@ skills["SupportMetaCastOnCritPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -2080,10 +2200,10 @@ skills["MetaCastOnDodgePlayer"] = {
baseTypeName = "Cast on Dodge",
color = 3,
description = "While active, gains Energy when you dodge roll and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { spiritReservationFlat = 100, levelRequirement = 0, },
@@ -2196,6 +2316,8 @@ skills["SupportMetaCastOnDodgePlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -2242,7 +2364,7 @@ skills["SupportMetaCastOnDodgePlayer"] = {
[1] = {
label = "SupportMetaCastOnDodgePlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -2251,7 +2373,6 @@ skills["SupportMetaCastOnDodgePlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -2298,290 +2419,69 @@ skills["SupportMetaCastOnDodgePlayer"] = {
},
}
}
-skills["MetaCastOnFreezePlayer"] = {
- name = "Cast on Freeze",
- baseTypeName = "Cast on Freeze",
+skills["MetaCastOnElementalAilmentPlayer"] = {
+ name = "Cast on Elemental Ailment",
+ baseTypeName = "Cast on Elemental Ailment",
color = 3,
- description = "While active, gains Energy when you Freeze enemies and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Cold] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ description = "While active, gains Energy when you Freeze, Shock, or Ignite enemies, and triggers socketed spells on reaching maximum Energy.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
{ "energy_generated_+%", 0.75 },
},
levels = {
- [1] = { spiritReservationFlat = 60, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 60, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 60, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 60, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 60, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 60, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 60, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 60, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 60, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 60, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 60, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 60, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 60, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 60, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 60, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 60, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 60, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 60, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 60, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 60, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Cast on Freeze",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- },
- constantStats = {
- { "cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze", 1000 },
- },
- stats = {
- "energy_generated_+%",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
- "base_deal_no_damage",
- },
- levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["SupportMetaCastOnFreezePlayer"] = {
- name = "SupportMetaCastOnFreezePlayer",
- hidden = true,
- support = true,
- requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
- addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
- excludeSkillTypes = { SkillType.SupportedByHourglass, },
- isTrigger = true,
- levels = {
- [1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 0, },
- [3] = { levelRequirement = 0, },
- [4] = { levelRequirement = 0, },
- [5] = { levelRequirement = 0, },
- [6] = { levelRequirement = 0, },
- [7] = { levelRequirement = 0, },
- [8] = { levelRequirement = 0, },
- [9] = { levelRequirement = 0, },
- [10] = { levelRequirement = 0, },
- [11] = { levelRequirement = 0, },
- [12] = { levelRequirement = 0, },
- [13] = { levelRequirement = 0, },
- [14] = { levelRequirement = 0, },
- [15] = { levelRequirement = 0, },
- [16] = { levelRequirement = 0, },
- [17] = { levelRequirement = 0, },
- [18] = { levelRequirement = 0, },
- [19] = { levelRequirement = 0, },
- [20] = { levelRequirement = 0, },
- [21] = { levelRequirement = 0, },
- [22] = { levelRequirement = 0, },
- [23] = { levelRequirement = 0, },
- [24] = { levelRequirement = 0, },
- [25] = { levelRequirement = 0, },
- [26] = { levelRequirement = 0, },
- [27] = { levelRequirement = 0, },
- [28] = { levelRequirement = 0, },
- [29] = { levelRequirement = 0, },
- [30] = { levelRequirement = 0, },
- [31] = { levelRequirement = 0, },
- [32] = { levelRequirement = 0, },
- [33] = { levelRequirement = 0, },
- [34] = { levelRequirement = 0, },
- [35] = { levelRequirement = 0, },
- [36] = { levelRequirement = 0, },
- [37] = { levelRequirement = 0, },
- [38] = { levelRequirement = 0, },
- [39] = { levelRequirement = 0, },
- [40] = { levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "SupportMetaCastOnFreezePlayer",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
- baseFlags = {
- },
- constantStats = {
- { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
- },
- stats = {
- "triggered_by_generic_ongoing_trigger",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["MetaCastOnIgnitePlayer"] = {
- name = "Cast on Ignite",
- baseTypeName = "Cast on Ignite",
- color = 3,
- description = "While active, gains Energy when you Ignite enemies and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
- castTime = 0,
- qualityStats = {
- { "energy_generated_+%", 0.75 },
- },
- levels = {
- [1] = { spiritReservationFlat = 60, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 60, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 60, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 60, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 60, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 60, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 60, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 60, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 60, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 60, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 60, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 60, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 60, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 60, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 60, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 60, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 60, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 60, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 60, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [1] = { spiritReservationFlat = 100, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 100, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 100, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 100, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 100, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 100, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 100, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 100, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 100, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 100, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 100, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 100, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 100, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 100, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 100, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 100, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 100, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 100, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 100, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 100, levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Cast on Ignite",
+ label = "Cast on Elemental Ailment",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
},
constantStats = {
- { "cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite", 200 },
+ { "cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite", 100 },
+ { "cast_on_shock_gain_X_centienergy_per_monster_power_on_shock", 100 },
+ { "cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze", 1000 },
},
stats = {
"energy_generated_+%",
@@ -2634,14 +2534,16 @@ skills["MetaCastOnIgnitePlayer"] = {
},
}
}
-skills["SupportMetaCastOnIgnitePlayer"] = {
- name = "SupportMetaCastOnIgnitePlayer",
+skills["SupportMetaCastOnElementalAilmentPlayer"] = {
+ name = "SupportMetaCastOnElementalAilmentPlayer",
hidden = true,
support = true,
requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -2686,9 +2588,9 @@ skills["SupportMetaCastOnIgnitePlayer"] = {
},
statSets = {
[1] = {
- label = "SupportMetaCastOnIgnitePlayer",
+ label = "SupportMetaCastOnElementalAilmentPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -2697,7 +2599,6 @@ skills["SupportMetaCastOnIgnitePlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -2865,6 +2766,8 @@ skills["SupportMetaCastOnMinionDeathPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, SkillType.CreatesMinion, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -2911,7 +2814,7 @@ skills["SupportMetaCastOnMinionDeathPlayer"] = {
[1] = {
label = "SupportMetaCastOnMinionDeathPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -2920,7 +2823,6 @@ skills["SupportMetaCastOnMinionDeathPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -2967,239 +2869,16 @@ skills["SupportMetaCastOnMinionDeathPlayer"] = {
},
}
}
-skills["MetaCastOnShockPlayer"] = {
- name = "Cast on Shock",
- baseTypeName = "Cast on Shock",
+skills["WeaponGrantedChaosboltPlayer"] = {
+ name = "Chaos Bolt",
+ baseTypeName = "Chaos Bolt",
+ fromItem = true,
color = 3,
- description = "While active, gains Energy when you Shock enemies and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
- castTime = 0,
+ description = "Fire a burst of Chaos energy at the target.",
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.75,
qualityStats = {
- { "energy_generated_+%", 0.75 },
- },
- levels = {
- [1] = { spiritReservationFlat = 60, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 60, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 60, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 60, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 60, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 60, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 60, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 60, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 60, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 60, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 60, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 60, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 60, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 60, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 60, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 60, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 60, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 60, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 60, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 60, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Cast on Shock",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- },
- constantStats = {
- { "cast_on_shock_gain_X_centienergy_per_monster_power_on_shock", 100 },
- },
- stats = {
- "energy_generated_+%",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
- "base_deal_no_damage",
- },
- levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["SupportMetaCastOnShockPlayer"] = {
- name = "SupportMetaCastOnShockPlayer",
- hidden = true,
- support = true,
- requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
- addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
- excludeSkillTypes = { SkillType.SupportedByHourglass, },
- isTrigger = true,
- levels = {
- [1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 0, },
- [3] = { levelRequirement = 0, },
- [4] = { levelRequirement = 0, },
- [5] = { levelRequirement = 0, },
- [6] = { levelRequirement = 0, },
- [7] = { levelRequirement = 0, },
- [8] = { levelRequirement = 0, },
- [9] = { levelRequirement = 0, },
- [10] = { levelRequirement = 0, },
- [11] = { levelRequirement = 0, },
- [12] = { levelRequirement = 0, },
- [13] = { levelRequirement = 0, },
- [14] = { levelRequirement = 0, },
- [15] = { levelRequirement = 0, },
- [16] = { levelRequirement = 0, },
- [17] = { levelRequirement = 0, },
- [18] = { levelRequirement = 0, },
- [19] = { levelRequirement = 0, },
- [20] = { levelRequirement = 0, },
- [21] = { levelRequirement = 0, },
- [22] = { levelRequirement = 0, },
- [23] = { levelRequirement = 0, },
- [24] = { levelRequirement = 0, },
- [25] = { levelRequirement = 0, },
- [26] = { levelRequirement = 0, },
- [27] = { levelRequirement = 0, },
- [28] = { levelRequirement = 0, },
- [29] = { levelRequirement = 0, },
- [30] = { levelRequirement = 0, },
- [31] = { levelRequirement = 0, },
- [32] = { levelRequirement = 0, },
- [33] = { levelRequirement = 0, },
- [34] = { levelRequirement = 0, },
- [35] = { levelRequirement = 0, },
- [36] = { levelRequirement = 0, },
- [37] = { levelRequirement = 0, },
- [38] = { levelRequirement = 0, },
- [39] = { levelRequirement = 0, },
- [40] = { levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "SupportMetaCastOnShockPlayer",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
- baseFlags = {
- },
- constantStats = {
- { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
- },
- stats = {
- "triggered_by_generic_ongoing_trigger",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["WeaponGrantedChaosboltPlayer"] = {
- name = "Chaos Bolt",
- baseTypeName = "Chaos Bolt",
- fromItem = true,
- color = 3,
- description = "Fire a burst of Chaos energy at the target.",
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.75,
- qualityStats = {
- { "base_projectile_speed_+%", 2 },
+ { "base_projectile_speed_+%", 2 },
},
levels = {
[1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, },
@@ -3246,9 +2925,9 @@ skills["WeaponGrantedChaosboltPlayer"] = {
statSets = {
[1] = {
label = "Chaos Bolt",
- baseEffectiveness = 2.2000000476837,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 2.460000038147,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
spell = true,
@@ -3258,64 +2937,71 @@ skills["WeaponGrantedChaosboltPlayer"] = {
{ "monster_projectile_variation", 1109 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_withered_base_duration_ms", 4000 },
},
stats = {
"spell_minimum_base_chaos_damage",
"spell_maximum_base_chaos_damage",
+ "apply_x_wither_on_hit",
"base_is_projectile",
"projectile_uses_contact_position",
"check_for_targets_between_initiator_and_projectile_source",
"maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
},
levels = {
- [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 15, 27, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 19, 34, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 23, 42, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 28, 51, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 33, 61, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 39, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 45, 84, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 52, 97, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 60, 112, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 69, 129, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 79, 147, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 90, 168, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 103, 191, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 116, 216, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 132, 244, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 149, 276, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 168, 311, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 189, 350, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 212, 394, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 239, 443, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 268, 498, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 301, 559, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 338, 627, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 379, 704, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 425, 790, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 477, 886, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 535, 994, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 601, 1116, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 675, 1253, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 758, 1407, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 851, 1580, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 956, 1776, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1075, 1997, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1210, 2247, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1362, 2529, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1534, 2848, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1728, 3210, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 5, 9, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 13, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 19, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 14, 25, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 18, 32, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 22, 41, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 27, 51, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 33, 62, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 41, 75, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 48, 91, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 58, 108, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 68, 125, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 78, 145, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 90, 167, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 103, 192, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 118, 220, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 135, 251, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 154, 286, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 176, 326, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 200, 371, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 227, 422, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 259, 480, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 294, 545, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 334, 619, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 379, 703, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 430, 799, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 488, 907, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 555, 1030, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 630, 1171, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 717, 1331, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 815, 1514, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 928, 1723, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1056, 1961, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1203, 2235, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1372, 2549, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1566, 2908, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1789, 3322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2045, 3798, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2340, 4346, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2680, 4978, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["ChargeInfusionPlayer"] = {
+skills["ChargeRegulationPlayer"] = {
name = "Charge Infusion",
baseTypeName = "Charge Infusion",
color = 3,
@@ -3323,7 +3009,7 @@ skills["ChargeInfusionPlayer"] = {
skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, },
castTime = 1,
qualityStats = {
- { "consume_frenzy_power_and_endurance_charge_every_x_ms", 40 },
+ { "consume_frenzy_power_and_endurance_charge_every_x_ms", 120 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -3393,46 +3079,46 @@ skills["ChargeInfusionPlayer"] = {
"base_deal_no_damage",
},
levels = {
- [1] = { 5, 10, 9, 3000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 5, 10, 9, 3100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 5, 10, 9, 3200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 5, 11, 10, 3300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6, 11, 10, 3400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6, 11, 10, 3500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6, 12, 10, 3600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6, 12, 11, 3700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 7, 12, 11, 3800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 7, 13, 11, 3900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 7, 13, 11, 4000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 8, 14, 12, 4100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 8, 14, 12, 4200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 8, 15, 12, 4300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 9, 15, 13, 4400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 9, 16, 13, 4500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 10, 17, 14, 4600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 11, 18, 15, 4700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 11, 19, 16, 4800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 12, 20, 17, 4900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 13, 21, 18, 5000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 14, 22, 19, 5100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 15, 23, 20, 5200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 15, 23, 20, 5300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 16, 24, 21, 5400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 16, 24, 21, 5500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 16, 24, 21, 5600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 17, 25, 22, 5700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 17, 25, 22, 5800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 17, 25, 22, 5900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 18, 25, 22, 6000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 18, 26, 23, 6100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 18, 26, 23, 6200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 19, 26, 23, 6300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 19, 26, 23, 6400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 19, 26, 24, 6500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 20, 27, 24, 6600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 20, 27, 24, 6700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 20, 27, 24, 6800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 21, 27, 25, 6900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 10, 20, 15, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 11, 20, 15, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 11, 20, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 11, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 12, 21, 16, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 12, 22, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 13, 23, 17, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 13, 23, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 13, 23, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 13, 24, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 14, 24, 18, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 14, 24, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 14, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 14, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 15, 25, 19, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 15, 26, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 16, 27, 20, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 16, 27, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 16, 27, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 16, 28, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 17, 28, 21, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 17, 28, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 17, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 17, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 18, 29, 22, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 18, 30, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 19, 31, 23, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 19, 31, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 19, 31, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 19, 32, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 20, 32, 24, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 20, 32, 25, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 20, 33, 25, 10000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -3441,8 +3127,8 @@ skills["ChargedStaffPlayer"] = {
name = "Charged Staff",
baseTypeName = "Charged Staff",
color = 3,
- description = "Consume all Power Charges to infuse your Quarterstaff with electricity, adding Lightning damage and a Lightning shockwave to your Quarterstaff Attacks. Reusing this skill while the Buff is active adds to the Buff's duration and damage.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, },
+ description = "Consume all Power Charges to charge your Quarterstaff with electricity, adding Lightning damage and a Lightning shockwave to your Quarterstaff Attacks. Reusing this skill while the Buff is active adds to the Buff's duration and damage.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
@@ -3452,45 +3138,45 @@ skills["ChargedStaffPlayer"] = {
},
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 15, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 20, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 22, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 23, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 25, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 27, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 29, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 33, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 35, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 38, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 41, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 44, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 47, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 50, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 54, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 58, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 62, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 67, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 72, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 77, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 82, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 17, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 25, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 27, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 30, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 32, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 35, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 37, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 40, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 43, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 46, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 49, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 52, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 55, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 58, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 61, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 65, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 68, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 72, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 84, }, },
[26] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 117, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 134, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 235, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 96, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 101, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 105, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 115, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 120, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 125, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 131, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 136, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 147, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 153, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 159, }, },
},
statSets = {
[1] = {
@@ -3685,186 +3371,64 @@ skills["ChargedStaffShockwavePlayer"] = {
},
}
}
-skills["ColdSnapPlayer"] = {
- name = "Cold Snap",
- baseTypeName = "Cold Snap",
- color = 3,
- description = "Shatter the frost on a Frozen enemy, Consuming the Freeze to deal a large amount of Cold Damage to enemies caught in the blast. Can also be cast on a Frostbolt to cause it to explode immediately. Any Frozen enemies hit by the Frostbolt's explosion will be dealt Cold Snap's damage and have their Freeze Consumed.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, },
- castTime = 0.5,
- qualityStats = {
- { "active_skill_cast_speed_+%_final", 1 },
- },
- levels = {
- [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 7, }, },
- [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 9, }, },
- [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 14, }, },
- [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 18, }, },
- [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 20, }, },
- [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 23, }, },
- [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 26, }, },
- [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 29, }, },
- [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 33, }, },
- [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 37, }, },
- [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 42, }, },
- [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 48, }, },
- [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 54, }, },
- [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 62, }, },
- [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 70, }, },
- [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 79, }, },
- [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 90, }, },
- [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 101, }, },
- [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 115, }, },
- [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 130, }, },
- [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 147, }, },
- [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 167, }, },
- [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 189, }, },
- [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 214, }, },
- [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 242, }, },
- [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 274, }, },
- [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 310, }, },
- [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 351, }, },
- [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 397, }, },
- [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 450, }, },
- [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 509, }, },
- [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 576, }, },
- [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 652, }, },
- [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 738, }, },
- [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 835, }, },
- [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 945, }, },
- },
- statSets = {
- [1] = {
- label = "Cold Snap",
- baseEffectiveness = 7.1999998092651,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0074999998323619,
- statDescriptionScope = "shatter",
- baseFlags = {
- area = true,
- spell = true,
- },
- constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- },
- stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "can_perform_skill_while_moving",
- "base_consume_enemy_freeze_on_hit",
- "is_area_damage",
- "never_freeze",
- },
- levels = {
- [1] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 104, 157, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 125, 187, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 173, 260, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 233, 350, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 269, 403, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 353, 530, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 403, 605, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 459, 688, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 521, 782, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 591, 887, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 670, 1005, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 758, 1138, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 969, 1454, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 1095, 1643, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 1237, 1855, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 1396, 2095, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 1577, 2365, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1780, 2670, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 2010, 3015, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 2271, 3406, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 2566, 3848, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 2900, 4350, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 3279, 4919, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 3710, 5566, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 4200, 6301, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 4758, 7138, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 5394, 8091, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 6119, 9179, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 6947, 10421, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 7894, 11840, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
skills["CometPlayer"] = {
name = "Comet",
baseTypeName = "Comet",
color = 3,
- description = "Call down a mass of ice from the sky, dealing high damage at the targeted location. Targeting close to you will cause you to jump back as you cast.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, },
+ description = "Call down a mass of ice from the sky, dealing high damage at the targeted location. Targeting close to you will cause you to jump back as you cast. Consumes a Fire Infusion if possible to cause a devastating blast of ice and fire.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
- { "additional_base_critical_strike_chance", 10 },
+ { "skill_echo_chance_%", 0.5 },
},
levels = {
- [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 18, }, },
- [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 21, }, },
- [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 24, }, },
+ [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 17, }, },
+ [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 23, }, },
[4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 27, }, },
[5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 31, }, },
- [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 35, }, },
- [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 39, }, },
- [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 44, }, },
- [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 50, }, },
- [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 57, }, },
- [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 65, }, },
- [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 73, }, },
- [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 83, }, },
- [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 94, }, },
- [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 106, }, },
- [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 120, }, },
- [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 136, }, },
- [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 154, }, },
- [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 175, }, },
- [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 198, }, },
- [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 224, }, },
- [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 253, }, },
- [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 287, }, },
- [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 325, }, },
- [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 368, }, },
- [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 416, }, },
- [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 471, }, },
- [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 533, }, },
- [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 603, }, },
- [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 683, }, },
- [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 773, }, },
- [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 875, }, },
- [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 990, }, },
- [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1120, }, },
- [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1268, }, },
- [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1435, }, },
- [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1624, }, },
- [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1838, }, },
- [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 2080, }, },
- [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 2354, }, },
+ [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 36, }, },
+ [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 41, }, },
+ [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 46, }, },
+ [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 52, }, },
+ [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 59, }, },
+ [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 67, }, },
+ [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 75, }, },
+ [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 84, }, },
+ [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 93, }, },
+ [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 104, }, },
+ [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 115, }, },
+ [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 128, }, },
+ [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 142, }, },
+ [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 157, }, },
+ [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 173, }, },
+ [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 191, }, },
+ [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 211, }, },
+ [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 232, }, },
+ [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 255, }, },
+ [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 280, }, },
+ [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 307, }, },
+ [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 337, }, },
+ [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 369, }, },
+ [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 404, }, },
+ [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 442, }, },
+ [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 483, }, },
+ [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 528, }, },
+ [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 576, }, },
+ [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 629, }, },
+ [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 686, }, },
+ [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 747, }, },
+ [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 814, }, },
+ [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 886, }, },
+ [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 964, }, },
+ [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 1049, }, },
},
statSets = {
[1] = {
label = "Comet",
- baseEffectiveness = 7.1100001335144,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 7.8000001907349,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "comet",
baseFlags = {
area = true,
@@ -3881,103 +3445,184 @@ skills["CometPlayer"] = {
"spell_maximum_base_cold_damage",
"is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
+ "active_skill_consumes_a_fire_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 70, 104, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 105, 157, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 125, 188, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 175, 263, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 205, 307, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 238, 357, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 275, 413, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 317, 476, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 364, 547, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 478, 716, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 545, 818, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 622, 932, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 805, 1208, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 915, 1373, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 1040, 1560, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 1182, 1772, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 1342, 2013, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 1524, 2287, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 1732, 2597, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1967, 2951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 2236, 3354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 2542, 3813, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 2892, 4337, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 3291, 4936, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 3748, 5621, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 4271, 6406, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 4870, 7306, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 5559, 8338, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 6350, 9524, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 7260, 10889, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8308, 12462, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 9516, 14274, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 74, 111, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 92, 138, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 135, 202, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 161, 241, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 190, 285, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 261, 391, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 304, 456, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 353, 529, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 472, 708, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 544, 816, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 627, 940, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 721, 1081, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 829, 1243, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 952, 1428, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1094, 1641, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1256, 1884, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1443, 2164, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1657, 2486, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1904, 2856, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 2189, 3284, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2518, 3777, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 2898, 4346, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 3337, 5006, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 3847, 5770, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 4438, 6656, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 5124, 7686, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 5923, 8885, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 6854, 10281, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 7939, 11909, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 9208, 13811, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 10691, 16037, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 12430, 18645, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 14470, 21705, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
- }
-}
-skills["ConductivityPlayer"] = {
- name = "Conductivity",
- baseTypeName = "Conductivity",
- color = 3,
- description = "Curse all targets in an area after a short delay, lowering their Lightning Resistance.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.7,
- qualityStats = {
+ [2] = {
+ label = "Fire-Infused",
+ baseEffectiveness = 5.1999998092651,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "comet",
+ baseFlags = {
+ area = true,
+ spell = true,
+ },
+ constantStats = {
+ { "range_backflip_conditional_distance", 30 },
+ { "total_cast_time_+_ms", 1000 },
+ { "comet_explosion_delay_ms", 470 },
+ { "active_skill_base_area_of_effect_radius", 34 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "active_skill_consumes_a_fire_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 16, 24, 16, 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 22, 33, 22, 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 30, 45, 30, 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 39, 59, 39, 59, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 49, 74, 49, 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 61, 92, 61, 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 75, 112, 75, 112, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 90, 135, 90, 135, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 107, 161, 107, 161, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 127, 190, 127, 190, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 149, 223, 149, 223, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 174, 261, 174, 261, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 203, 304, 203, 304, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 235, 353, 235, 353, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 272, 408, 272, 408, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 315, 472, 315, 472, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 363, 544, 363, 544, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 418, 627, 418, 627, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 481, 721, 481, 721, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 553, 829, 553, 829, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 635, 952, 635, 952, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 729, 1094, 729, 1094, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 837, 1256, 837, 1256, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 962, 1443, 962, 1443, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 1105, 1657, 1105, 1657, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 1270, 1904, 1270, 1904, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 1459, 2189, 1459, 2189, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 1679, 2518, 1679, 2518, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 1932, 2898, 1932, 2898, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 2225, 3337, 2225, 3337, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 2564, 3847, 2564, 3847, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 2958, 4438, 2958, 4438, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 3416, 5124, 3416, 5124, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 3949, 5923, 3949, 5923, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 4569, 6854, 4569, 6854, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 5293, 7939, 5293, 7939, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 6138, 9208, 6138, 9208, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 7128, 10691, 7128, 10691, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 8287, 12430, 8287, 12430, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 9646, 14470, 9646, 14470, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ConductivityPlayer"] = {
+ name = "Conductivity",
+ baseTypeName = "Conductivity",
+ color = 3,
+ description = "Curse all targets in an area after a short delay, lowering their Lightning Resistance.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.7,
+ qualityStats = {
{ "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
[2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
[9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
},
statSets = {
[1] = {
@@ -3999,7 +3644,7 @@ skills["ConductivityPlayer"] = {
{ "curse_delay_duration_ms", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
@@ -4008,6 +3653,9 @@ skills["ConductivityPlayer"] = {
"base_deal_no_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
[2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
@@ -4058,59 +3706,59 @@ skills["ContagionPlayer"] = {
baseTypeName = "Contagion",
color = 3,
description = "Afflict a single enemy with a Debuff that deals Chaos damage over time. If the enemy dies while affected by Contagion, it and all other Chaos damage over time Debuffs spread to nearby enemies and refresh their durations. Reanimating or detonating a corpse affected by Contagion will cause the Minion or explosion to\nspread Contagion on hit.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
- { "contagion_maximum_spread_magnitude_+%_final", 5 },
+ { "contagion_number_of_additional_targets", 0.1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 9, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 10, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 8, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { levelRequirement = 6, cost = { Mana = 11, }, },
[4] = { levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 16, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 17, }, },
[7] = { levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 24, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 27, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 35, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 25, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 28, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 36, }, },
[13] = { levelRequirement = 52, cost = { Mana = 40, }, },
[14] = { levelRequirement = 58, cost = { Mana = 45, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 51, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 58, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 65, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 74, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 84, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 108, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 122, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 138, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 156, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 177, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 200, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 227, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 257, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 291, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 329, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 372, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 421, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 477, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 540, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 611, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 692, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 783, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 886, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1003, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1135, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 50, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 55, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 61, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 68, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 83, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 101, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 135, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 148, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 162, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 195, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 213, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 233, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 254, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 278, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 303, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 330, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 360, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 392, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 427, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 464, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 505, }, },
},
statSets = {
[1] = {
label = "Contagion",
baseEffectiveness = 1.7999999523163,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
statDescriptionScope = "contagion",
baseFlags = {
area = true,
@@ -4124,7 +3772,7 @@ skills["ContagionPlayer"] = {
{ "contagion_maximum_spread_magnitude_+%_final", 300 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "pvp_skill_dot_attack_time_override_ms", 10000 },
},
stats = {
@@ -4135,45 +3783,45 @@ skills["ContagionPlayer"] = {
},
levels = {
[1] = { 117, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 172, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 250, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 340, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 441, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 555, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 684, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 831, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 997, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [2] = { 169, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 245, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 332, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 431, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 544, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 674, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 822, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 991, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
[10] = { 1184, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 1397, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 1638, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 1911, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 2220, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 2572, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 2971, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 3425, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 3942, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 4530, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 5201, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 5967, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 6841, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 7841, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 8986, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 10298, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 11803, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 13532, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 15520, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 17808, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 20446, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 23490, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 27007, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 31076, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 35790, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 41257, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 47607, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 54993, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 63593, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 73622, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 85334, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [11] = { 1405, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 1658, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 1949, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 2282, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 2664, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 3103, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 3608, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 4190, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 4861, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 5635, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 6529, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7564, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 8763, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 10154, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 11769, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 13647, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 15835, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 18386, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 21366, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 24850, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 28932, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 33719, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 39344, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 45961, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 53760, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 62964, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 73844, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 86728, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 102007, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 120158, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -4183,7 +3831,7 @@ skills["ConvalescencePlayer"] = {
baseTypeName = "Convalescence",
color = 3,
description = "While active, grants a skill that you can use to instantly begin Recharging Energy Shield and gain a Buff for a duration that prevents that Recharge being interrupted. The Buff is removed at maximum Energy Shield and the skill cannot be used while Energy Shield is full.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.ReserveInAllSets] = true, },
castTime = 0,
qualityStats = {
},
@@ -4231,7 +3879,7 @@ skills["ConvalescencePlayer"] = {
},
statSets = {
[1] = {
- label = "Hidden",
+ label = "Convalescence",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
@@ -4282,25 +3930,82 @@ skills["ConvalescencePlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
- [2] = {
+ }
+}
+skills["ConvalescenceActivePlayer"] = {
+ name = "Convalescence",
+ hidden = true,
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.Spell] = true, },
+ castTime = 0.5,
+ qualityStats = {
+ { "base_skill_effect_duration", 25 },
+ },
+ levels = {
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [2] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [3] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [4] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [5] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [6] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [7] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [8] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [9] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [10] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [11] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [12] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [13] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [14] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [15] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [16] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [17] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [18] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [19] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [20] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [21] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [22] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [23] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [24] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [25] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [26] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [27] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [28] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [29] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [30] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [31] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [32] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [33] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [34] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [35] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [36] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [37] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [38] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [39] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ [40] = { storedUses = 1, levelRequirement = 0, cooldown = 30, cost = { Mana = 20, }, },
+ },
+ statSets = {
+ [1] = {
label = "Convalescence",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "convalescence_active",
baseFlags = {
duration = true,
},
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "skill_specific_stat_description_mode", 30 },
},
stats = {
"base_skill_effect_duration",
- "base_deal_no_damage",
"display_this_skill_cooldown_does_not_recover_during_buff",
+ "base_deal_no_damage",
"can_perform_skill_while_moving",
"quality_display_base_skill_effect_duration_is_gem",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 3000, statInterpolation = { 1, }, actorLevel = 1, },
[2] = { 3050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
@@ -4346,334 +4051,363 @@ skills["ConvalescencePlayer"] = {
},
}
}
-skills["DarkEffigyPlayer"] = {
- name = "Dark Effigy",
- baseTypeName = "Dark Effigy",
+skills["CracklingPalmPlayer"] = {
+ name = "Crackling Palm",
+ baseTypeName = "Crackling Palm",
color = 3,
- description = "Raise a Totem that bombards enemies afflicted by Chaos damage over time Debuffs.",
- skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.Limit] = true, },
- skillTotemId = 24,
- castTime = 1,
+ description = "When you Hit with Unarmed Melee Attacks, calls down lightning bolts which deal Unarmed Attack damage to all surrounding enemies.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Attack] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, },
+ weaponTypes = {
+ ["None"] = true,
+ },
+ castTime = 0,
qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 14, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 21, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 26, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 30, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 34, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 39, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 50, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 56, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 64, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 72, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 82, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 92, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 105, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 118, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 134, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 152, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 172, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 194, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 220, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 249, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 282, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 319, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 361, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 409, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 463, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 524, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 593, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 671, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 760, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 860, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 973, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1102, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1247, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1411, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1597, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1807, }, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Dark Effigy",
+ label = "Crackling Palm",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "thunderfist_statset_0",
+ baseFlags = {
+ },
+ constantStats = {
+ { "skill_desired_amount_override", 1 },
+ },
+ stats = {
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Bolt",
+ baseEffectiveness = 1.8999999761581,
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "thunderfist_statset_1",
baseFlags = {
+ attack = true,
+ unarmed = true,
area = true,
- spell = true,
- totem = true,
- duration = true,
},
constantStats = {
- { "base_totem_duration", 8000 },
- { "base_totem_range", 120 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "base_number_of_totems_allowed", 1 },
+ { "skill_desired_amount_override", 1 },
+ { "active_skill_base_area_of_effect_radius", 14 },
+ { "thunderfist_number_of_bolts_delays", 5 },
+ { "thunderfist_bolt_delay_ms", 500 },
},
stats = {
- "totem_elemental_resistance_%",
- "totem_chaos_resistance_%",
- "skill_is_deploy_skill",
- "is_totem",
- "can_perform_skill_while_moving",
- "totem_targets_ignoring_action_distance",
+ "attack_minimum_added_lightning_damage",
+ "attack_maximum_added_lightning_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "attack_is_not_melee_override",
+ "is_area_damage",
},
levels = {
- [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 14, baseMultiplier = 0.25, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 23, baseMultiplier = 0.27, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 2, 36, baseMultiplier = 0.3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 3, 50, baseMultiplier = 0.33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 3, 64, baseMultiplier = 0.36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4, 79, baseMultiplier = 0.38, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 5, 96, baseMultiplier = 0.41, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6, 113, baseMultiplier = 0.43, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7, 131, baseMultiplier = 0.45, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 8, 149, baseMultiplier = 0.47, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 9, 169, baseMultiplier = 0.49, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 10, 190, baseMultiplier = 0.52, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 11, 211, baseMultiplier = 0.54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 12, 233, baseMultiplier = 0.56, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 13, 256, baseMultiplier = 0.59, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 15, 280, baseMultiplier = 0.61, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 16, 305, baseMultiplier = 0.64, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 17, 331, baseMultiplier = 0.67, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 19, 358, baseMultiplier = 0.7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 20, 385, baseMultiplier = 0.73, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 22, 413, baseMultiplier = 0.76, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 23, 442, baseMultiplier = 0.79, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 25, 473, baseMultiplier = 0.82, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 26, 503, baseMultiplier = 0.86, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 28, 535, baseMultiplier = 0.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 30, 568, baseMultiplier = 0.93, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 32, 601, baseMultiplier = 0.97, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 33, 636, baseMultiplier = 1.01, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 35, 671, baseMultiplier = 1.05, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 37, 707, baseMultiplier = 1.09, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 39, 744, baseMultiplier = 1.14, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 41, 782, baseMultiplier = 1.19, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 43, 821, baseMultiplier = 1.24, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 45, 860, baseMultiplier = 1.29, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 47, 901, baseMultiplier = 1.34, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 50, 942, baseMultiplier = 1.4, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 52, 984, baseMultiplier = 1.46, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 54, 1027, baseMultiplier = 1.52, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 56, 1071, baseMultiplier = 1.59, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 59, 1116, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["DarkEffigyProjectilePlayer"] = {
- name = "Vile Effusion",
- hidden = true,
- description = "Fire a Projectile at every nearby enemy that is afflicted by a Chaos damage over time Debuff. Fires multiple Projectiles at enemies afflicted by multiple Debuffs, but Projectile count cannot be otherwise modified.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.UsedByTotem] = true, },
- castTime = 1,
+skills["MetaCastCurseOnBlockPlayer"] = {
+ name = "Curse on Block",
+ baseTypeName = "Curse on Block",
+ color = 3,
+ description = "While active, gains Energy when you Block and triggers socketed Curses on reaching maximum Energy.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ castTime = 0,
qualityStats = {
- { "withered_on_hit_for_2_seconds_%_chance", 1 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, },
- [2] = { critChance = 7, levelRequirement = 0, },
- [3] = { critChance = 7, levelRequirement = 0, },
- [4] = { critChance = 7, levelRequirement = 0, },
- [5] = { critChance = 7, levelRequirement = 0, },
- [6] = { critChance = 7, levelRequirement = 0, },
- [7] = { critChance = 7, levelRequirement = 0, },
- [8] = { critChance = 7, levelRequirement = 0, },
- [9] = { critChance = 7, levelRequirement = 0, },
- [10] = { critChance = 7, levelRequirement = 0, },
- [11] = { critChance = 7, levelRequirement = 0, },
- [12] = { critChance = 7, levelRequirement = 0, },
- [13] = { critChance = 7, levelRequirement = 0, },
- [14] = { critChance = 7, levelRequirement = 0, },
- [15] = { critChance = 7, levelRequirement = 0, },
- [16] = { critChance = 7, levelRequirement = 0, },
- [17] = { critChance = 7, levelRequirement = 0, },
- [18] = { critChance = 7, levelRequirement = 0, },
- [19] = { critChance = 7, levelRequirement = 0, },
- [20] = { critChance = 7, levelRequirement = 0, },
- [21] = { critChance = 7, levelRequirement = 0, },
- [22] = { critChance = 7, levelRequirement = 0, },
- [23] = { critChance = 7, levelRequirement = 0, },
- [24] = { critChance = 7, levelRequirement = 0, },
- [25] = { critChance = 7, levelRequirement = 0, },
- [26] = { critChance = 7, levelRequirement = 0, },
- [27] = { critChance = 7, levelRequirement = 0, },
- [28] = { critChance = 7, levelRequirement = 0, },
- [29] = { critChance = 7, levelRequirement = 0, },
- [30] = { critChance = 7, levelRequirement = 0, },
- [31] = { critChance = 7, levelRequirement = 0, },
- [32] = { critChance = 7, levelRequirement = 0, },
- [33] = { critChance = 7, levelRequirement = 0, },
- [34] = { critChance = 7, levelRequirement = 0, },
- [35] = { critChance = 7, levelRequirement = 0, },
- [36] = { critChance = 7, levelRequirement = 0, },
- [37] = { critChance = 7, levelRequirement = 0, },
- [38] = { critChance = 7, levelRequirement = 0, },
- [39] = { critChance = 7, levelRequirement = 0, },
- [40] = { critChance = 7, levelRequirement = 0, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Vile Effusion",
- baseEffectiveness = 0.85000002384186,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "dark_effigy_projectile",
+ label = "Curse on Block",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
- spell = true,
- area = true,
- projectile = true,
},
constantStats = {
- { "skill_disabled_unless_cloned", 2 },
- { "active_skill_base_area_of_effect_radius", 120 },
- { "active_skill_base_secondary_area_of_effect_radius", 12 },
- { "number_of_additional_projectiles", 100 },
+ { "cast_on_block_gain_X_centienergy_on_block", 2500 },
+ { "skill_desired_amount_override", 1 },
},
stats = {
- "spell_minimum_base_chaos_damage",
- "spell_maximum_base_chaos_damage",
- "base_is_projectile",
- "base_skill_is_totemified",
- "is_area_damage",
+ "energy_generated_+%",
+ "generic_ongoing_trigger_triggers_at_maximum_energy",
+ "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
+ "base_deal_no_damage",
},
levels = {
- [1] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 7, 13, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 11, 20, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 13, 24, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 15, 28, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 17, 32, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 20, 38, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 23, 43, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 27, 50, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 31, 57, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 35, 65, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 40, 74, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 45, 83, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, 94, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 57, 107, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 65, 120, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 73, 135, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 82, 152, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 92, 171, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 104, 192, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 116, 216, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 130, 242, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 146, 272, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 164, 305, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 184, 342, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 207, 384, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 232, 431, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 261, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 293, 544, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 329, 611, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 369, 686, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 415, 772, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 467, 868, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 526, 977, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 593, 1100, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 668, 1240, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["CorpseCloudPlayer"] = {
- name = "Decompose",
- baseTypeName = "Decompose",
- fromItem = true,
- color = 3,
- description = "Consume a Corpse to create a cloud of flammable Poisonous gas. Any Burning effects or Detonator skills will explode the gas cloud, creating a fiery explosion.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Fire] = true, },
- castTime = 0.8,
+skills["SupportMetaCastCurseOnBlockPlayer"] = {
+ name = "SupportMetaCastCurseOnBlockPlayer",
+ hidden = true,
+ support = true,
+ requireSkillTypes = { SkillType.AppliesCurse, SkillType.Triggerable, SkillType.AND, },
+ addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
+ excludeSkillTypes = { SkillType.SupportedByHourglass, },
+ isTrigger = true,
qualityStats = {
- { "base_skill_effect_duration", 50 },
- { "base_secondary_skill_effect_duration", 50 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Poison Cloud",
- baseEffectiveness = 3.539999961853,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "corpse_cloud_statset_0",
+ label = "SupportMetaCastCurseOnBlockPlayer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
- spell = true,
- area = true,
- duration = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "base_skill_effect_duration", 4000 },
- { "active_skill_ground_effect_area_of_effect_+%_final_per_second", 20 },
- { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 80 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
- { "spread_contagion_base_radius_when_using_corpse", 28 },
- { "explosion_delay_ms", 400 },
- { "number_of_poison_cloud_allowed", 6 },
- { "corpse_explosion_monster_life_permillage_chaos", 100 },
+ { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
},
stats = {
- "is_area_damage",
- "can_perform_skill_while_moving",
- "quality_display_base_skill_effect_duration_is_gem",
+ "triggered_by_generic_ongoing_trigger",
+ "generic_ongoing_trigger_triggers_at_maximum_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4718,369 +4452,762 @@ skills["CorpseCloudPlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
- [2] = {
- label = "Explosion",
- baseEffectiveness = 3.539999961853,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "corpse_cloud_statset_1",
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "base_skill_effect_duration", 4000 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
- { "spread_contagion_base_radius_when_using_corpse", 28 },
- { "explosion_delay_ms", 400 },
- },
- stats = {
- "spell_minimum_base_fire_damage",
- "spell_maximum_base_fire_damage",
- "is_area_damage",
- "can_perform_skill_while_moving",
- "quality_display_base_skill_effect_duration_is_gem",
- },
- levels = {
- [1] = { 11, 17, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 15, 23, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 21, 31, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 27, 41, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 35, 52, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 43, 64, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 52, 78, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 62, 94, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 74, 111, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 87, 131, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 102, 153, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 118, 178, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 137, 206, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 158, 237, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 181, 272, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 208, 312, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 238, 357, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 271, 407, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 309, 464, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 352, 529, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 401, 601, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 456, 684, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 518, 777, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 588, 882, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 668, 1002, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 759, 1138, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 862, 1293, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 980, 1469, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1113, 1670, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1266, 1898, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1440, 2159, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1638, 2458, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1866, 2799, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 2126, 3190, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2425, 3637, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2768, 4151, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 3161, 4742, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3614, 5422, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 4136, 6204, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4738, 7107, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
}
}
-skills["DespairPlayer"] = {
- name = "Despair",
- baseTypeName = "Despair",
+skills["DarkEffigyPlayer"] = {
+ name = "Dark Effigy",
+ baseTypeName = "Dark Effigy",
color = 3,
- description = "Curse all targets in an area after a short delay, lowering their Chaos Resistance.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.7,
+ description = "Raise a Totem that bombards enemies afflicted by Chaos damage over time Debuffs.",
+ skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, },
+ skillTotemId = 24,
+ castTime = 1,
qualityStats = {
- { "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 13, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 15, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 18, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 20, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 24, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 27, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 31, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 35, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 40, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 45, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 51, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 57, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 64, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 71, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 80, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 89, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 98, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 109, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 120, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 133, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 147, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 162, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 196, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 215, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 236, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 259, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 283, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 310, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 339, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 371, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 405, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 442, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 483, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 526, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 574, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 625, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 680, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 740, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 805, }, },
},
statSets = {
[1] = {
- label = "Despair",
- incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "despair",
- statMap = {
- ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = {
- mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
- },
- },
+ label = "Dark Effigy",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
- spell = true,
- curse = true,
area = true,
+ spell = true,
+ totem = true,
duration = true,
},
constantStats = {
- { "curse_delay_duration_ms", 1500 },
+ { "base_totem_duration", 8000 },
+ { "base_totem_range", 120 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_number_of_totems_allowed", 1 },
},
stats = {
- "base_skill_effect_duration",
- "active_skill_base_area_of_effect_radius",
- "base_skill_buff_chaos_damage_resistance_%_to_apply",
- "base_deal_no_damage",
+ "totem_elemental_resistance_%",
+ "totem_chaos_resistance_%",
+ "skill_is_deploy_skill",
+ "is_totem",
"can_perform_skill_while_moving",
+ "totem_targets_ignoring_action_distance",
+ "quality_display_base_totem_duration_is_gem",
+ "is_spell_totem",
},
levels = {
- [1] = { 6000, 15, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6200, 16, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6200, 17, -18, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6200, 18, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6400, 18, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6400, 19, -19, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6400, 20, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6600, 21, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6600, 22, -20, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6600, 23, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6800, 23, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6800, 24, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 25, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7000, 26, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7000, 27, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 7000, 28, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7200, 28, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 7200, 29, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 7200, 30, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 7400, 31, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7400, 32, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7400, 33, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7600, 34, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7600, 34, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7600, 35, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7800, 36, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7800, 37, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7800, 38, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8000, 39, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8000, 39, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8000, 40, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8200, 40, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 8200, 41, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 8200, 41, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 8400, 42, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 8400, 42, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 8400, 42, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 8600, 43, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8600, 43, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 8600, 44, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["DetonateDeadPlayer"] = {
- name = "Detonate Dead",
- baseTypeName = "Detonate Dead",
- color = 3,
- description = "Cause a Corpse to violently explode, damaging surrounding enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.8,
+skills["DarkEffigyProjectilePlayer"] = {
+ name = "Vile Effusion",
+ hidden = true,
+ description = "Fire a Projectile at every nearby enemy that is afflicted by a Chaos damage over time Debuff. Fires multiple Projectiles at enemies afflicted by multiple Debuffs, but Projectile count cannot be otherwise modified.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.UsedByTotem] = true, },
+ castTime = 1,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.2 },
+ { "active_skill_base_secondary_area_of_effect_radius", 0.1 },
},
levels = {
- [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 10, }, },
- [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 12, }, },
- [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 13, }, },
- [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 17, }, },
- [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 22, }, },
- [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 25, }, },
- [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 29, }, },
- [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 32, }, },
- [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 37, }, },
- [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 42, }, },
- [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 47, }, },
- [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 53, }, },
- [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 61, }, },
- [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 69, }, },
- [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 78, }, },
- [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 88, }, },
- [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 100, }, },
- [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 113, }, },
- [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 128, }, },
- [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 145, }, },
- [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 164, }, },
- [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 185, }, },
- [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 210, }, },
- [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 238, }, },
- [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 269, }, },
- [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 304, }, },
- [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 345, }, },
- [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 390, }, },
- [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 441, }, },
- [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 500, }, },
- [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 566, }, },
- [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 640, }, },
- [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 724, }, },
- [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 820, }, },
- [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 928, }, },
- [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1050, }, },
- [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1189, }, },
- [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 1345, }, },
+ [1] = { critChance = 7, levelRequirement = 0, },
+ [2] = { critChance = 7, levelRequirement = 0, },
+ [3] = { critChance = 7, levelRequirement = 0, },
+ [4] = { critChance = 7, levelRequirement = 0, },
+ [5] = { critChance = 7, levelRequirement = 0, },
+ [6] = { critChance = 7, levelRequirement = 0, },
+ [7] = { critChance = 7, levelRequirement = 0, },
+ [8] = { critChance = 7, levelRequirement = 0, },
+ [9] = { critChance = 7, levelRequirement = 0, },
+ [10] = { critChance = 7, levelRequirement = 0, },
+ [11] = { critChance = 7, levelRequirement = 0, },
+ [12] = { critChance = 7, levelRequirement = 0, },
+ [13] = { critChance = 7, levelRequirement = 0, },
+ [14] = { critChance = 7, levelRequirement = 0, },
+ [15] = { critChance = 7, levelRequirement = 0, },
+ [16] = { critChance = 7, levelRequirement = 0, },
+ [17] = { critChance = 7, levelRequirement = 0, },
+ [18] = { critChance = 7, levelRequirement = 0, },
+ [19] = { critChance = 7, levelRequirement = 0, },
+ [20] = { critChance = 7, levelRequirement = 0, },
+ [21] = { critChance = 7, levelRequirement = 0, },
+ [22] = { critChance = 7, levelRequirement = 0, },
+ [23] = { critChance = 7, levelRequirement = 0, },
+ [24] = { critChance = 7, levelRequirement = 0, },
+ [25] = { critChance = 7, levelRequirement = 0, },
+ [26] = { critChance = 7, levelRequirement = 0, },
+ [27] = { critChance = 7, levelRequirement = 0, },
+ [28] = { critChance = 7, levelRequirement = 0, },
+ [29] = { critChance = 7, levelRequirement = 0, },
+ [30] = { critChance = 7, levelRequirement = 0, },
+ [31] = { critChance = 7, levelRequirement = 0, },
+ [32] = { critChance = 7, levelRequirement = 0, },
+ [33] = { critChance = 7, levelRequirement = 0, },
+ [34] = { critChance = 7, levelRequirement = 0, },
+ [35] = { critChance = 7, levelRequirement = 0, },
+ [36] = { critChance = 7, levelRequirement = 0, },
+ [37] = { critChance = 7, levelRequirement = 0, },
+ [38] = { critChance = 7, levelRequirement = 0, },
+ [39] = { critChance = 7, levelRequirement = 0, },
+ [40] = { critChance = 7, levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Detonate Dead",
- baseEffectiveness = 6,
- incrementalEffectiveness = 0.050000000745058,
- damageIncrementalEffectiveness = 0.0024999999441206,
- statDescriptionScope = "detonate_dead",
+ label = "Vile Effusion",
+ baseEffectiveness = 0.85000002384186,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "dark_effigy_projectile",
baseFlags = {
- area = true,
spell = true,
- },
- baseMods = {
- skill("explodeCorpse", true),
+ area = true,
+ projectile = true,
+ totem = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 26 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "spread_contagion_base_radius_when_using_corpse", 26 },
- { "explosion_delay_ms", 400 },
+ { "skill_disabled_unless_cloned", 2 },
+ { "active_skill_base_area_of_effect_radius", 120 },
+ { "active_skill_base_secondary_area_of_effect_radius", 12 },
+ { "number_of_additional_projectiles", 100 },
},
stats = {
- "spell_minimum_base_fire_damage",
- "spell_maximum_base_fire_damage",
- "corpse_explosion_monster_life_permillage_physical",
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "base_is_projectile",
+ "base_skill_is_totemified",
"is_area_damage",
- "can_perform_skill_while_moving",
- "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
},
levels = {
- [1] = { 19, 28, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 21, 32, 53, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 24, 37, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 28, 42, 59, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 32, 48, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 36, 54, 65, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 41, 61, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 45, 68, 71, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 51, 76, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 56, 84, 77, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 62, 93, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 69, 103, 83, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 76, 113, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 83, 124, 89, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 91, 136, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 99, 149, 95, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 108, 162, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 118, 176, 101, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 128, 192, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 139, 208, 107, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 150, 225, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 162, 243, 113, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 175, 263, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 189, 284, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 204, 306, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 220, 330, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 237, 355, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 254, 382, 131, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 274, 410, 134, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 294, 441, 137, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 315, 473, 138, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 339, 508, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 363, 545, 141, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 389, 584, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 417, 626, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 447, 670, 146, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 479, 718, 147, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 512, 769, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 549, 823, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 587, 881, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 7, 13, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 10, 19, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 12, 23, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 15, 27, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 17, 32, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 20, 37, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 23, 43, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 27, 50, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 31, 58, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 36, 66, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 41, 76, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 53, 99, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 61, 113, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 69, 128, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 79, 146, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 89, 166, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 101, 188, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 115, 214, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 131, 243, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 149, 276, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 169, 313, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 192, 356, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 218, 405, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 248, 460, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 282, 523, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 321, 595, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 365, 678, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 416, 772, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 474, 881, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 541, 1005, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 618, 1148, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 707, 1312, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 809, 1502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 926, 1720, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["DisciplinePlayer"] = {
- name = "Discipline",
- baseTypeName = "Discipline",
+skills["CorpseCloudPlayer"] = {
+ name = "Decompose",
+ baseTypeName = "Decompose",
fromItem = true,
color = 3,
- description = "Emit an Aura that grants you and Allies in your Presence additional Total Energy Shield.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, },
- castTime = 0,
+ description = "Consume a Corpse to create a cloud of flammable Poisonous gas. Any Burning effects or Detonator skills will explode the gas cloud, creating a fiery explosion.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.8,
qualityStats = {
- { "base_skill_buff_energy_shield_recharge_rate_+%_to_apply", 1 },
+ { "base_skill_effect_duration", 50 },
+ { "base_secondary_skill_effect_duration", 50 },
},
levels = {
- [1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 3, },
- [3] = { levelRequirement = 6, },
- [4] = { levelRequirement = 10, },
- [5] = { levelRequirement = 14, },
- [6] = { levelRequirement = 18, },
- [7] = { levelRequirement = 22, },
- [8] = { levelRequirement = 26, },
- [9] = { levelRequirement = 31, },
- [10] = { levelRequirement = 36, },
- [11] = { levelRequirement = 41, },
- [12] = { levelRequirement = 46, },
- [13] = { levelRequirement = 52, },
- [14] = { levelRequirement = 58, },
- [15] = { levelRequirement = 64, },
- [16] = { levelRequirement = 66, },
- [17] = { levelRequirement = 72, },
- [18] = { levelRequirement = 78, },
- [19] = { levelRequirement = 84, },
- [20] = { levelRequirement = 90, },
- [21] = { levelRequirement = 90, },
- [22] = { levelRequirement = 90, },
- [23] = { levelRequirement = 90, },
- [24] = { levelRequirement = 90, },
- [25] = { levelRequirement = 90, },
- [26] = { levelRequirement = 90, },
- [27] = { levelRequirement = 90, },
+ [1] = { levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Poison Cloud",
+ baseEffectiveness = 3.539999961853,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "corpse_cloud_statset_0",
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "base_skill_effect_duration", 4000 },
+ { "active_skill_ground_effect_area_of_effect_+%_final_per_second", 20 },
+ { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 80 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "spread_contagion_base_radius_when_using_corpse", 28 },
+ { "explosion_delay_ms", 400 },
+ { "number_of_poison_cloud_allowed", 6 },
+ { "corpse_explosion_monster_life_permillage_chaos", 100 },
+ },
+ stats = {
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "quality_display_base_skill_effect_duration_is_gem",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Explosion",
+ baseEffectiveness = 3.75,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "corpse_cloud_statset_1",
+ baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "base_skill_effect_duration", 4000 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "spread_contagion_base_radius_when_using_corpse", 28 },
+ { "explosion_delay_ms", 400 },
+ },
+ stats = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "quality_display_base_skill_effect_duration_is_gem",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 9, 14, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 13, 19, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 18, 27, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 24, 36, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 31, 46, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 39, 59, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 49, 73, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 60, 91, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 73, 110, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 89, 133, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 107, 161, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 125, 188, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 146, 219, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 170, 254, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 196, 295, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 227, 340, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 262, 392, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 301, 452, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 347, 520, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 398, 598, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 458, 687, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 526, 789, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 604, 906, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 694, 1040, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 797, 1195, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 916, 1373, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1052, 1579, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1210, 1816, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1393, 2090, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1604, 2407, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1849, 2774, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2133, 3200, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2464, 3695, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2848, 4271, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3295, 4943, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3817, 5725, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 4427, 6640, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 5140, 7710, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 5976, 8964, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 6957, 10435, critChance = 8, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["DespairPlayer"] = {
+ name = "Despair",
+ baseTypeName = "Despair",
+ color = 3,
+ description = "Curse all targets in an area after a short delay, lowering their Chaos Resistance.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.7,
+ qualityStats = {
+ { "curse_effect_+%", 0.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Despair",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "despair",
+ statMap = {
+ ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = {
+ mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
+ },
+ },
+ baseFlags = {
+ spell = true,
+ curse = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "curse_delay_duration_ms", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_skill_effect_duration",
+ "active_skill_base_area_of_effect_radius",
+ "base_skill_buff_chaos_damage_resistance_%_to_apply",
+ "skill_curses_cannot_apply_to_targets_above_level",
+ "base_deal_no_damage",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 15, -35, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, -35, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, -36, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, -37, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, -38, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, -38, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, -39, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, -40, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, -41, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, -41, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, -42, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, -43, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, -44, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, -44, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, -45, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, -46, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, -47, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, -47, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, -48, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, -49, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, -50, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, -50, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, -51, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, -52, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, -53, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, -53, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, -54, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, -55, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, -56, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, -56, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["DetonateDeadPlayer"] = {
+ name = "Detonate Dead",
+ baseTypeName = "Detonate Dead",
+ color = 3,
+ description = "Cause a Corpse to violently explode, damaging surrounding enemies.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.2 },
+ },
+ levels = {
+ [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 9, }, },
+ [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 11, }, },
+ [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 13, }, },
+ [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 15, }, },
+ [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 18, }, },
+ [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 20, }, },
+ [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 23, }, },
+ [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 26, }, },
+ [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 30, }, },
+ [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 34, }, },
+ [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 38, }, },
+ [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 42, }, },
+ [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 48, }, },
+ [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 53, }, },
+ [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 59, }, },
+ [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 66, }, },
+ [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 73, }, },
+ [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 81, }, },
+ [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 89, }, },
+ [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 99, }, },
+ [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 109, }, },
+ [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 120, }, },
+ [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 132, }, },
+ [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 146, }, },
+ [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 160, }, },
+ [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 175, }, },
+ [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 192, }, },
+ [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 211, }, },
+ [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 231, }, },
+ [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 252, }, },
+ [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 276, }, },
+ [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 301, }, },
+ [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 359, }, },
+ [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 392, }, },
+ [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 427, }, },
+ [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 465, }, },
+ [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 506, }, },
+ [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 551, }, },
+ [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 599, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Detonate Dead",
+ baseEffectiveness = 6,
+ incrementalEffectiveness = 0.050000000745058,
+ damageIncrementalEffectiveness = 0.003000000026077,
+ statDescriptionScope = "detonate_dead",
+ baseFlags = {
+ area = true,
+ spell = true,
+ },
+ baseMods = {
+ skill("explodeCorpse", true),
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 26 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "spread_contagion_base_radius_when_using_corpse", 26 },
+ { "explosion_delay_ms", 400 },
+ },
+ stats = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "corpse_explosion_monster_life_permillage_physical",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 19, 28, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 21, 32, 53, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 24, 37, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 28, 42, 59, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 32, 48, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 36, 55, 65, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 41, 62, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 46, 69, 71, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 51, 77, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 57, 86, 77, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 64, 95, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 70, 106, 83, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 78, 116, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 85, 128, 89, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 94, 141, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 103, 154, 95, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 112, 168, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 123, 184, 101, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 134, 200, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 145, 218, 107, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 158, 237, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 172, 257, 113, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 186, 279, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 202, 303, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 218, 328, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 236, 354, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 255, 383, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 276, 414, 131, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 298, 447, 134, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 322, 482, 137, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 347, 520, 138, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 374, 561, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 403, 605, 141, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 435, 652, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 468, 702, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 504, 756, 146, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 543, 814, 147, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 585, 877, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 629, 944, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 678, 1016, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["DisciplinePlayer"] = {
+ name = "Discipline",
+ baseTypeName = "Discipline",
+ fromItem = true,
+ color = 3,
+ description = "Emit an Aura that grants you and Allies in your Presence additional Total Energy Shield.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "base_skill_buff_energy_shield_recharge_rate_+%_to_apply", 1 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
[28] = { levelRequirement = 90, },
[29] = { levelRequirement = 90, },
[30] = { levelRequirement = 90, },
@@ -5333,7 +5460,7 @@ skills["MetaElementalInvocationPlayer"] = {
constantStats = {
{ "generic_ongoing_trigger_maximum_energy", 500 },
{ "elemental_invocation_gain_X_centienergy_per_monster_power_on_shock", 100 },
- { "elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite", 200 },
+ { "elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite", 100 },
{ "elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze", 1000 },
},
stats = {
@@ -5393,6 +5520,8 @@ skills["SupportElementalInvocationPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -5439,7 +5568,7 @@ skills["SupportElementalInvocationPlayer"] = {
[1] = {
label = "SupportElementalInvocationPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -5447,8 +5576,7 @@ skills["SupportElementalInvocationPlayer"] = {
},
stats = {
"triggered_by_generic_ongoing_trigger",
- "display_generic_ongoing_triggerer_is_invocation_skill",
- "skill_cannot_generate_energy",
+ "generic_ongoing_triggerer_is_invocation_skill",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5495,64 +5623,193 @@ skills["SupportElementalInvocationPlayer"] = {
},
}
}
-skills["BlazingClusterPlayer"] = {
+skills["ElementalWeaknessPlayer"] = {
+ name = "Elemental Weakness",
+ baseTypeName = "Elemental Weakness",
+ color = 3,
+ description = "Curse all targets in an area after a short delay, lowering their Elemental Resistances.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.7,
+ qualityStats = {
+ { "curse_effect_+%", 0.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Elemental Weakness",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "elemental_weakness",
+ statMap = {
+ ["base_skill_buff_all_elements_resistance_%_to_apply"] = {
+ mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
+ },
+ },
+ baseFlags = {
+ area = true,
+ spell = true,
+ duration = true,
+ },
+ constantStats = {
+ { "curse_delay_duration_ms", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_skill_effect_duration",
+ "active_skill_base_area_of_effect_radius",
+ "base_skill_buff_all_elements_resistance_%_to_apply",
+ "skill_curses_cannot_apply_to_targets_above_level",
+ "base_deal_no_damage",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 15, -40, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, -41, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, -42, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, -43, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, -44, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, -45, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, -46, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, -47, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, -48, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, -49, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, -50, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, -51, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, -52, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, -53, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, -54, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, -55, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, -56, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, -57, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, -58, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, -59, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, -60, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, -61, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, -62, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, -63, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, -64, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, -65, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, -66, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, -67, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, -68, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, -69, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, -69, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, -70, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, -70, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, -71, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, -71, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, -72, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, -72, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, -73, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, -73, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, -74, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["EmberFusilladePlayer"] = {
name = "Ember Fusillade",
baseTypeName = "Ember Fusillade",
color = 3,
- description = "Conjure a blazing Ember that hovers above you. After a short duration, the Ember launches at an enemy, dealing Fire damage in an area on impact and prioritising the last enemy targeted. Recasting this spell resets the duration for all active Embers. Multiple Embers fired in the same Fusillade will attempt to target different enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Triggerable] = true, },
+ description = "Conjure a blazing Ember that hovers above you. After a short duration, the Ember launches at an enemy, dealing Fire damage in an area on impact and prioritising the last enemy targeted. Recasting this spell resets the duration for all active Embers. Multiple Embers fired in the same Fusillade will attempt to target different enemies. Consumes a Lightning Infusion if possible to cause the entire Fusillade to create beams that Chain to enemies.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.4,
qualityStats = {
{ "ember_fusillade_damage_+%_final_per_ember_fired", 0.1 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 4, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 3, }, },
[2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 4, }, },
[3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 5, }, },
[4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 5, }, },
[5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 6, }, },
[6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 7, }, },
[7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 8, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 9, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 10, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 10, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 11, }, },
[10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 12, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 13, }, },
- [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 15, }, },
- [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 17, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 14, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 16, }, },
+ [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 18, }, },
[14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 20, }, },
[15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 22, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 25, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 29, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 33, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 37, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 42, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 48, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 54, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 61, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 69, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 78, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 89, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 101, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 114, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 129, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 146, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 165, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 187, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 212, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 240, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 271, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 307, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 348, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 394, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 445, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 504, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 24, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 27, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 30, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 33, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 37, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 41, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 45, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 49, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 60, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 66, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 72, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 79, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 86, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 103, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 113, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 123, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 135, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 147, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 160, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 174, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 190, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 206, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, },
},
statSets = {
[1] = {
label = "Projectile",
baseEffectiveness = 2.0999999046326,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "blazing_cluster_statset_0",
baseFlags = {
spell = true,
@@ -5564,7 +5821,7 @@ skills["BlazingClusterPlayer"] = {
{ "blazing_cluster_delay_between_projectiles_ms", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "blazing_cluster_subsequent_targeting_radius", 30 },
{ "ember_fusillade_damage_+%_final_per_ember_fired", 5 },
},
@@ -5576,48 +5833,54 @@ skills["BlazingClusterPlayer"] = {
"can_perform_skill_while_moving",
"projectile_uses_contact_position",
"quality_display_ember_fusilade_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
[1] = { 7, 10, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
[2] = { 9, 13, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 12, 18, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 16, 24, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 20, 30, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 25, 37, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 30, 45, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 36, 54, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 42, 63, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 49, 74, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 57, 86, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [4] = { 16, 23, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 20, 29, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 24, 36, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 29, 44, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 35, 52, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 41, 62, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 49, 73, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 57, 85, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 66, 99, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 76, 114, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 87, 130, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 99, 148, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 112, 168, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 127, 190, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 144, 215, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 162, 243, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 183, 274, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 206, 309, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 231, 347, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 260, 390, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 292, 438, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 328, 492, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 368, 553, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 413, 620, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 464, 696, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 521, 781, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 584, 876, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 656, 983, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 736, 1104, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 826, 1240, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 928, 1392, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1043, 1565, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1173, 1760, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1320, 1979, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1485, 2228, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1673, 2509, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1886, 2828, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [14] = { 88, 132, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 101, 151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 115, 173, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 132, 198, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 150, 226, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 171, 257, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 195, 293, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 222, 333, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 252, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 287, 430, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 325, 488, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 370, 554, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 420, 629, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 477, 715, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 541, 812, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 615, 923, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 699, 1049, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 795, 1193, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 905, 1357, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1030, 1546, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1174, 1761, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1339, 2008, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1528, 2292, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1745, 2618, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1995, 2993, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2283, 3424, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2615, 3922, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
@@ -5633,7 +5896,7 @@ skills["BlazingClusterPlayer"] = {
{ "blazing_cluster_delay_between_projectiles_ms", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "blazing_cluster_subsequent_targeting_radius", 30 },
{ "ember_fusillade_damage_+%_final_per_ember_fired", 5 },
{ "active_skill_base_area_of_effect_radius", 9 },
@@ -5646,49 +5909,136 @@ skills["BlazingClusterPlayer"] = {
"can_perform_skill_while_moving",
"projectile_uses_contact_position",
"quality_display_ember_fusilade_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_lightning_infusion",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 7, 10, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
[2] = { 9, 13, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 12, 18, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 16, 24, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 20, 30, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 25, 37, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 30, 45, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 36, 54, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 42, 63, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 49, 74, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 57, 86, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [4] = { 16, 23, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 20, 29, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 24, 36, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 29, 44, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 35, 52, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 41, 62, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 49, 73, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 57, 85, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 66, 99, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 76, 114, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 87, 130, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 99, 148, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 112, 168, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 127, 190, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 144, 215, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 162, 243, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 183, 274, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 206, 309, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 231, 347, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 260, 390, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 292, 438, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 328, 492, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 368, 553, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 413, 620, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 464, 696, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 521, 781, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 584, 876, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 656, 983, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 736, 1104, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 826, 1240, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 928, 1392, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1043, 1565, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1173, 1760, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1320, 1979, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1485, 2228, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1673, 2509, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1886, 2828, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [14] = { 88, 132, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 101, 151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 115, 173, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 132, 198, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 150, 226, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 171, 257, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 195, 293, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 222, 333, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 252, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 287, 430, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 325, 488, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 370, 554, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 420, 629, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 477, 715, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 541, 812, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 615, 923, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 699, 1049, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 795, 1193, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 905, 1357, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1030, 1546, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1174, 1761, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1339, 2008, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1528, 2292, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1745, 2618, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1995, 2993, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2283, 3424, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2615, 3922, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Beam",
+ baseEffectiveness = 1.3999999761581,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "blazing_cluster_statset_2",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "blazing_cluster_delay_between_projectiles_ms", 100 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "blazing_cluster_subsequent_targeting_radius", 30 },
+ { "ember_fusillade_damage_+%_final_per_ember_fired", 5 },
+ { "number_of_chains", 4 },
+ },
+ stats = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "blazing_cluster_maximum_number_of_projectiles_allowed",
+ "base_is_projectile",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_position",
+ "quality_display_ember_fusilade_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 1, 10, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 1, 14, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1, 19, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1, 25, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 2, 31, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 2, 38, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 2, 46, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 3, 55, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 3, 66, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 4, 77, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 5, 90, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 5, 104, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 6, 121, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 7, 139, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 8, 159, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 10, 183, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 11, 209, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 13, 238, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 14, 271, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 16, 309, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 18, 351, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 21, 399, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 24, 454, 10, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 27, 515, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 31, 585, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 35, 664, 11, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 40, 755, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 45, 857, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 51, 974, 12, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 58, 1107, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 66, 1259, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 75, 1433, 13, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 86, 1632, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 98, 1859, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 112, 2120, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 127, 2419, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 145, 2763, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 166, 3159, 15, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 190, 3615, 16, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 218, 4140, 16, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -5698,52 +6048,52 @@ skills["EnfeeblePlayer"] = {
baseTypeName = "Enfeeble",
color = 3,
description = "Curse all targets in an area after a short delay, making them deal less damage.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
[2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
[9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
},
statSets = {
[1] = {
@@ -5768,57 +6118,60 @@ skills["EnfeeblePlayer"] = {
{ "curse_delay_duration_ms", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
"active_skill_base_area_of_effect_radius",
"base_skill_buff_damage_+%_final_to_apply",
- "base_skill_buff_damage_+%_final_vs_unique_to_apply",
+ "skill_curses_cannot_apply_to_targets_above_level",
"base_deal_no_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
- [1] = { 6000, 15, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6200, 16, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6200, 17, -20, -10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6200, 18, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6400, 18, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6400, 19, -21, -11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6400, 20, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6600, 21, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6600, 22, -22, -12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6600, 23, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6800, 23, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6800, 24, -23, -13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 25, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7000, 26, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7000, 27, -24, -14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 7000, 28, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7200, 28, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 7200, 29, -25, -15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 7200, 30, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 7400, 31, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7400, 32, -26, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7400, 33, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7600, 34, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7600, 34, -27, -17, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7600, 35, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7800, 36, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7800, 37, -28, -18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7800, 38, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8000, 39, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8000, 39, -29, -19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8000, 40, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8200, 40, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 8200, 41, -30, -20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 8200, 41, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 8400, 42, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 8400, 42, -31, -21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 8400, 42, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 8600, 43, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8600, 43, -32, -22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 8600, 44, -33, -23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 6000, 15, -20, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, -20, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, -21, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, -21, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, -22, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, -22, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, -23, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, -23, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, -24, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, -24, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, -25, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, -25, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, -26, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, -26, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, -27, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, -27, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, -28, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, -28, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, -29, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, -29, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, -30, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, -30, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, -31, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, -31, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, -32, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, -32, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, -33, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, -33, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, -34, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, -35, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, -36, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, -37, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -5828,202 +6181,416 @@ skills["EssenceDrainPlayer"] = {
baseTypeName = "Essence Drain",
color = 3,
description = "Fire a Projectile that applies a powerful Chaos damage over time debuff to enemies it hits.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.8,
qualityStats = {
{ "base_skill_effect_duration", 50 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 6, }, },
- [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 7, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 9, }, },
+ [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 8, }, },
[5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 10, }, },
[6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 11, }, },
[7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 21, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 15, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 22, }, },
[12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 24, }, },
[13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 27, }, },
- [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 31, }, },
- [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 35, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 39, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 44, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 50, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 57, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 65, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 73, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 83, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 106, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 120, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 136, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 154, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 175, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 198, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 224, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 254, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 287, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 325, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 368, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 416, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 471, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 533, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 604, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 683, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 773, }, },
+ [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 30, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 34, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 38, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 42, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 46, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 51, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 57, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 63, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 69, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 83, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 92, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 101, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 110, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 121, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 133, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 145, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 158, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 173, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 189, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 206, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 245, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 267, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 291, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 316, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 344, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Projectile",
+ baseEffectiveness = 1.7000000476837,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "essence_drain",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "pvp_skill_dot_attack_time_override_ms", 10000 },
+ },
+ stats = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "maintain_projectile_direction_when_using_contact_position",
+ "can_perform_skill_while_moving",
+ "disable_visual_hit_effect",
+ "should_use_additive_aiming_animation",
+ "quality_display_base_skill_effect_duration_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
+ levels = {
+ [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 6, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 20, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 26, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 17, 32, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 38, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 25, 46, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, 55, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 34, 64, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 40, 75, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 54, 100, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 62, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 71, 133, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 82, 152, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 93, 173, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 107, 198, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 121, 226, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 138, 257, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 157, 292, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 179, 332, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 203, 377, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 230, 428, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 262, 486, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 297, 552, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 338, 627, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 383, 712, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 436, 809, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 495, 920, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 563, 1046, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 641, 1190, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 730, 1355, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 832, 1545, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 948, 1761, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1082, 2010, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1236, 2296, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1413, 2624, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1617, 3003, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1852, 3440, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Damage over Time",
+ baseEffectiveness = 8.5,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
+ statDescriptionScope = "essence_drain",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ duration = true,
+ },
+ baseMods = {
+ skill("debuff", true),
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "pvp_skill_dot_attack_time_override_ms", 10000 },
+ { "base_skill_effect_duration", 4000 },
+ },
+ stats = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "base_chaos_damage_to_deal_per_minute",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "maintain_projectile_direction_when_using_contact_position",
+ "can_perform_skill_while_moving",
+ "disable_visual_hit_effect",
+ "should_use_additive_aiming_animation",
+ "quality_display_base_skill_effect_duration_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "spell_damage_modifiers_apply_to_skill_dot",
+ "display_statset_hide_usage_stats",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 550, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 800, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1158, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1568, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 2036, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 2571, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 3182, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 3880, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 4678, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 5591, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 6635, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 7831, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 9202, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 10774, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 12579, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 14653, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 17038, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 19786, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 22953, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 26609, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 30833, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 35720, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 41382, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 47949, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 55576, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 64447, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 74777, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 86824, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 100894, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 117349, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 136623, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 159231, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 185790, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 217040, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 253865, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 297328, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 348709, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 409547, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 481700, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 567414, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ExsanguinatePlayer"] = {
+ name = "Exsanguinate",
+ baseTypeName = "Exsanguinate",
+ fromItem = true,
+ color = 3,
+ description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies Hit by the tendrils take Physical damage and are inflicted with Bleeding.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "blood_tendrils_beam_count", 0.05 },
+ },
+ levels = {
+ [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
},
statSets = {
[1] = {
- label = "Projectile",
- baseEffectiveness = 1.7000000476837,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "essence_drain",
+ label = "Tendrils",
+ baseEffectiveness = 0.89999997615814,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "exsanguinate",
baseFlags = {
spell = true,
- projectile = true,
+ duration = true,
+ chaining = true,
},
constantStats = {
+ { "number_of_chains", 2 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "pvp_skill_dot_attack_time_override_ms", 10000 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "blood_tendrils_beam_count", 3 },
},
stats = {
- "spell_minimum_base_chaos_damage",
- "spell_maximum_base_chaos_damage",
- "base_is_projectile",
- "projectile_uses_contact_position",
- "check_for_targets_between_initiator_and_projectile_source",
- "maintain_projectile_direction_when_using_contact_position",
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ "quality_display_exsanguinate_beam_targets_is_gem",
"can_perform_skill_while_moving",
- "disable_visual_hit_effect",
- "should_use_additive_aiming_animation",
- "quality_display_base_skill_effect_duration_is_gem",
+ "global_bleed_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
},
levels = {
- [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 6, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 14, 27, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 25, 47, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 30, 55, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 35, 65, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 40, 75, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 54, 100, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 61, 114, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 70, 130, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 79, 147, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 90, 167, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 102, 189, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 115, 213, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 129, 240, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 146, 271, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 164, 305, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 184, 342, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 207, 385, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 232, 432, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 261, 485, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 293, 544, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 329, 610, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 369, 685, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 414, 768, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 464, 862, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 521, 968, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 585, 1087, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 658, 1221, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 739, 1372, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 831, 1543, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 935, 1736, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1052, 1954, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1185, 2201, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1336, 2480, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 38, 56, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 64, 97, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 73, 110, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 84, 125, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 123, 184, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 232, 348, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 264, 395, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 300, 450, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 341, 511, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 388, 582, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 503, 755, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 574, 861, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 655, 982, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 748, 1122, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 855, 1283, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 978, 1468, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1121, 1681, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
label = "Damage over Time",
- baseEffectiveness = 8.5,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
- statDescriptionScope = "essence_drain",
+ baseEffectiveness = 0.89999997615814,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
+ statDescriptionScope = "exsanguinate",
baseFlags = {
spell = true,
- projectile = true,
duration = true,
- },
- baseMods = {
- skill("debuff", true),
+ chaining = true,
},
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "pvp_skill_dot_attack_time_override_ms", 10000 },
- { "base_skill_effect_duration", 4000 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 1000 },
+ { "pvp_skill_dot_attack_time_override_ms", 2000 },
},
stats = {
- "spell_minimum_base_chaos_damage",
- "spell_maximum_base_chaos_damage",
- "base_chaos_damage_to_deal_per_minute",
- "base_is_projectile",
- "projectile_uses_contact_position",
- "check_for_targets_between_initiator_and_projectile_source",
- "maintain_projectile_direction_when_using_contact_position",
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
"can_perform_skill_while_moving",
- "disable_visual_hit_effect",
- "should_use_additive_aiming_animation",
- "quality_display_base_skill_effect_duration_is_gem",
+ "global_bleed_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"spell_damage_modifiers_apply_to_skill_dot",
"display_statset_hide_usage_stats",
+ "quality_hide_display_character_panel",
+ },
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
},
levels = {
- [1] = { 0, 0, 550, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 811, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 1183, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 1604, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 2081, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 2621, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 3232, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 3923, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 4706, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 5592, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 6596, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 7733, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 9022, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 10484, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 12144, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 14030, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 16174, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 18614, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 21393, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 24561, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 28176, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 32306, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 37029, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 42435, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 48630, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 55738, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 63901, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 73288, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 84094, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 96550, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 110924, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 127533, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 146749, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 169008, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 194826, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 224813, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 259687, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 300300, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 347661, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 402967, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6032,72 +6599,72 @@ skills["EyeOfWinterPlayer"] = {
name = "Eye of Winter",
baseTypeName = "Eye of Winter",
color = 3,
- description = "Fire a single Eye Projectile which does not Hit enemies. The Eye constantly releases damaging shard Projectiles in a spiral as it flies, plus an extra burst of shards at the end of its flight. If the Eye passes over an Elemental ground surface or Orb, it will take on that surface's effect causing shards to deal more damage of the corresponding Type.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Damage] = true, [SkillType.SingleMainProjectile] = true, [SkillType.Cold] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 1.1,
+ description = "Fire a single Eye Projectile which does not Hit enemies. The Eye constantly releases damaging shard Projectiles in a spiral as it flies. If the Eye passes over an Elemental ground surface or Orb, it will take on that surface's effect causing shards to deal more damage of the corresponding Type.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Damage] = true, [SkillType.SingleMainProjectile] = true, [SkillType.Cold] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, },
+ castTime = 1.4,
qualityStats = {
{ "base_projectile_speed_+%", 1.5 },
},
levels = {
- [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 20, }, },
- [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 22, }, },
- [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 29, }, },
- [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 32, }, },
- [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 37, }, },
- [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 42, }, },
- [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 47, }, },
- [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 61, }, },
- [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 69, }, },
- [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 78, }, },
- [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 88, }, },
- [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 100, }, },
- [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 113, }, },
- [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 128, }, },
- [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 145, }, },
- [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 164, }, },
- [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 186, }, },
- [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 210, }, },
- [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 238, }, },
- [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 270, }, },
- [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 305, }, },
- [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 345, }, },
- [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 391, }, },
- [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 442, }, },
- [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 501, }, },
- [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 567, }, },
- [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 642, }, },
- [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 726, }, },
- [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 822, }, },
- [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 930, }, },
- [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1053, }, },
- [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1191, }, },
- [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1348, }, },
- [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1526, }, },
+ [1] = { critChance = 12, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 19, }, },
+ [2] = { critChance = 12, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 22, }, },
+ [3] = { critChance = 12, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 26, }, },
+ [4] = { critChance = 12, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { Mana = 30, }, },
+ [5] = { critChance = 12, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 35, }, },
+ [6] = { critChance = 12, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 40, }, },
+ [7] = { critChance = 12, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 46, }, },
+ [8] = { critChance = 12, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 52, }, },
+ [9] = { critChance = 12, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 59, }, },
+ [10] = { critChance = 12, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 66, }, },
+ [11] = { critChance = 12, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 75, }, },
+ [12] = { critChance = 12, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 84, }, },
+ [13] = { critChance = 12, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 94, }, },
+ [14] = { critChance = 12, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 105, }, },
+ [15] = { critChance = 12, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 117, }, },
+ [16] = { critChance = 12, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 130, }, },
+ [17] = { critChance = 12, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 144, }, },
+ [18] = { critChance = 12, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 159, }, },
+ [19] = { critChance = 12, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 176, }, },
+ [20] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 195, }, },
+ [21] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 215, }, },
+ [22] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 236, }, },
+ [23] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 260, }, },
+ [24] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 286, }, },
+ [25] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 314, }, },
+ [26] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 345, }, },
+ [27] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 378, }, },
+ [28] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 414, }, },
+ [29] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 453, }, },
+ [30] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 496, }, },
+ [31] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 542, }, },
+ [32] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 592, }, },
+ [33] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 646, }, },
+ [34] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 705, }, },
+ [35] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 769, }, },
+ [36] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 838, }, },
+ [37] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 913, }, },
+ [38] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 994, }, },
+ [39] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1081, }, },
+ [40] = { critChance = 12, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1176, }, },
},
statSets = {
[1] = {
label = "Eye of Winter",
- baseEffectiveness = 0.18999999761581,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 0.46000000834465,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
statDescriptionScope = "eye_of_winter_new",
baseFlags = {
spell = true,
projectile = true,
},
constantStats = {
- { "eye_of_winter_base_explosion_shards", 8 },
{ "projectile_firing_forward_distance_override", 100 },
- { "eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type", 75 },
+ { "eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "eye_of_winter_first_hit_damage_+%_final", 900 },
},
stats = {
"spell_minimum_base_cold_damage",
@@ -6105,48 +6672,53 @@ skills["EyeOfWinterPlayer"] = {
"base_is_projectile",
"single_primary_projectile",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 1, 1, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1, 1, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 13, 19, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 53, 79, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 94, 142, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 119, 179, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 134, 202, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 151, 227, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 64, 97, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 82, 123, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 92, 139, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 118, 176, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 133, 199, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 244, 366, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 354, 532, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 402, 603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 456, 684, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6155,56 +6727,56 @@ skills["FallingThunderPlayer"] = {
name = "Falling Thunder",
baseTypeName = "Falling Thunder",
color = 3,
- description = "Infuse your Quarterstaff with electrical energy, then Slam the ground to deal damage in a large cone in front of you. Consumes your Power Charges to fire Lightning Projectiles forwards from the impact.",
+ description = "Suffuse your Quarterstaff with electrical energy, then Slam the ground to deal damage in a large cone in front of you. Consumes your Power Charges to fire Lightning Projectiles forwards from the impact.",
skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Lightning] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "charge_skip_consume_chance_%", 0.5 },
+ { "lightning_strike_damage_+%_final_per_power_charge", 1 },
},
levels = {
[1] = { attackSpeedMultiplier = -40, baseMultiplier = 1.4, levelRequirement = 0, cost = { Mana = 11, }, },
- [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 12, }, },
+ [2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.54, levelRequirement = 3, cost = { Mana = 13, }, },
[3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.69, levelRequirement = 6, cost = { Mana = 14, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.85, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 14, cost = { Mana = 17, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 2.14, levelRequirement = 18, cost = { Mana = 19, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 2.29, levelRequirement = 22, cost = { Mana = 21, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 2.43, levelRequirement = 26, cost = { Mana = 23, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.55, levelRequirement = 31, cost = { Mana = 26, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.68, levelRequirement = 36, cost = { Mana = 29, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.81, levelRequirement = 41, cost = { Mana = 32, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 46, cost = { Mana = 36, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 3.1, levelRequirement = 52, cost = { Mana = 39, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 3.26, levelRequirement = 58, cost = { Mana = 44, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 3.42, levelRequirement = 64, cost = { Mana = 49, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 3.59, levelRequirement = 66, cost = { Mana = 54, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.85, levelRequirement = 10, cost = { Mana = 17, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 14, cost = { Mana = 19, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 2.14, levelRequirement = 18, cost = { Mana = 21, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 2.29, levelRequirement = 22, cost = { Mana = 24, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 2.43, levelRequirement = 26, cost = { Mana = 26, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 2.55, levelRequirement = 31, cost = { Mana = 29, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 2.68, levelRequirement = 36, cost = { Mana = 32, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.81, levelRequirement = 41, cost = { Mana = 35, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 46, cost = { Mana = 39, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 3.1, levelRequirement = 52, cost = { Mana = 42, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 3.26, levelRequirement = 58, cost = { Mana = 46, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 3.42, levelRequirement = 64, cost = { Mana = 51, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 3.59, levelRequirement = 66, cost = { Mana = 55, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 3.77, levelRequirement = 72, cost = { Mana = 60, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.96, levelRequirement = 78, cost = { Mana = 66, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 4.16, levelRequirement = 84, cost = { Mana = 73, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 4.37, levelRequirement = 90, cost = { Mana = 81, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 4.58, levelRequirement = 90, cost = { Mana = 90, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 100, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 5.05, levelRequirement = 90, cost = { Mana = 111, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 5.31, levelRequirement = 90, cost = { Mana = 123, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 5.57, levelRequirement = 90, cost = { Mana = 136, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 151, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 6.14, levelRequirement = 90, cost = { Mana = 168, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 186, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 6.77, levelRequirement = 90, cost = { Mana = 206, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 228, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 7.47, levelRequirement = 90, cost = { Mana = 253, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 280, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 8.23, levelRequirement = 90, cost = { Mana = 311, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 8.65, levelRequirement = 90, cost = { Mana = 344, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 9.08, levelRequirement = 90, cost = { Mana = 381, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 9.53, levelRequirement = 90, cost = { Mana = 423, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 468, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 10.51, levelRequirement = 90, cost = { Mana = 519, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 11.03, levelRequirement = 90, cost = { Mana = 575, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 11.59, levelRequirement = 90, cost = { Mana = 638, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 3.96, levelRequirement = 78, cost = { Mana = 65, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 4.16, levelRequirement = 84, cost = { Mana = 70, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 4.37, levelRequirement = 90, cost = { Mana = 76, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 4.58, levelRequirement = 90, cost = { Mana = 82, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 88, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 5.05, levelRequirement = 90, cost = { Mana = 95, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 5.31, levelRequirement = 90, cost = { Mana = 102, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 5.57, levelRequirement = 90, cost = { Mana = 110, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 118, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 6.14, levelRequirement = 90, cost = { Mana = 127, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 136, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 6.77, levelRequirement = 90, cost = { Mana = 146, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 156, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 7.47, levelRequirement = 90, cost = { Mana = 167, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 178, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 8.23, levelRequirement = 90, cost = { Mana = 190, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 8.65, levelRequirement = 90, cost = { Mana = 203, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 9.08, levelRequirement = 90, cost = { Mana = 217, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 9.53, levelRequirement = 90, cost = { Mana = 231, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 10.01, levelRequirement = 90, cost = { Mana = 246, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 10.51, levelRequirement = 90, cost = { Mana = 262, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 11.03, levelRequirement = 90, cost = { Mana = 279, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 11.59, levelRequirement = 90, cost = { Mana = 297, }, },
},
statSets = {
[1] = {
@@ -6299,70 +6871,191 @@ skills["FallingThunderPlayer"] = {
"zero_projectiles_if_no_power_charges",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "is_area_damage",
+ },
levels = {
[1] = { -1, statInterpolation = { 1, }, actorLevel = 1, },
},
},
}
}
+skills["FeastOfFleshPlayer"] = {
+ name = "Feast of Flesh",
+ baseTypeName = "Feast of Flesh",
+ color = 3,
+ description = "Consume Corpses near you to recover Life and Mana over a short time per Corpse Consumed.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Unleashable] = true, [SkillType.Buff] = true, },
+ castTime = 1.3,
+ qualityStats = {
+ { "feast_of_flesh_number_of_corpses", 0.15 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Feast of Flesh",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "feast_of_flesh",
+ baseFlags = {
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 40 },
+ { "feast_of_flesh_regeneration_duration", 3000 },
+ { "feast_of_flesh_number_of_corpses", 5 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_life_recovery_per_minute",
+ "base_mana_recovery_per_minute",
+ "base_deal_no_spell_damage",
+ "can_perform_skill_while_moving",
+ },
+ levels = {
+ [1] = { 21, 21, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 24, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 29, 29, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 35, 35, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 41, 41, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 51, 51, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 60, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 69, 69, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 79, 79, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 90, 90, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 101, 101, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 113, 113, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 127, 127, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 140, 140, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 154, 154, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 168, 168, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 173, 173, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 188, 188, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 203, 203, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 211, 211, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 227, 227, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 244, 244, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 261, 261, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 278, 278, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 296, 296, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 313, 313, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 330, 330, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 347, 347, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 365, 365, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 382, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 399, 399, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 416, 416, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 434, 434, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 451, 451, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 468, 468, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 485, 485, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 503, 503, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 520, 520, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 537, 537, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 554, 554, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["FireballPlayer"] = {
name = "Fireball",
baseTypeName = "Fireball",
color = 3,
- description = "Launch a large ball of Fire which explodes on impact, creating a nova of smaller firebolts.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Launch a large ball of Fire which explodes on impact. The explosion Consumes a Fire Infusion if possible to launch a ring of smaller firebolts.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.2,
qualityStats = {
{ "spell_skills_fire_2_additional_projectiles_final_chance_%", 0.5 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 11, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 12, }, },
[3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 14, }, },
[4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 16, }, },
[5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 18, }, },
[6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 21, }, },
- [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 23, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 26, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 30, }, },
- [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 34, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 39, }, },
- [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 44, }, },
+ [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 24, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 28, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 31, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 35, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 40, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 45, }, },
[13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 50, }, },
[14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 56, }, },
- [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 64, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 72, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 82, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 92, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 105, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 118, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 134, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 152, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 172, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 195, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 220, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 249, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 282, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 320, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 362, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 410, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 464, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 525, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 594, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 672, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 761, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 861, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 974, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1103, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1248, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1412, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 62, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 69, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 77, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 85, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 94, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 104, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 115, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 126, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 139, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 153, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 168, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 184, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 202, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 221, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 242, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 265, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 290, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 317, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 346, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 377, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 411, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 448, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 488, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 532, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 578, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 629, }, },
},
statSets = {
[1] = {
label = "Projectile",
- baseEffectiveness = 2.4500000476837,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 2.5999999046326,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
statDescriptionScope = "greater_fireball",
baseFlags = {
spell = true,
@@ -6371,7 +7064,7 @@ skills["FireballPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "projectile_maximum_range_override", 120 },
},
stats = {
@@ -6382,48 +7075,54 @@ skills["FireballPlayer"] = {
"maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "active_skill_consumes_a_fire_infusion",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
- [1] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 240, 360, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 270, 405, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 304, 455, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 341, 512, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 383, 574, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 541, 812, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 607, 911, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 681, 1022, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 765, 1147, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 859, 1288, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 964, 1446, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1083, 1625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1217, 1826, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1369, 2053, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1540, 2309, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1733, 2599, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1952, 2928, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2200, 3300, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 36, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 68, 102, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 154, 231, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 174, 262, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 411, 616, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 463, 695, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 522, 784, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 665, 997, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 750, 1125, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 847, 1270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 956, 1434, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1080, 1619, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1220, 1830, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1380, 2070, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1561, 2342, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1768, 2651, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2271, 3407, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2577, 3866, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
@@ -6438,7 +7137,7 @@ skills["FireballPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "projectile_maximum_range_override", 120 },
{ "active_skill_base_area_of_effect_radius", 17 },
},
@@ -6450,56 +7149,62 @@ skills["FireballPlayer"] = {
"maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "active_skill_consumes_a_fire_infusion",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 24, 35, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 148, 222, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 240, 360, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 270, 405, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 304, 455, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 341, 512, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 383, 574, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 541, 812, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 607, 911, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 681, 1022, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 765, 1147, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 859, 1288, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 964, 1446, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1083, 1625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1217, 1826, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1369, 2053, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1540, 2309, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1733, 2599, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1952, 2928, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2200, 3300, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 36, 53, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 68, 102, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 154, 231, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 174, 262, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 198, 297, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 411, 616, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 463, 695, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 522, 784, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 665, 997, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 750, 1125, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 847, 1270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 956, 1434, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1080, 1619, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1220, 1830, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1380, 2070, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1561, 2342, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1768, 2651, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2271, 3407, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2577, 3866, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[3] = {
label = "Firebolts",
- baseEffectiveness = 1.5499999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 2.5999999046326,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
statDescriptionScope = "greater_fireball",
baseFlags = {
spell = true,
@@ -6508,10 +7213,11 @@ skills["FireballPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "projectile_maximum_range_override", 120 },
- { "base_number_of_projectiles", 8 },
+ { "base_number_of_projectiles", 12 },
{ "projectile_maximum_range_override", -60 },
+ { "active_skill_ignite_chance_+%_final", 100 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -6523,49 +7229,55 @@ skills["FireballPlayer"] = {
"maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
"should_use_additive_aiming_animation",
+ "active_skill_consumes_a_fire_infusion",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"modifiers_to_projectile_count_do_not_apply",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 7, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 26, 40, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 31, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 36, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 49, 73, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 56, 84, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 64, 96, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 73, 109, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 94, 141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 106, 159, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 120, 179, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 135, 202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 152, 228, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 171, 256, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 216, 324, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 242, 363, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 272, 408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 305, 458, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 342, 514, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 384, 576, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 431, 647, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 484, 726, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 543, 815, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 610, 915, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 685, 1028, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 770, 1155, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 866, 1299, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 974, 1461, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 1096, 1645, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 1235, 1852, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 1392, 2088, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 19, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 30, 44, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 36, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 42, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 50, 75, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 59, 88, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 68, 102, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 79, 118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 91, 136, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 104, 156, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 119, 178, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 135, 203, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 154, 231, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 174, 262, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 198, 297, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 224, 336, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 253, 379, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 286, 429, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 323, 484, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 364, 546, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 411, 616, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 463, 695, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 522, 784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 589, 884, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 665, 997, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 750, 1125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 847, 1270, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 956, 1434, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 1080, 1619, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 1220, 1830, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 1380, 2070, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 1561, 2342, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 1768, 2651, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 2003, 3004, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 2271, 3407, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 2577, 3866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6576,7 +7288,7 @@ skills["FireboltPlayer"] = {
fromItem = true,
color = 3,
description = "Launch a fiery Projectile towards a target. The Projectile explodes on impact, damaging foes in a small area.",
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.9,
qualityStats = {
{ "active_skill_ignite_chance_+%_final", 1 },
@@ -6626,9 +7338,9 @@ skills["FireboltPlayer"] = {
statSets = {
[1] = {
label = "Projectile",
- baseEffectiveness = 2.7999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 3.1199998855591,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "fireball",
baseFlags = {
spell = true,
@@ -6637,7 +7349,7 @@ skills["FireboltPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "projectile_maximum_range_override", 100 },
{ "projectile_maximum_downwards_angle_degrees", 25 },
},
@@ -6650,48 +7362,53 @@ skills["FireboltPlayer"] = {
"can_perform_skill_while_moving",
"projectile_uses_contact_direction",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
[1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 244, 365, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 274, 412, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 438, 656, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 551, 827, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 619, 928, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 694, 1041, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 874, 1311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 981, 1472, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1102, 1653, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1238, 1857, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1391, 2087, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1564, 2346, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1759, 2639, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1981, 2971, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2231, 3346, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2514, 3771, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 20, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 48, 73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 113, 170, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 130, 196, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 150, 224, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 224, 335, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 375, 562, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 914, 1371, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1039, 1558, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1344, 2017, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1531, 2296, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1744, 2617, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1989, 2984, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2270, 3405, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2593, 3889, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2964, 4446, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3392, 5088, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3885, 5827, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
@@ -6706,7 +7423,7 @@ skills["FireboltPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "projectile_maximum_range_override", 100 },
{ "projectile_maximum_downwards_angle_degrees", 25 },
{ "active_skill_base_area_of_effect_radius", 7 },
@@ -6720,50 +7437,55 @@ skills["FireboltPlayer"] = {
"can_perform_skill_while_moving",
"projectile_uses_contact_direction",
"should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 27, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 88, 132, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 131, 197, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 191, 287, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 216, 324, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 244, 365, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 274, 412, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 438, 656, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 551, 827, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 619, 928, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 694, 1041, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 874, 1311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 981, 1472, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1102, 1653, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1238, 1857, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1391, 2087, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1564, 2346, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1759, 2639, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1981, 2971, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2231, 3346, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2514, 3771, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 20, 29, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 48, 73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 113, 170, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 130, 196, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 150, 224, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 171, 257, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 224, 335, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 375, 562, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 426, 639, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 914, 1371, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1039, 1558, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1344, 2017, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1531, 2296, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1744, 2617, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1989, 2984, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2270, 3405, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2593, 3889, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2964, 4446, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3392, 5088, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3885, 5827, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6772,77 +7494,79 @@ skills["FirestormPlayer"] = {
name = "Firestorm",
baseTypeName = "Firestorm",
color = 3,
- description = "Rain flaming bolts over the targeted area. Ignites on enemies and Corpses in front of you are Consumed to fuel the Firestorm by creating improved bolts.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesIgnite] = true, },
+ description = "Rain flaming bolts over the targeted area. Can Consume all three types of Elemental Infusion, becoming much larger when Fire-Infused, causing lightning bolts when Lightning-Infused, and raining ice bolts when Cold-Infused.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.4,
qualityStats = {
{ "active_skill_base_area_of_effect_radius", 0.1 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 16, }, },
- [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 18, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 17, }, },
[3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 20, }, },
[4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 23, }, },
[5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 26, }, },
- [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 29, }, },
- [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 33, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 43, }, },
- [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 48, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 55, }, },
- [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 62, }, },
- [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 70, }, },
- [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 80, }, },
- [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 90, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 102, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 116, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 131, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 148, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 168, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 190, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 215, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 244, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 276, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 313, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 354, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 400, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 453, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 513, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 581, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 657, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 744, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 842, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 953, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1078, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1220, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1381, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1563, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1769, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 2002, }, },
+ [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 30, }, },
+ [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 35, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 39, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 44, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 50, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 57, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 63, }, },
+ [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 71, }, },
+ [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 79, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 88, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 98, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 109, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 121, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 133, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 147, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 163, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 179, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 197, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 217, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 261, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 286, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 314, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 344, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 376, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 411, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 449, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 490, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 534, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 583, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 635, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 692, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 753, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 819, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 891, }, },
},
statSets = {
[1] = {
label = "Firestorm",
- baseEffectiveness = 1.1000000238419,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "fire_storm",
+ baseEffectiveness = 0.56000000238419,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.008899999782443,
+ statDescriptionScope = "fire_storm_statset_0",
baseFlags = {
spell = true,
area = true,
duration = true,
},
constantStats = {
- { "fire_storm_fireball_delay_ms", 100 },
+ { "fire_storm_fireball_delay_ms", 200 },
{ "firestorm_max_number_of_storms", 1 },
{ "base_skill_effect_duration", 6000 },
{ "active_skill_base_area_of_effect_radius", 10 },
- { "active_skill_base_secondary_area_of_effect_radius", 56 },
+ { "active_skill_base_secondary_area_of_effect_radius", 28 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "rain_hit_delay_ms", 150 },
{ "firestorm_improved_bolts_per_ignite_consumed", 5 },
+ { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 },
+ { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -6852,119 +7576,233 @@ skills["FirestormPlayer"] = {
"can_perform_skill_while_moving",
"never_ignite",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "active_skill_consumes_a_cold_infusion",
+ "active_skill_consumes_a_fire_infusion",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
- [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 8, 13, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 52, 77, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 66, 100, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 85, 127, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 121, 182, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 136, 204, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 153, 230, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 172, 258, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 193, 289, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 217, 325, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 243, 364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 273, 409, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 306, 459, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 343, 515, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 385, 578, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 433, 649, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 486, 729, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 546, 820, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 614, 922, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 691, 1037, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 778, 1167, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 876, 1314, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 988, 1481, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 16, 23, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 56, 83, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 64, 95, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 83, 125, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 95, 142, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 162, 242, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 185, 277, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 211, 317, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 277, 416, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 318, 477, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 365, 547, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 419, 629, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 482, 723, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 555, 832, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 639, 959, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 737, 1106, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 851, 1277, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
- label = "Improved Bolt",
- baseEffectiveness = 3.7999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "fire_storm",
+ label = "Ice Bolts",
+ baseEffectiveness = 0.5799999833107,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.008899999782443,
+ statDescriptionScope = "fire_storm_statset_1",
baseFlags = {
spell = true,
+ area = true,
+ duration = true,
},
constantStats = {
+ { "fire_storm_fireball_delay_ms", 200 },
+ { "firestorm_max_number_of_storms", 1 },
+ { "base_skill_effect_duration", 6000 },
+ { "active_skill_base_secondary_area_of_effect_radius", 28 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "rain_hit_delay_ms", 150 },
- { "active_skill_base_area_of_effect_radius", 18 },
+ { "firestorm_improved_bolts_per_ignite_consumed", 5 },
+ { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 },
+ { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 },
+ { "active_skill_base_area_of_effect_radius", 15 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "never_ignite",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "active_skill_consumes_a_cold_infusion",
+ "active_skill_consumes_a_fire_infusion",
+ "active_skill_consumes_a_lightning_infusion",
+ "display_statset_hide_usage_stats",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 2, 3, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 2, 4, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 3, 5, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 4, 6, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 5, 8, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 7, 10, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 8, 12, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 10, 15, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 12, 18, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 14, 21, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 16, 24, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 19, 28, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 22, 33, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 25, 38, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 29, 44, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 33, 50, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 38, 58, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 44, 66, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 50, 76, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 58, 86, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 66, 99, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 75, 113, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 86, 129, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 98, 147, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 112, 168, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 128, 192, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 146, 220, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 167, 251, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 191, 287, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 219, 328, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 251, 376, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 287, 431, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 329, 494, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 378, 567, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 434, 651, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 499, 749, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 574, 862, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 662, 993, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 763, 1145, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 882, 1322, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Lightning Bolts",
+ baseEffectiveness = 0.66000002622604,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.008899999782443,
+ statDescriptionScope = "fire_storm_statset_2",
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "fire_storm_fireball_delay_ms", 200 },
+ { "firestorm_max_number_of_storms", 1 },
+ { "base_skill_effect_duration", 6000 },
+ { "active_skill_base_secondary_area_of_effect_radius", 28 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "rain_hit_delay_ms", 150 },
+ { "firestorm_improved_bolts_per_ignite_consumed", 5 },
+ { "firestorm_secondary_radius_+_if_consumed_fire_infusion", 18 },
+ { "firestorm_bolt_frequency_+%_if_consumed_fire_infusion", 200 },
+ { "active_skill_base_area_of_effect_radius", 7 },
+ },
+ stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
"base_skill_show_average_damage_instead_of_dps",
"is_area_damage",
"can_perform_skill_while_moving",
"never_ignite",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "active_skill_consumes_a_cold_infusion",
+ "active_skill_consumes_a_fire_infusion",
+ "active_skill_consumes_a_lightning_infusion",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
- [1] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 33, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 43, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 55, 82, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 67, 101, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 81, 122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 97, 146, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 114, 172, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 134, 201, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 155, 233, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 179, 268, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 205, 308, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 235, 352, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 268, 401, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 304, 456, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 345, 517, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 390, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 440, 660, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 496, 744, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 559, 838, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 628, 942, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 706, 1059, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 793, 1190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 891, 1336, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 1000, 1500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 1122, 1683, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 1259, 1889, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 1413, 2119, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 1585, 2378, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 1779, 2669, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 1998, 2996, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 2243, 3365, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 2520, 3780, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 2832, 4248, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 3184, 4776, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 3582, 5373, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 4032, 6048, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 4541, 6811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 5118, 7677, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 1, 5, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 1, 7, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1, 9, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1, 12, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 1, 15, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 1, 18, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 1, 22, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 1, 27, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 2, 32, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 2, 37, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 2, 44, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 3, 51, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 3, 59, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 4, 68, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 4, 79, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 5, 90, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 5, 104, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 6, 119, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 7, 136, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 8, 156, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 9, 178, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 11, 203, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 12, 232, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 14, 265, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 16, 303, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 18, 346, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 21, 396, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 24, 452, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 27, 517, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 31, 592, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 36, 677, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 41, 776, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 47, 890, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 54, 1021, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 62, 1173, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 71, 1349, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 82, 1553, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 94, 1789, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 109, 2063, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 125, 2382, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6973,60 +7811,60 @@ skills["FlameWallPlayer"] = {
name = "Flame Wall",
baseTypeName = "Flame Wall",
color = 3,
- description = "Create a wall of Fire in front of the character, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage and inflict the Ignite on hit.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Create a wall of Fire in front of the character, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage. Consumes a Lightning Infusion if possible to also add Lightning damage to the Projectiles.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, },
castTime = 1,
qualityStats = {
- { "active_skill_ignite_effect_+%_final", 1 },
+ { "active_skill_ignite_chance_+%_final", 1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 19, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 22, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 28, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 32, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 36, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 41, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 47, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 53, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 60, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 68, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 77, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 87, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 99, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 112, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 127, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 163, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 184, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 209, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 236, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 267, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 343, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 388, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 439, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 497, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 562, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 636, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 720, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 815, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 922, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1044, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1182, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1337, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1513, }, },
+ [1] = { critChance = 5, levelRequirement = 0, cost = { Mana = 10, }, },
+ [2] = { critChance = 5, levelRequirement = 3, cost = { Mana = 12, }, },
+ [3] = { critChance = 5, levelRequirement = 6, cost = { Mana = 15, }, },
+ [4] = { critChance = 5, levelRequirement = 10, cost = { Mana = 17, }, },
+ [5] = { critChance = 5, levelRequirement = 14, cost = { Mana = 20, }, },
+ [6] = { critChance = 5, levelRequirement = 18, cost = { Mana = 23, }, },
+ [7] = { critChance = 5, levelRequirement = 22, cost = { Mana = 26, }, },
+ [8] = { critChance = 5, levelRequirement = 26, cost = { Mana = 30, }, },
+ [9] = { critChance = 5, levelRequirement = 31, cost = { Mana = 34, }, },
+ [10] = { critChance = 5, levelRequirement = 36, cost = { Mana = 38, }, },
+ [11] = { critChance = 5, levelRequirement = 41, cost = { Mana = 43, }, },
+ [12] = { critChance = 5, levelRequirement = 46, cost = { Mana = 48, }, },
+ [13] = { critChance = 5, levelRequirement = 52, cost = { Mana = 54, }, },
+ [14] = { critChance = 5, levelRequirement = 58, cost = { Mana = 60, }, },
+ [15] = { critChance = 5, levelRequirement = 64, cost = { Mana = 67, }, },
+ [16] = { critChance = 5, levelRequirement = 66, cost = { Mana = 74, }, },
+ [17] = { critChance = 5, levelRequirement = 72, cost = { Mana = 82, }, },
+ [18] = { critChance = 5, levelRequirement = 78, cost = { Mana = 91, }, },
+ [19] = { critChance = 5, levelRequirement = 84, cost = { Mana = 101, }, },
+ [20] = { critChance = 5, levelRequirement = 90, cost = { Mana = 111, }, },
+ [21] = { critChance = 5, levelRequirement = 90, cost = { Mana = 123, }, },
+ [22] = { critChance = 5, levelRequirement = 90, cost = { Mana = 135, }, },
+ [23] = { critChance = 5, levelRequirement = 90, cost = { Mana = 149, }, },
+ [24] = { critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, },
+ [25] = { critChance = 5, levelRequirement = 90, cost = { Mana = 180, }, },
+ [26] = { critChance = 5, levelRequirement = 90, cost = { Mana = 198, }, },
+ [27] = { critChance = 5, levelRequirement = 90, cost = { Mana = 217, }, },
+ [28] = { critChance = 5, levelRequirement = 90, cost = { Mana = 237, }, },
+ [29] = { critChance = 5, levelRequirement = 90, cost = { Mana = 260, }, },
+ [30] = { critChance = 5, levelRequirement = 90, cost = { Mana = 284, }, },
+ [31] = { critChance = 5, levelRequirement = 90, cost = { Mana = 311, }, },
+ [32] = { critChance = 5, levelRequirement = 90, cost = { Mana = 339, }, },
+ [33] = { critChance = 5, levelRequirement = 90, cost = { Mana = 370, }, },
+ [34] = { critChance = 5, levelRequirement = 90, cost = { Mana = 404, }, },
+ [35] = { critChance = 5, levelRequirement = 90, cost = { Mana = 441, }, },
+ [36] = { critChance = 5, levelRequirement = 90, cost = { Mana = 480, }, },
+ [37] = { critChance = 5, levelRequirement = 90, cost = { Mana = 523, }, },
+ [38] = { critChance = 5, levelRequirement = 90, cost = { Mana = 570, }, },
+ [39] = { critChance = 5, levelRequirement = 90, cost = { Mana = 620, }, },
+ [40] = { critChance = 5, levelRequirement = 90, cost = { Mana = 674, }, },
},
statSets = {
[1] = {
label = "Wall",
- baseEffectiveness = 3,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 1.7000000476837,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "firewall",
statMap = {
["flame_wall_minimum_added_fire_damage"] = {
@@ -7043,65 +7881,75 @@ skills["FlameWallPlayer"] = {
{ "firewall_attached_projectile_effect_mtx", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_energy_generated_+%_final", -92 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "console_cast_on_self_custom_range", 15 },
+ { "active_skill_energy_generated_+%_final", -50 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
+ "base_fire_damage_to_deal_per_minute",
"wall_maximum_length",
"base_skill_effect_duration",
"is_area_damage",
"can_perform_skill_while_moving",
+ "quality_hide_display_character_panel",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "base_fire_damage_to_deal_per_minute",
+ "base_skill_effect_duration",
},
levels = {
- [1] = { 9, 14, 50, 4500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 13, 19, 51, 4600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 18, 26, 52, 4700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 23, 35, 53, 4800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 29, 44, 54, 4900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 36, 54, 55, 5000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 44, 66, 56, 5100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 53, 79, 57, 5200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 63, 94, 58, 5300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 74, 111, 59, 5400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 86, 130, 60, 5500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 100, 151, 61, 5600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 116, 174, 62, 5700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 134, 201, 63, 5800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 154, 231, 64, 5900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 176, 264, 65, 6000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 202, 302, 66, 6100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 230, 345, 67, 6200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 262, 393, 68, 6300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 299, 448, 69, 6400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 340, 510, 70, 6500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 386, 579, 71, 6600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 439, 658, 72, 6700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 499, 748, 73, 6800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 566, 849, 74, 6900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 643, 965, 75, 7000, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 731, 1096, 76, 7100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 830, 1245, 77, 7200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 943, 1415, 78, 7300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1073, 1609, 79, 7400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1220, 1830, 80, 7450, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1389, 2083, 81, 7500, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1581, 2372, 82, 7550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1802, 2703, 83, 7600, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2055, 3083, 84, 7650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2345, 3518, 85, 7700, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2679, 4019, 86, 7750, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3063, 4595, 87, 7800, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 3505, 5258, 88, 7850, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4015, 6023, 89, 7900, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 5, 8, 105, 50, 4500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 11, 141, 51, 4600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 15, 193, 52, 4700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, 19, 253, 53, 4800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 16, 24, 320, 54, 4900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 20, 30, 396, 55, 5000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 24, 37, 483, 56, 5100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 29, 44, 581, 57, 5200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 35, 52, 692, 58, 5300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 41, 62, 819, 59, 5400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 49, 73, 962, 60, 5500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 57, 85, 1126, 61, 5600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 66, 99, 1311, 62, 5700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 77, 115, 1522, 63, 5800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 89, 134, 1762, 64, 5900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 103, 154, 2035, 65, 6000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 119, 178, 2347, 66, 6100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 137, 205, 2703, 67, 6200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 157, 236, 3110, 68, 6300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 181, 271, 3575, 69, 6400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 208, 311, 4108, 70, 6500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 238, 358, 4718, 71, 6600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 274, 411, 5419, 72, 6700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 314, 472, 6223, 73, 6800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 361, 542, 7149, 74, 6900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 415, 623, 8214, 75, 7000, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 477, 716, 9443, 76, 7100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 549, 823, 10861, 77, 7200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 632, 947, 12499, 78, 7300, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 727, 1091, 14396, 79, 7400, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 838, 1258, 16593, 80, 7450, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 967, 1451, 19142, 81, 7500, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1117, 1675, 22104, 82, 7550, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1291, 1936, 25550, 83, 7600, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1494, 2241, 29564, 84, 7650, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1730, 2596, 34247, 85, 7700, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2007, 3010, 39718, 86, 7750, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2330, 3495, 46118, 87, 7800, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2709, 4064, 53617, 88, 7850, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3154, 4730, 62416, 89, 7900, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
label = "Projectile Damage",
baseEffectiveness = 0.60000002384186,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0017999999690801,
+ incrementalEffectiveness = 0.11999999731779,
+ damageIncrementalEffectiveness = 0.0015000000130385,
statDescriptionScope = "firewall",
baseFlags = {
},
@@ -7110,61 +7958,72 @@ skills["FlameWallPlayer"] = {
{ "firewall_attached_projectile_effect_mtx", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_energy_generated_+%_final", -92 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "console_cast_on_self_custom_range", 15 },
+ { "active_skill_energy_generated_+%_final", -50 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
+ "base_fire_damage_to_deal_per_minute",
"flame_wall_minimum_added_fire_damage",
"flame_wall_maximum_added_fire_damage",
+ "flame_wall_minimum_added_lightning_damage_to_add_to_projectile",
+ "flame_wall_maximum_added_lightning_damage_to_add_to_projectile",
"wall_maximum_length",
"base_skill_effect_duration",
"is_area_damage",
"can_perform_skill_while_moving",
+ "active_skill_consumes_a_lightning_infusion",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "base_fire_damage_to_deal_per_minute",
+ "base_skill_effect_duration",
+ },
levels = {
- [1] = { 0, 0, 2, 3, 50, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 3, 4, 51, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 3, 5, 52, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 4, 7, 53, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 5, 8, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 7, 10, 55, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 8, 12, 56, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 9, 13, 57, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 10, 16, 58, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 12, 18, 59, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 13, 20, 60, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 15, 23, 61, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 17, 25, 62, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 19, 28, 63, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 21, 31, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 23, 34, 65, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 25, 37, 66, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 27, 41, 67, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 30, 44, 68, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 32, 48, 69, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 35, 53, 70, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 38, 57, 71, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 41, 62, 72, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 44, 66, 73, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 48, 72, 74, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 51, 77, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 55, 83, 76, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 59, 89, 77, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 63, 95, 78, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 68, 102, 79, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 73, 109, 80, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 78, 116, 81, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 83, 124, 82, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 88, 133, 83, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 94, 141, 84, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 100, 151, 85, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 107, 161, 86, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 114, 171, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 121, 182, 88, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 129, 193, 89, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 0, 2, 3, 1, 4, 50, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 0, 2, 4, 1, 6, 51, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 0, 3, 5, 1, 8, 52, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 0, 4, 6, 1, 10, 53, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 0, 5, 7, 1, 12, 54, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 0, 6, 9, 1, 14, 55, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 0, 7, 10, 1, 16, 56, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 0, 8, 12, 1, 19, 57, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 0, 9, 14, 1, 22, 58, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 0, 10, 15, 1, 24, 59, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 0, 12, 17, 1, 28, 60, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 0, 13, 19, 2, 31, 61, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 0, 14, 22, 2, 34, 62, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 0, 16, 24, 2, 38, 63, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 0, 18, 26, 2, 42, 64, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 0, 19, 29, 2, 46, 65, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 0, 21, 32, 3, 50, 66, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 0, 23, 35, 3, 55, 67, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 0, 25, 38, 3, 59, 68, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 0, 27, 41, 3, 65, 69, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 0, 29, 44, 4, 70, 70, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 0, 32, 48, 4, 75, 71, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 0, 34, 51, 4, 81, 72, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 0, 37, 55, 5, 87, 73, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 0, 40, 59, 5, 94, 74, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 0, 42, 64, 5, 101, 75, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 0, 45, 68, 6, 108, 76, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 0, 49, 73, 6, 115, 77, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 0, 52, 78, 6, 123, 78, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 0, 55, 83, 7, 132, 79, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 0, 59, 89, 7, 140, 80, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 0, 63, 95, 8, 150, 81, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 0, 67, 101, 8, 159, 82, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 0, 71, 107, 9, 169, 83, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 0, 76, 114, 9, 180, 84, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 0, 80, 121, 10, 191, 85, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 0, 85, 128, 11, 203, 86, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 0, 91, 136, 11, 215, 87, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 0, 96, 144, 12, 228, 88, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 0, 102, 153, 13, 242, 89, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -7173,60 +8032,60 @@ skills["FlameblastPlayer"] = {
name = "Flameblast",
baseTypeName = "Flameblast",
color = 3,
- description = "Channel to build destructive energy around you or a targeted Solar Orb. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channelled for.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.GainsStages] = true, [SkillType.Cooldown] = true, },
+ description = "Channel to build destructive energy around you. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channelled for.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.GainsStages] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.25,
qualityStats = {
{ "active_skill_cast_speed_+%_final", 1 },
},
levels = {
- [1] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { ManaPerMinute = 375, }, },
- [2] = { critChance = 8, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { ManaPerMinute = 424, }, },
- [3] = { critChance = 8, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { ManaPerMinute = 480, }, },
- [4] = { critChance = 8, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { ManaPerMinute = 543, }, },
- [5] = { critChance = 8, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { ManaPerMinute = 615, }, },
- [6] = { critChance = 8, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { ManaPerMinute = 696, }, },
- [7] = { critChance = 8, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { ManaPerMinute = 787, }, },
- [8] = { critChance = 8, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { ManaPerMinute = 891, }, },
- [9] = { critChance = 8, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { ManaPerMinute = 1008, }, },
- [10] = { critChance = 8, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { ManaPerMinute = 1141, }, },
- [11] = { critChance = 8, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { ManaPerMinute = 1292, }, },
- [12] = { critChance = 8, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { ManaPerMinute = 1462, }, },
- [13] = { critChance = 8, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { ManaPerMinute = 1655, }, },
- [14] = { critChance = 8, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { ManaPerMinute = 1873, }, },
- [15] = { critChance = 8, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { ManaPerMinute = 2119, }, },
- [16] = { critChance = 8, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { ManaPerMinute = 2398, }, },
- [17] = { critChance = 8, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { ManaPerMinute = 2714, }, },
- [18] = { critChance = 8, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { ManaPerMinute = 3072, }, },
- [19] = { critChance = 8, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { ManaPerMinute = 3476, }, },
- [20] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3934, }, },
- [21] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4453, }, },
- [22] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5039, }, },
- [23] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5703, }, },
- [24] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6454, }, },
- [25] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 7304, }, },
- [26] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8266, }, },
- [27] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 9355, }, },
- [28] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 10587, }, },
- [29] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 11981, }, },
- [30] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 13559, }, },
- [31] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 15345, }, },
- [32] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 17366, }, },
- [33] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 19653, }, },
- [34] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 22241, }, },
- [35] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 25170, }, },
- [36] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 28485, }, },
- [37] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 32237, }, },
- [38] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 36482, }, },
- [39] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 41287, }, },
- [40] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 46725, }, },
+ [1] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { ManaPerMinute = 337, }, },
+ [2] = { critChance = 8, storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { ManaPerMinute = 398, }, },
+ [3] = { critChance = 8, storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { ManaPerMinute = 467, }, },
+ [4] = { critChance = 8, storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { ManaPerMinute = 542, }, },
+ [5] = { critChance = 8, storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { ManaPerMinute = 625, }, },
+ [6] = { critChance = 8, storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { ManaPerMinute = 716, }, },
+ [7] = { critChance = 8, storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { ManaPerMinute = 817, }, },
+ [8] = { critChance = 8, storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { ManaPerMinute = 928, }, },
+ [9] = { critChance = 8, storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { ManaPerMinute = 1050, }, },
+ [10] = { critChance = 8, storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { ManaPerMinute = 1183, }, },
+ [11] = { critChance = 8, storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { ManaPerMinute = 1330, }, },
+ [12] = { critChance = 8, storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { ManaPerMinute = 1491, }, },
+ [13] = { critChance = 8, storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { ManaPerMinute = 1667, }, },
+ [14] = { critChance = 8, storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { ManaPerMinute = 1859, }, },
+ [15] = { critChance = 8, storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { ManaPerMinute = 2070, }, },
+ [16] = { critChance = 8, storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { ManaPerMinute = 2300, }, },
+ [17] = { critChance = 8, storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { ManaPerMinute = 2551, }, },
+ [18] = { critChance = 8, storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { ManaPerMinute = 2825, }, },
+ [19] = { critChance = 8, storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { ManaPerMinute = 3124, }, },
+ [20] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3450, }, },
+ [21] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 3805, }, },
+ [22] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4192, }, },
+ [23] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 4613, }, },
+ [24] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5070, }, },
+ [25] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 5568, }, },
+ [26] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6110, }, },
+ [27] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 6698, }, },
+ [28] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 7336, }, },
+ [29] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8030, }, },
+ [30] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 8782, }, },
+ [31] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 9599, }, },
+ [32] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 10484, }, },
+ [33] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 11444, }, },
+ [34] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 12485, }, },
+ [35] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 13612, }, },
+ [36] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 14833, }, },
+ [37] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 16156, }, },
+ [38] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 17588, }, },
+ [39] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 19137, }, },
+ [40] = { critChance = 8, storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { ManaPerMinute = 20814, }, },
},
statSets = {
[1] = {
label = "Flameblast",
baseEffectiveness = 2.2999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
spell = true,
@@ -7240,8 +8099,7 @@ skills["FlameblastPlayer"] = {
{ "base_minimum_channel_time_ms", 490 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "flameblast_cast_speed_+%_final_when_targeting_solar_orb", 30 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -7252,47 +8110,51 @@ skills["FlameblastPlayer"] = {
"cast_speed_modifiers_apply_to_over_time_cost",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 23, 34, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 17, 26, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
[11] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 176, 265, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 201, 302, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 229, 343, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 260, 391, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 296, 444, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 336, 505, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 382, 573, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 434, 651, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 493, 740, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 636, 955, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 723, 1085, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 822, 1233, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 935, 1403, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1065, 1597, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1212, 1818, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1382, 2072, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1576, 2363, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1798, 2697, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2054, 3081, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 2348, 3523, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2687, 4031, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 3078, 4618, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [13] = { 90, 134, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 120, 181, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 160, 241, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 185, 277, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 213, 319, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 244, 367, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 281, 421, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 323, 484, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 370, 556, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 425, 638, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 489, 733, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 562, 842, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 645, 968, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 742, 1114, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 854, 1282, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 984, 1476, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1134, 1701, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1309, 1963, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1511, 2267, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1747, 2620, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2021, 3031, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2341, 3512, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2715, 4073, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 3153, 4729, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3665, 5498, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 4267, 6400, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -7302,52 +8164,52 @@ skills["FlammabilityPlayer"] = {
baseTypeName = "Flammability",
color = 3,
description = "Curse all targets in an area after a short delay, lowering their Fire Resistance.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
[2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
[9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
},
statSets = {
[1] = {
@@ -7369,7 +8231,7 @@ skills["FlammabilityPlayer"] = {
{ "curse_delay_duration_ms", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
@@ -7378,6 +8240,9 @@ skills["FlammabilityPlayer"] = {
"base_deal_no_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
[2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
@@ -7428,55 +8293,55 @@ skills["FlickerStrikePlayer"] = {
baseTypeName = "Flicker Strike",
color = 3,
description = "Teleport to a enemy and Strike them. Consumes Power Charges to perform additional teleporting Strikes on nearby enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "charge_skip_consume_chance_%", 1 },
+ { "active_skill_critical_strike_chance_+%_final", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 13, }, },
+ [1] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 12, }, },
[2] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 14, }, },
- [3] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.16, levelRequirement = 14, cost = { Mana = 19, }, },
- [6] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.26, levelRequirement = 18, cost = { Mana = 21, }, },
- [7] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 22, cost = { Mana = 24, }, },
- [8] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.45, levelRequirement = 26, cost = { Mana = 26, }, },
- [9] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.54, levelRequirement = 31, cost = { Mana = 29, }, },
- [10] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.64, levelRequirement = 36, cost = { Mana = 32, }, },
- [11] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.75, levelRequirement = 41, cost = { Mana = 36, }, },
- [12] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 46, cost = { Mana = 40, }, },
- [13] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 44, }, },
- [14] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 58, cost = { Mana = 49, }, },
- [15] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 64, cost = { Mana = 54, }, },
- [16] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 60, }, },
+ [3] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 16, }, },
+ [4] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.07, levelRequirement = 10, cost = { Mana = 19, }, },
+ [5] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.16, levelRequirement = 14, cost = { Mana = 21, }, },
+ [6] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.26, levelRequirement = 18, cost = { Mana = 24, }, },
+ [7] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.36, levelRequirement = 22, cost = { Mana = 26, }, },
+ [8] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.45, levelRequirement = 26, cost = { Mana = 29, }, },
+ [9] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.54, levelRequirement = 31, cost = { Mana = 32, }, },
+ [10] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.64, levelRequirement = 36, cost = { Mana = 36, }, },
+ [11] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.75, levelRequirement = 41, cost = { Mana = 40, }, },
+ [12] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.87, levelRequirement = 46, cost = { Mana = 43, }, },
+ [13] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 48, }, },
+ [14] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 58, cost = { Mana = 52, }, },
+ [15] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 64, cost = { Mana = 57, }, },
+ [16] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.44, levelRequirement = 66, cost = { Mana = 62, }, },
[17] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.62, levelRequirement = 72, cost = { Mana = 67, }, },
- [18] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.82, levelRequirement = 78, cost = { Mana = 74, }, },
- [19] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 91, }, },
- [21] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.52, levelRequirement = 90, cost = { Mana = 101, }, },
- [22] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 112, }, },
- [23] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 124, }, },
- [24] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.4, levelRequirement = 90, cost = { Mana = 138, }, },
- [25] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 152, }, },
- [26] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 169, }, },
- [27] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.5, levelRequirement = 90, cost = { Mana = 187, }, },
- [28] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.93, levelRequirement = 90, cost = { Mana = 208, }, },
- [29] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 230, }, },
- [30] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 255, }, },
- [31] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.41, levelRequirement = 90, cost = { Mana = 283, }, },
- [32] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.98, levelRequirement = 90, cost = { Mana = 313, }, },
- [33] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 8.6, levelRequirement = 90, cost = { Mana = 347, }, },
- [34] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.26, levelRequirement = 90, cost = { Mana = 385, }, },
- [35] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.98, levelRequirement = 90, cost = { Mana = 426, }, },
- [36] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 10.75, levelRequirement = 90, cost = { Mana = 473, }, },
- [37] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 11.58, levelRequirement = 90, cost = { Mana = 524, }, },
- [38] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 12.48, levelRequirement = 90, cost = { Mana = 580, }, },
- [39] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 13.44, levelRequirement = 90, cost = { Mana = 643, }, },
- [40] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 14.48, levelRequirement = 90, cost = { Mana = 713, }, },
+ [18] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 2.82, levelRequirement = 78, cost = { Mana = 72, }, },
+ [19] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 84, cost = { Mana = 78, }, },
+ [20] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 85, }, },
+ [21] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.52, levelRequirement = 90, cost = { Mana = 92, }, },
+ [22] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 99, }, },
+ [23] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 106, }, },
+ [24] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.4, levelRequirement = 90, cost = { Mana = 114, }, },
+ [25] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, cost = { Mana = 123, }, },
+ [26] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 132, }, },
+ [27] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.5, levelRequirement = 90, cost = { Mana = 142, }, },
+ [28] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 5.93, levelRequirement = 90, cost = { Mana = 152, }, },
+ [29] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 163, }, },
+ [30] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 174, }, },
+ [31] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.41, levelRequirement = 90, cost = { Mana = 186, }, },
+ [32] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 7.98, levelRequirement = 90, cost = { Mana = 199, }, },
+ [33] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 8.6, levelRequirement = 90, cost = { Mana = 212, }, },
+ [34] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.26, levelRequirement = 90, cost = { Mana = 227, }, },
+ [35] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 9.98, levelRequirement = 90, cost = { Mana = 242, }, },
+ [36] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 10.75, levelRequirement = 90, cost = { Mana = 258, }, },
+ [37] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 11.58, levelRequirement = 90, cost = { Mana = 275, }, },
+ [38] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 12.48, levelRequirement = 90, cost = { Mana = 293, }, },
+ [39] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 13.44, levelRequirement = 90, cost = { Mana = 312, }, },
+ [40] = { attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, baseMultiplier = 14.48, levelRequirement = 90, cost = { Mana = 332, }, },
},
statSets = {
[1] = {
@@ -7547,53 +8412,53 @@ skills["FreezingMarkPlayer"] = {
name = "Freezing Mark",
baseTypeName = "Freezing Mark",
color = 3,
- description = "Mark a target, making them more susceptible to being Frozen. When the Marked target dies, a Cold nova erupts from their corpse. This nova does not use your Weapon Damage, and instead uses its own base Attack Damage.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, },
+ description = "Mark a target, making them more susceptible to being Frozen. When the Marked target dies, a Cold explosion erupts from their corpse. This explosion does not use your Weapon Damage, and instead uses its own base Attack Damage.",
+ skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.5,
qualityStats = {
{ "freezing_mark_hit_damage_freeze_multiplier_+%_final", 1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 23, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 25, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 27, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 29, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 31, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 33, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 35, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 41, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 50, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 54, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 67, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 77, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 117, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 235, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 252, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 271, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 311, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 334, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 23, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 25, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 28, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 31, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 33, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 39, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 49, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 52, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 59, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 63, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 67, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 71, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 79, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 83, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 97, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 107, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 117, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 128, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 146, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 159, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 179, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 194, }, },
},
statSets = {
[1] = {
@@ -7601,7 +8466,6 @@ skills["FreezingMarkPlayer"] = {
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "freezing_mark",
baseFlags = {
- spell = true,
area = true,
duration = true,
},
@@ -7609,7 +8473,7 @@ skills["FreezingMarkPlayer"] = {
{ "base_skill_effect_duration", 8000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "number_of_marks_allowed_per_type", 1 },
},
stats = {
@@ -7666,7 +8530,7 @@ skills["FreezingMarkPlayer"] = {
skills["TriggeredFreezingMarkNovaPlayer"] = {
name = "Freezing Nova",
hidden = true,
- skillTypes = { [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
+ skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
castTime = 1,
qualityStats = {
},
@@ -7714,7 +8578,7 @@ skills["TriggeredFreezingMarkNovaPlayer"] = {
},
statSets = {
[1] = {
- label = "Nova",
+ label = "Explosion",
baseEffectiveness = 1.8600000143051,
incrementalEffectiveness = 0.27349999547005,
statDescriptionScope = "freezing_mark_nova",
@@ -7731,6 +8595,7 @@ skills["TriggeredFreezingMarkNovaPlayer"] = {
"triggered_by_freezing_mark",
"replace_main_hand_unarmed_attack_stats_with_nothing_type",
"display_statset_hide_usage_stats",
+ "triggerable_in_any_set",
},
levels = {
[1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
@@ -7783,7 +8648,7 @@ skills["FreezingShardsPlayer"] = {
fromItem = true,
color = 3,
description = "Launch icy Projectiles in a sweeping arc. Multiple Projectiles can hit the same enemy.",
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.2,
qualityStats = {
{ "base_number_of_projectiles", 0.05 },
@@ -7833,1162 +8698,2025 @@ skills["FreezingShardsPlayer"] = {
statSets = {
[1] = {
label = "Freezing Shards",
- baseEffectiveness = 0.6700000166893,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0060000000521541,
+ baseEffectiveness = 0.74000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
spell = true,
- projectile = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "base_number_of_projectiles", 5 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_hit_damage_freeze_multiplier_+%_final", 100 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "projectile_uses_contact_direction",
+ "can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 30, 44, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 92, 138, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 104, 155, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 168, 252, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 213, 320, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 241, 361, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 272, 408, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 307, 461, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 347, 521, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 393, 589, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 444, 666, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 503, 755, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 570, 855, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 646, 970, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 734, 1100, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["FrostBombPlayer"] = {
+ name = "Frost Bomb",
+ baseTypeName = "Frost Bomb",
+ color = 3,
+ description = "Create a pulsing Orb of frost. Each pulse inflicts Elemental Exposure on nearby enemies. When the Orb's duration ends, it Detonates, dealing Cold damage to surrounding enemies and leaving behind a Cold Infusion.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Limit] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ { "active_skill_all_elemental_exposure_compounding_magnitude_cap", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 6, cost = { Mana = 9, }, },
+ [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 6, cost = { Mana = 11, }, },
+ [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 6, cost = { Mana = 13, }, },
+ [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 6, cost = { Mana = 15, }, },
+ [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 6, cost = { Mana = 18, }, },
+ [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 6, cost = { Mana = 20, }, },
+ [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 6, cost = { Mana = 23, }, },
+ [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 6, cost = { Mana = 26, }, },
+ [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 6, cost = { Mana = 30, }, },
+ [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 6, cost = { Mana = 34, }, },
+ [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 6, cost = { Mana = 38, }, },
+ [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 6, cost = { Mana = 42, }, },
+ [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 6, cost = { Mana = 48, }, },
+ [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 6, cost = { Mana = 53, }, },
+ [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 6, cost = { Mana = 59, }, },
+ [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 6, cost = { Mana = 66, }, },
+ [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 6, cost = { Mana = 73, }, },
+ [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 6, cost = { Mana = 81, }, },
+ [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 6, cost = { Mana = 89, }, },
+ [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 99, }, },
+ [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 109, }, },
+ [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 120, }, },
+ [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 132, }, },
+ [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 146, }, },
+ [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 160, }, },
+ [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 175, }, },
+ [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 192, }, },
+ [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 211, }, },
+ [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 231, }, },
+ [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 252, }, },
+ [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 276, }, },
+ [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 301, }, },
+ [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 329, }, },
+ [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 359, }, },
+ [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 392, }, },
+ [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 427, }, },
+ [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 465, }, },
+ [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 506, }, },
+ [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 551, }, },
+ [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 6, cost = { Mana = 599, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Frost Bomb",
+ baseEffectiveness = 2.4000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.008899999782443,
+ statDescriptionScope = "frost_bomb",
+ statMap = {
+ ['skill_cold_exposure_magnitude'] = {
+ mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }),
+ mult = -1
+ },
+ },
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 24 },
+ { "base_skill_detonation_time", 4000 },
+ { "base_secondary_skill_effect_duration", 8000 },
+ { "spell_maximum_action_distance_+%", 400 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_all_elemental_exposure_magnitude", 20 },
+ { "active_skill_all_elemental_exposure_compounding_magnitude", 2 },
+ { "active_skill_all_elemental_exposure_compounding_magnitude_cap", 50 },
+ { "active_skill_chill_as_though_damage_+%_final", 300 },
+ { "base_maximum_number_of_frost_bombs", 1 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "active_skill_base_area_of_effect_radius",
+ "frost_bomb_exposure_does_not_apply_to_enemies_of_level_higher_than_X",
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "cannot_cancel_skill_before_contact_point",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 7, 11, 0, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 10, 15, 0, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 14, 21, 1, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 18, 27, 1, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 23, 34, 1, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 28, 42, 2, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 34, 51, 2, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 41, 61, 3, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 48, 73, 3, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 57, 86, 3, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 67, 100, 4, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 78, 117, 4, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 90, 135, 4, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 104, 156, 5, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 120, 180, 5, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 138, 208, 6, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 159, 238, 6, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 182, 273, 6, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 208, 313, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 238, 358, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 273, 409, 7, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 311, 467, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 356, 534, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 406, 609, 8, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 464, 696, 9, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 530, 795, 9, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 606, 909, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 692, 1038, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 792, 1188, 10, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 906, 1359, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1037, 1556, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1188, 1783, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1363, 2044, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1564, 2346, 11, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1796, 2695, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2065, 3098, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2377, 3566, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2739, 4108, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3159, 4739, 12, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3648, 5472, 13, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["FrostDartsPlayer"] = {
+ name = "Frost Darts",
+ baseTypeName = "Frost Darts",
+ color = 3,
+ description = "Conjures a number of icy Projectiles that launch towards the target. Projectiles that Hit a Chilled or Frozen target create chunks of ice that deal additional damage on impacting the ground. Consumes a Cold Infusion if possible to cause each Projectile to lodge into the enemy then explode.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ { "spell_skills_fire_2_additional_projectiles_final_chance_%", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 6, }, },
+ [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 25, }, },
+ [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 28, }, },
+ [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 32, }, },
+ [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 35, }, },
+ [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 39, }, },
+ [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 44, }, },
+ [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 48, }, },
+ [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 53, }, },
+ [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 59, }, },
+ [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 65, }, },
+ [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 72, }, },
+ [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 79, }, },
+ [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 87, }, },
+ [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 96, }, },
+ [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 105, }, },
+ [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 115, }, },
+ [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 126, }, },
+ [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 138, }, },
+ [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 151, }, },
+ [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 165, }, },
+ [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 181, }, },
+ [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 197, }, },
+ [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 215, }, },
+ [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 235, }, },
+ [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 256, }, },
+ [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 279, }, },
+ [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 303, }, },
+ [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 330, }, },
+ [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 359, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Projectile",
+ baseEffectiveness = 0.55000001192093,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_darts_statset_0",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "base_number_of_projectiles", 3 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_is_projectile",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_position",
+ "active_skill_consumes_a_cold_infusion",
+ "should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "never_freeze_or_chill",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 28, 41, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 102, 154, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 163, 244, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 206, 309, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 231, 347, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 372, 557, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 419, 628, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Explosion",
+ baseEffectiveness = 0.80000001192093,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_darts_statset_1",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ area = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "frost_darts_explode_creates_X_mortars", 3 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_is_projectile",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_position",
+ "active_skill_consumes_a_cold_infusion",
+ "should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "never_freeze_or_chill",
+ "is_area_damage",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 2, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 3, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 21, 31, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 31, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 40, 60, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 46, 68, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 52, 77, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 58, 87, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 66, 98, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 74, 111, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 83, 125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 94, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 105, 158, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 118, 177, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 133, 199, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 149, 223, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 188, 282, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 211, 316, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 237, 355, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 266, 399, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 299, 449, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 336, 505, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 378, 568, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 426, 639, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 480, 720, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 541, 811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 609, 914, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 688, 1031, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Ice Chunk",
+ baseEffectiveness = 0.64999997615814,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_darts_statset_2",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ area = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 8 },
+ { "skill_mortar_minimum_projectile_distance", 5 },
+ { "skill_mortar_maximum_projectile_distance", 17 },
+ { "base_number_of_projectiles", 2 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_is_projectile",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_position",
+ "active_skill_consumes_a_cold_infusion",
+ "should_use_additive_aiming_animation",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "never_freeze_or_chill",
+ "is_area_damage",
+ "random_projectile_direction",
+ "modifiers_to_projectile_count_do_not_apply",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 2, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 3, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 6, 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 10, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 17, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 19, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 29, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 37, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 47, 71, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 60, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 68, 101, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 85, 128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 96, 144, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 108, 162, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 121, 182, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 136, 204, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 153, 229, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 171, 257, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 193, 289, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 216, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 243, 365, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 273, 410, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 308, 461, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 346, 519, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 390, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 439, 659, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 495, 743, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 559, 838, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["FrostWallPlayer"] = {
+ name = "Frost Wall",
+ baseTypeName = "Frost Wall",
+ color = 3,
+ description = "Create a wall of Ice Crystals which holds back enemies. The Crystals explode if sufficiently damaged, or if pushed hard enough, damaging nearby enemies. Consumes a Lightning Infusion if possible to add another Lightning explosion if destroyed.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Invokable] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SupportedByFountains] = true, [SkillType.IceCrystal] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ { "base_cooldown_speed_+%", 1 },
+ },
+ levels = {
+ [1] = { critChance = 11, storedUses = 3, levelRequirement = 0, cooldown = 5, cost = { Mana = 7, }, },
+ [2] = { critChance = 11, storedUses = 3, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, },
+ [3] = { critChance = 11, storedUses = 3, levelRequirement = 6, cooldown = 5, cost = { Mana = 10, }, },
+ [4] = { critChance = 11, storedUses = 3, levelRequirement = 10, cooldown = 5, cost = { Mana = 12, }, },
+ [5] = { critChance = 11, storedUses = 3, levelRequirement = 14, cooldown = 5, cost = { Mana = 14, }, },
+ [6] = { critChance = 11, storedUses = 3, levelRequirement = 18, cooldown = 5, cost = { Mana = 16, }, },
+ [7] = { critChance = 11, storedUses = 3, levelRequirement = 22, cooldown = 5, cost = { Mana = 18, }, },
+ [8] = { critChance = 11, storedUses = 3, levelRequirement = 26, cooldown = 5, cost = { Mana = 21, }, },
+ [9] = { critChance = 11, storedUses = 3, levelRequirement = 31, cooldown = 5, cost = { Mana = 24, }, },
+ [10] = { critChance = 11, storedUses = 3, levelRequirement = 36, cooldown = 5, cost = { Mana = 27, }, },
+ [11] = { critChance = 11, storedUses = 3, levelRequirement = 41, cooldown = 5, cost = { Mana = 30, }, },
+ [12] = { critChance = 11, storedUses = 3, levelRequirement = 46, cooldown = 5, cost = { Mana = 34, }, },
+ [13] = { critChance = 11, storedUses = 3, levelRequirement = 52, cooldown = 5, cost = { Mana = 38, }, },
+ [14] = { critChance = 11, storedUses = 3, levelRequirement = 58, cooldown = 5, cost = { Mana = 42, }, },
+ [15] = { critChance = 11, storedUses = 3, levelRequirement = 64, cooldown = 5, cost = { Mana = 47, }, },
+ [16] = { critChance = 11, storedUses = 3, levelRequirement = 66, cooldown = 5, cost = { Mana = 53, }, },
+ [17] = { critChance = 11, storedUses = 3, levelRequirement = 72, cooldown = 5, cost = { Mana = 58, }, },
+ [18] = { critChance = 11, storedUses = 3, levelRequirement = 78, cooldown = 5, cost = { Mana = 65, }, },
+ [19] = { critChance = 11, storedUses = 3, levelRequirement = 84, cooldown = 5, cost = { Mana = 72, }, },
+ [20] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 79, }, },
+ [21] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 87, }, },
+ [22] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 96, }, },
+ [23] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 106, }, },
+ [24] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 116, }, },
+ [25] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 128, }, },
+ [26] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 140, }, },
+ [27] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 154, }, },
+ [28] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 169, }, },
+ [29] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 185, }, },
+ [30] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 202, }, },
+ [31] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 221, }, },
+ [32] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 241, }, },
+ [33] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 263, }, },
+ [34] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 287, }, },
+ [35] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 313, }, },
+ [36] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 341, }, },
+ [37] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 372, }, },
+ [38] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 405, }, },
+ [39] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 441, }, },
+ [40] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 479, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Frost Wall",
+ baseEffectiveness = 2.2799999713898,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_wall_new_statset_0",
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "wall_expand_delay_ms", 150 },
+ { "base_skill_effect_duration", 8000 },
+ { "active_skill_base_area_of_effect_radius", 20 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
+ { "ice_crystal_shatter_detonation_damage_+%_final", 0 },
+ { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "wall_maximum_length",
+ "frost_wall_maximum_life",
+ "base_skill_show_average_damage_instead_of_dps",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "is_ice_crystal_explosion",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 7, 11, 28, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 10, 14, 28, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 13, 19, 28, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 17, 25, 28, 164, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 21, 31, 35, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 26, 38, 35, 334, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 31, 46, 35, 460, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 37, 55, 35, 624, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 43, 65, 42, 832, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 50, 76, 42, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 59, 88, 42, 1438, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 67, 101, 42, 1866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 77, 116, 49, 2408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 88, 133, 49, 3086, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 101, 151, 49, 3940, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 115, 172, 49, 5016, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 130, 195, 56, 6362, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 147, 220, 56, 8032, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 166, 249, 56, 10118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 187, 280, 56, 12714, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 211, 316, 63, 13350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 237, 356, 63, 14017, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 267, 400, 63, 14718, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 300, 449, 63, 15454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 337, 505, 70, 16227, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 378, 567, 70, 17038, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 425, 637, 70, 17890, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 477, 715, 70, 18784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 535, 803, 77, 19724, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 601, 902, 77, 20710, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 675, 1013, 78, 21745, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 759, 1138, 80, 22833, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 853, 1279, 81, 23974, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 959, 1438, 83, 25173, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1079, 1618, 85, 26431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1214, 1821, 87, 27753, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1367, 2051, 88, 29141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1540, 2311, 90, 30598, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1737, 2605, 92, 32128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1960, 2939, 94, 33734, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Lightning-Infused",
+ baseEffectiveness = 1.5,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_wall_new_statset_1",
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
},
constantStats = {
- { "base_number_of_projectiles", 5 },
+ { "wall_expand_delay_ms", 150 },
+ { "base_skill_effect_duration", 8000 },
+ { "active_skill_base_area_of_effect_radius", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_hit_damage_freeze_multiplier_+%_final", 100 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
+ { "ice_crystal_shatter_detonation_damage_+%_final", 0 },
+ { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 },
+ { "active_skill_base_secondary_area_of_effect_radius", 28 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
- "base_is_projectile",
- "projectile_uses_contact_position",
- "check_for_targets_between_initiator_and_projectile_source",
- "projectile_uses_contact_direction",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "wall_maximum_length",
+ "frost_wall_maximum_life",
+ "base_skill_show_average_damage_instead_of_dps",
+ "is_area_damage",
"can_perform_skill_while_moving",
+ "is_ice_crystal_explosion",
+ "active_skill_consumes_a_lightning_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
},
levels = {
- [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 18, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 105, 157, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 145, 217, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 161, 242, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 200, 300, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 249, 373, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 344, 517, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 429, 643, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 479, 718, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 1, 11, 28, 36, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 1, 15, 28, 64, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1, 20, 28, 108, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1, 26, 28, 164, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 2, 33, 35, 240, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 2, 40, 35, 334, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 3, 48, 35, 460, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 3, 57, 35, 624, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 4, 68, 42, 832, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 4, 79, 42, 1100, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 5, 91, 42, 1438, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 6, 105, 42, 1866, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 6, 121, 49, 2408, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 7, 138, 49, 3086, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 8, 158, 49, 3940, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 9, 179, 49, 5016, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 11, 203, 56, 6362, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 12, 229, 56, 8032, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 14, 259, 56, 10118, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 15, 292, 56, 12714, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 17, 329, 63, 13350, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 19, 370, 63, 14017, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 22, 417, 63, 14718, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 25, 468, 63, 15454, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 28, 526, 70, 16227, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 31, 591, 70, 17038, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 35, 663, 70, 17890, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 39, 745, 70, 18784, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 44, 837, 77, 19724, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 49, 940, 77, 20710, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 56, 1055, 78, 21745, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 62, 1186, 80, 22833, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 70, 1333, 81, 23974, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 79, 1498, 83, 25173, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 89, 1685, 85, 26431, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 100, 1897, 87, 27753, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 112, 2136, 88, 29141, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 127, 2407, 90, 30598, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 143, 2714, 92, 32128, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 161, 3062, 94, 33734, critChance = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["FrostBombPlayer"] = {
- name = "Frost Bomb",
- baseTypeName = "Frost Bomb",
+skills["FrostboltPlayer"] = {
+ name = "Frostbolt",
+ baseTypeName = "Frostbolt",
color = 3,
- description = "Create a pulsing Orb of frost. Each pulse inflicts Cold Exposure on nearby enemies. When the Orb's duration ends, it explodes, dealing Cold damage to surrounding enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Fire a slow-moving Piercing Projectile that is effective at Chilling enemies and explodes on colliding with terrain.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.8,
qualityStats = {
- { "cold_exposure_effect_+%", 1 },
+ { "active_skill_projectile_damage_+%_final_if_pierced_enemy", 1 },
},
levels = {
- [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 3.5, cost = { Mana = 10, }, },
- [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 3.5, cost = { Mana = 12, }, },
- [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 3.5, cost = { Mana = 13, }, },
- [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 3.5, cost = { Mana = 15, }, },
- [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 3.5, cost = { Mana = 17, }, },
- [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 3.5, cost = { Mana = 20, }, },
- [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 3.5, cost = { Mana = 22, }, },
- [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 3.5, cost = { Mana = 25, }, },
- [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 3.5, cost = { Mana = 29, }, },
- [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 3.5, cost = { Mana = 32, }, },
- [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 3.5, cost = { Mana = 37, }, },
- [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 3.5, cost = { Mana = 42, }, },
- [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 3.5, cost = { Mana = 47, }, },
- [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 3.5, cost = { Mana = 53, }, },
- [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 3.5, cost = { Mana = 61, }, },
- [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 3.5, cost = { Mana = 69, }, },
- [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 3.5, cost = { Mana = 78, }, },
- [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 3.5, cost = { Mana = 88, }, },
- [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 3.5, cost = { Mana = 100, }, },
- [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 113, }, },
- [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 128, }, },
- [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 145, }, },
- [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 164, }, },
- [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 185, }, },
- [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 210, }, },
- [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 238, }, },
- [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 269, }, },
- [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 304, }, },
- [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 345, }, },
- [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 390, }, },
- [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 441, }, },
- [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 500, }, },
- [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 566, }, },
- [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 640, }, },
- [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 724, }, },
- [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 820, }, },
- [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 928, }, },
- [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1050, }, },
- [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1189, }, },
- [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 3.5, cost = { Mana = 1345, }, },
+ [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 6, }, },
+ [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 25, }, },
+ [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 28, }, },
+ [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 32, }, },
+ [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 35, }, },
+ [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 39, }, },
+ [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 44, }, },
+ [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 48, }, },
+ [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 53, }, },
+ [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 59, }, },
+ [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 65, }, },
+ [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 72, }, },
+ [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 79, }, },
+ [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 87, }, },
+ [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 96, }, },
+ [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 105, }, },
+ [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 115, }, },
+ [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 126, }, },
+ [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 138, }, },
+ [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 151, }, },
+ [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 165, }, },
+ [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 181, }, },
+ [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 197, }, },
+ [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 215, }, },
+ [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 235, }, },
+ [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 256, }, },
+ [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 279, }, },
+ [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 303, }, },
+ [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 330, }, },
+ [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 359, }, },
},
statSets = {
[1] = {
- label = "Frost Bomb",
- baseEffectiveness = 5.0199999809265,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0074999998323619,
- statDescriptionScope = "frost_bomb",
- statMap = {
- ['skill_cold_exposure_magnitude'] = {
- mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }),
- mult = -1
- },
- },
+ label = "Projectile",
+ baseEffectiveness = 1.6699999570847,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
+ statDescriptionScope = "frost_bolt",
baseFlags = {
spell = true,
area = true,
duration = true,
+ projectile = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 20 },
- { "base_skill_effect_duration", 3000 },
- { "base_secondary_skill_effect_duration", 8000 },
- { "skill_cold_exposure_magnitude", 20 },
- { "spell_maximum_action_distance_+%", 400 },
+ { "base_skill_effect_duration", 4000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
- "active_skill_base_area_of_effect_radius",
- "is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "cannot_cancel_skill_before_contact_point",
+ "active_skill_chill_as_though_damage_+%_final",
+ "base_is_projectile",
+ "always_pierce",
+ "projectile_uses_contact_position",
+ "maintain_projectile_direction_when_using_contact_position",
+ "can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 5, 8, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 10, 105, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 9, 14, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 12, 18, 115, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 15, 23, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 19, 28, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 23, 34, 130, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 27, 41, 135, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 32, 48, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 38, 56, 145, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 44, 66, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 51, 76, 155, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 58, 87, 160, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 67, 100, 165, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 76, 114, 170, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 87, 130, 175, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 99, 148, 180, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 112, 168, 185, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 127, 190, 190, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 144, 216, 195, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 162, 244, 200, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 184, 275, 205, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 207, 311, 210, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 234, 351, 215, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 264, 396, 220, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 298, 446, 225, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 336, 503, 230, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 379, 568, 235, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 427, 640, 240, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 482, 723, 245, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 544, 816, 247, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 614, 921, 250, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 693, 1040, 252, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 784, 1176, 255, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 886, 1329, 257, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1003, 1504, 260, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1135, 1703, 262, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1286, 1930, 265, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1459, 2188, 267, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1655, 2483, 270, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Explosion",
+ baseEffectiveness = 2.7999999523163,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0068999999202788,
+ statDescriptionScope = "frost_bolt",
+ baseFlags = {
+ spell = true,
+ area = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 24 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "active_skill_chill_as_though_damage_+%_final",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "is_area_damage",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 16, 23, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 21, 32, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 29, 44, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 39, 58, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 49, 73, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 60, 90, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 73, 109, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 87, 131, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 103, 154, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 121, 181, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 141, 211, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 163, 244, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 188, 281, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 215, 323, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 246, 369, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 281, 421, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 320, 480, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 363, 545, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 412, 619, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 467, 701, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 529, 793, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 598, 897, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 676, 1014, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 764, 1145, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 862, 1293, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 974, 1460, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 1099, 1649, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1241, 1862, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1402, 2102, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1583, 2375, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1789, 2683, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 2022, 3033, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 2286, 3430, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 2587, 3880, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2929, 4393, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 3318, 4976, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 3761, 5641, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 4266, 6400, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 4844, 7266, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 5504, 8255, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 9, 13, 100, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 12, 18, 105, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 16, 24, 110, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 21, 31, 115, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 26, 39, 120, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 32, 47, 125, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 38, 57, 130, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 45, 68, 135, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 53, 80, 140, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 62, 93, 145, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 72, 108, 150, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 83, 124, 155, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 95, 143, 160, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 109, 163, 165, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 124, 186, 170, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 141, 211, 175, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 159, 239, 180, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 180, 270, 185, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 204, 305, 190, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 230, 344, 195, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 259, 388, 200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 291, 437, 205, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 327, 491, 210, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 368, 552, 215, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 413, 620, 220, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 464, 697, 225, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 521, 782, 230, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 586, 878, 235, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 658, 986, 240, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 738, 1108, 245, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 829, 1244, 247, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 932, 1398, 250, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 1047, 1571, 252, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 1178, 1766, 255, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 1325, 1987, 257, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 1491, 2236, 260, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 1679, 2518, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 1892, 2838, 265, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 2133, 3199, 267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 2407, 3610, 270, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["FrostWallPlayer"] = {
- name = "Frost Wall",
- baseTypeName = "Frost Wall",
+skills["FrozenLocusPlayer"] = {
+ name = "Frozen Locus",
+ baseTypeName = "Frozen Locus",
color = 3,
- description = "Create a wall of Ice Crystals which holds back enemies. The Crystals explode if sufficiently damaged, or if pushed hard enough, damaging nearby enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Invokable] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SupportedByFountains] = true, [SkillType.IceCrystal] = true, },
- castTime = 0.8,
+ description = "Leap backward and crack the ground with your staff to call forth an Ice Crystal, which creates Chilled Ground around it and can be damaged by you and enemies. If the Crystal is destroyed it causes an icy explosion. This skill can be used while using other skills.",
+ skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, },
+ weaponTypes = {
+ ["Staff"] = true,
+ },
+ castTime = 1,
qualityStats = {
- { "base_cooldown_speed_+%", 1 },
+ { "active_skill_chill_effect_+%_final", 1 },
},
levels = {
- [1] = { critChance = 11, storedUses = 3, levelRequirement = 0, cooldown = 5, cost = { Mana = 8, }, },
- [2] = { critChance = 11, storedUses = 3, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, },
- [3] = { critChance = 11, storedUses = 3, levelRequirement = 6, cooldown = 5, cost = { Mana = 11, }, },
- [4] = { critChance = 11, storedUses = 3, levelRequirement = 10, cooldown = 5, cost = { Mana = 12, }, },
- [5] = { critChance = 11, storedUses = 3, levelRequirement = 14, cooldown = 5, cost = { Mana = 14, }, },
- [6] = { critChance = 11, storedUses = 3, levelRequirement = 18, cooldown = 5, cost = { Mana = 16, }, },
- [7] = { critChance = 11, storedUses = 3, levelRequirement = 22, cooldown = 5, cost = { Mana = 18, }, },
- [8] = { critChance = 11, storedUses = 3, levelRequirement = 26, cooldown = 5, cost = { Mana = 20, }, },
- [9] = { critChance = 11, storedUses = 3, levelRequirement = 31, cooldown = 5, cost = { Mana = 23, }, },
- [10] = { critChance = 11, storedUses = 3, levelRequirement = 36, cooldown = 5, cost = { Mana = 26, }, },
- [11] = { critChance = 11, storedUses = 3, levelRequirement = 41, cooldown = 5, cost = { Mana = 29, }, },
- [12] = { critChance = 11, storedUses = 3, levelRequirement = 46, cooldown = 5, cost = { Mana = 33, }, },
- [13] = { critChance = 11, storedUses = 3, levelRequirement = 52, cooldown = 5, cost = { Mana = 38, }, },
- [14] = { critChance = 11, storedUses = 3, levelRequirement = 58, cooldown = 5, cost = { Mana = 43, }, },
- [15] = { critChance = 11, storedUses = 3, levelRequirement = 64, cooldown = 5, cost = { Mana = 48, }, },
- [16] = { critChance = 11, storedUses = 3, levelRequirement = 66, cooldown = 5, cost = { Mana = 55, }, },
- [17] = { critChance = 11, storedUses = 3, levelRequirement = 72, cooldown = 5, cost = { Mana = 62, }, },
- [18] = { critChance = 11, storedUses = 3, levelRequirement = 78, cooldown = 5, cost = { Mana = 70, }, },
- [19] = { critChance = 11, storedUses = 3, levelRequirement = 84, cooldown = 5, cost = { Mana = 80, }, },
- [20] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 90, }, },
- [21] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 102, }, },
- [22] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 116, }, },
- [23] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 131, }, },
- [24] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 148, }, },
- [25] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 168, }, },
- [26] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 190, }, },
- [27] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 215, }, },
- [28] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 243, }, },
- [29] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 276, }, },
- [30] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 312, }, },
- [31] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 353, }, },
- [32] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 400, }, },
- [33] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 452, }, },
- [34] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 512, }, },
- [35] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 579, }, },
- [36] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 656, }, },
- [37] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 742, }, },
- [38] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 840, }, },
- [39] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 951, }, },
- [40] = { critChance = 11, storedUses = 3, levelRequirement = 90, cooldown = 5, cost = { Mana = 1076, }, },
+ [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, cost = { Mana = 12, }, },
+ [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, cost = { Mana = 13, }, },
+ [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, cost = { Mana = 15, }, },
+ [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 18, }, },
+ [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 20, }, },
+ [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 22, }, },
+ [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 25, }, },
+ [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 28, }, },
+ [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 31, }, },
+ [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 34, }, },
+ [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 38, }, },
+ [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 41, }, },
+ [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 45, }, },
+ [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 49, }, },
+ [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 54, }, },
+ [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 59, }, },
+ [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, cost = { Mana = 64, }, },
+ [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 69, }, },
+ [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 81, }, },
+ [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 87, }, },
+ [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 94, }, },
+ [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 101, }, },
+ [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 109, }, },
+ [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 117, }, },
+ [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 126, }, },
+ [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 135, }, },
+ [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 145, }, },
+ [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 155, }, },
+ [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 166, }, },
+ [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 177, }, },
+ [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 189, }, },
+ [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 202, }, },
+ [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 216, }, },
+ [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 230, }, },
+ [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 246, }, },
+ [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 262, }, },
+ [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 279, }, },
+ [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 297, }, },
+ [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 316, }, },
},
statSets = {
[1] = {
- label = "Frost Wall",
- baseEffectiveness = 2.2799999713898,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0054999999701977,
- statDescriptionScope = "frost_wall_new",
+ label = "Crystal",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ice_ambush_statset_0",
+ statMap = {
+ ["frozen_locus_crystal_display_stat"] = {
+ -- Display Only
+ },
+ },
+ baseFlags = {
+ duration = true,
+ },
+ constantStats = {
+ { "base_skill_effect_duration", 10000 },
+ { "attack_maximum_action_distance_+", 15 },
+ { "base_number_of_frozen_locus_allowed", 1 },
+ },
+ stats = {
+ "frost_wall_maximum_life",
+ "frost_wall_damage_taken_+%_final_from_own_team",
+ "frozen_locus_crystal_display_stat",
+ "active_skill_is_ignored_by_staggering_palm",
+ "active_skill_is_ignored_by_charged_staff",
+ "base_skill_show_average_damage_instead_of_dps",
+ "frozen_locus_stat_suppression",
+ "base_deal_no_damage",
+ "active_skill_is_ignored_by_mantra_of_destruction",
+ "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
+ },
+ levels = {
+ [1] = { 43, 100, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 54, 75, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 68, 50, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 94, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 122, -32, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 151, -52, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 184, -61, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 220, -66, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 274, -70, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 331, -73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 396, -75, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 468, -77, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 569, -78, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 684, -78, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 817, -79, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 965, -79, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 1138, -79, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 1364, -79, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 1364, -82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 1364, -84, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Chilled Ground",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ice_ambush_statset_1",
baseFlags = {
- spell = true,
area = true,
duration = true,
},
constantStats = {
- { "wall_expand_delay_ms", 150 },
- { "base_skill_effect_duration", 8000 },
- { "active_skill_base_area_of_effect_radius", 20 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "base_skill_effect_duration", 10000 },
+ { "attack_maximum_action_distance_+", 15 },
+ { "base_number_of_frozen_locus_allowed", 1 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "active_skill_base_area_of_effect_radius", 12 },
+ { "active_skill_ground_effect_area_of_effect_+%_final_per_second", 30 },
+ { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 180 },
+ },
+ stats = {
+ "frost_wall_maximum_life",
+ "frost_wall_damage_taken_+%_final_from_own_team",
+ "frozen_locus_crystal_display_stat",
+ "active_skill_is_ignored_by_staggering_palm",
+ "active_skill_is_ignored_by_charged_staff",
+ "base_skill_show_average_damage_instead_of_dps",
+ "frozen_locus_stat_suppression",
+ "active_skill_is_ignored_by_mantra_of_destruction",
+ "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
+ "display_fake_attack_hit_chill",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { 43, 100, baseMultiplier = 1.5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 54, 75, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 68, 50, baseMultiplier = 1.83, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 94, 0, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 122, -32, baseMultiplier = 2.18, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 151, -52, baseMultiplier = 2.36, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 184, -61, baseMultiplier = 2.55, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 220, -66, baseMultiplier = 2.73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 274, -70, baseMultiplier = 2.9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 331, -73, baseMultiplier = 3.08, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 396, -75, baseMultiplier = 3.28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 468, -77, baseMultiplier = 3.5, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 569, -78, baseMultiplier = 3.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 684, -78, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 817, -79, baseMultiplier = 4.27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 965, -79, baseMultiplier = 4.58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 1138, -79, baseMultiplier = 4.92, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 1364, -79, baseMultiplier = 5.28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 1364, -82, baseMultiplier = 5.68, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 1364, -84, baseMultiplier = 6.12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1364, -85, baseMultiplier = 6.6, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1364, -85, baseMultiplier = 7.11, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1364, -85, baseMultiplier = 7.66, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1364, -85, baseMultiplier = 8.25, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1364, -85, baseMultiplier = 8.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1364, -85, baseMultiplier = 9.57, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1364, -85, baseMultiplier = 10.31, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1364, -85, baseMultiplier = 11.11, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1364, -85, baseMultiplier = 11.97, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1364, -85, baseMultiplier = 12.89, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1364, -85, baseMultiplier = 13.89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1364, -85, baseMultiplier = 14.96, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1364, -85, baseMultiplier = 16.12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1364, -85, baseMultiplier = 17.37, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1364, -85, baseMultiplier = 18.71, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1364, -85, baseMultiplier = 20.16, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1364, -85, baseMultiplier = 21.71, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1364, -85, baseMultiplier = 23.39, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1364, -85, baseMultiplier = 25.2, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1364, -85, baseMultiplier = 27.15, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Explosion",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ice_ambush_statset_2",
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "base_skill_effect_duration", 10000 },
+ { "attack_maximum_action_distance_+", 15 },
+ { "base_number_of_frozen_locus_allowed", 1 },
+ { "active_skill_base_area_of_effect_radius", 34 },
{ "active_skill_hit_damage_freeze_multiplier_+%_final", 50 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
},
stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "wall_maximum_length",
"frost_wall_maximum_life",
+ "frost_wall_damage_taken_+%_final_from_own_team",
+ "frozen_locus_crystal_display_stat",
+ "active_skill_is_ignored_by_staggering_palm",
+ "active_skill_is_ignored_by_charged_staff",
"base_skill_show_average_damage_instead_of_dps",
+ "frozen_locus_stat_suppression",
+ "active_skill_is_ignored_by_mantra_of_destruction",
+ "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
"is_area_damage",
- "can_perform_skill_while_moving",
+ "display_statset_hide_usage_stats",
+ "is_ice_crystal_explosion",
},
levels = {
- [1] = { 7, 11, 28, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 28, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 13, 20, 28, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 17, 26, 28, 164, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 22, 32, 35, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 26, 40, 35, 334, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 32, 48, 35, 460, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 38, 56, 35, 624, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 44, 66, 42, 832, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 51, 77, 42, 1100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 59, 88, 42, 1438, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 67, 101, 42, 1866, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 77, 115, 49, 2408, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 87, 131, 49, 3086, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 99, 148, 49, 3940, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 111, 167, 49, 5016, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 125, 187, 56, 6362, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 140, 210, 56, 8032, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 157, 235, 56, 10118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 175, 263, 56, 12714, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 195, 293, 63, 13350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 218, 326, 63, 14017, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 242, 363, 63, 14718, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 269, 404, 63, 15454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 299, 448, 70, 16227, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 332, 498, 70, 17038, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 368, 552, 70, 17890, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 408, 613, 70, 18784, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 453, 679, 77, 19724, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 502, 753, 77, 20710, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 557, 835, 78, 21745, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 617, 925, 80, 22833, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 684, 1026, 81, 23974, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 758, 1137, 83, 25173, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 840, 1260, 85, 26431, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 932, 1398, 87, 27753, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1033, 1550, 88, 29141, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1146, 1720, 90, 30598, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1272, 1908, 92, 32128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1412, 2119, 94, 33734, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 43, 100, baseMultiplier = 1.5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 54, 75, baseMultiplier = 1.65, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 68, 50, baseMultiplier = 1.83, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 94, 0, baseMultiplier = 2, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 122, -32, baseMultiplier = 2.18, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 151, -52, baseMultiplier = 2.36, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 184, -61, baseMultiplier = 2.55, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 220, -66, baseMultiplier = 2.73, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 274, -70, baseMultiplier = 2.9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 331, -73, baseMultiplier = 3.08, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 396, -75, baseMultiplier = 3.28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 468, -77, baseMultiplier = 3.5, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 569, -78, baseMultiplier = 3.74, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 684, -78, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 817, -79, baseMultiplier = 4.27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 965, -79, baseMultiplier = 4.58, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 1138, -79, baseMultiplier = 4.92, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 1364, -79, baseMultiplier = 5.28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 1364, -82, baseMultiplier = 5.68, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 1364, -84, baseMultiplier = 6.12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1364, -85, baseMultiplier = 6.6, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1364, -85, baseMultiplier = 7.11, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1364, -85, baseMultiplier = 7.66, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1364, -85, baseMultiplier = 8.25, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1364, -85, baseMultiplier = 8.89, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1364, -85, baseMultiplier = 9.57, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1364, -85, baseMultiplier = 10.31, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1364, -85, baseMultiplier = 11.11, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1364, -85, baseMultiplier = 11.97, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1364, -85, baseMultiplier = 12.89, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1364, -85, baseMultiplier = 13.89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1364, -85, baseMultiplier = 14.96, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1364, -85, baseMultiplier = 16.12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1364, -85, baseMultiplier = 17.37, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1364, -85, baseMultiplier = 18.71, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1364, -85, baseMultiplier = 20.16, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1364, -85, baseMultiplier = 21.71, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1364, -85, baseMultiplier = 23.39, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1364, -85, baseMultiplier = 25.2, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1364, -85, baseMultiplier = 27.15, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["HypothermiaPlayer"] = {
- name = "Hypothermia",
- baseTypeName = "Hypothermia",
+skills["FulminationPlayer"] = {
+ name = "Fulmination",
+ baseTypeName = "Fulmination",
color = 3,
- description = "Curse all targets in an area after a short delay, lowering their Cold Resistance.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.7,
+ description = "While active, the first time any Skill Hits a Shocked enemy in your Presence, that Skill also Hits other Shocked enemies in your Presence, up to a maximum.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Damage] = true, [SkillType.NoAttackInPlace] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Lightning] = true, },
+ castTime = 0,
qualityStats = {
- { "curse_effect_+%", 0.5 },
+ { "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence", 0.25 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Hypothermia",
- incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "cold_weakness",
- statMap = {
- ["base_skill_buff_cold_damage_resistance_%_to_apply"] = {
- mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
- },
- },
+ label = "Fulmination",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "wrath_aura",
baseFlags = {
- spell = true,
- curse = true,
- area = true,
- duration = true,
},
constantStats = {
- { "curse_delay_duration_ms", 1500 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "skill_desired_amount_override", 1 },
+ { "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence", 0 },
+ { "skill_specific_stat_description_mode", 1 },
},
stats = {
- "base_skill_effect_duration",
- "active_skill_base_area_of_effect_radius",
- "base_skill_buff_cold_damage_resistance_%_to_apply",
- "base_deal_no_damage",
- "can_perform_skill_while_moving",
+ "skill_wrath_aura_shared_damage_+%_to_other_shocked_enemies_in_presence",
+ "never_shock",
},
levels = {
- [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { -90, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { -89, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { -88, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { -87, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { -86, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { -85, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { -84, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { -83, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { -82, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { -81, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { -80, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { -79, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { -78, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { -77, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { -76, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { -75, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { -74, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { -73, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { -72, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { -71, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { -70, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { -69, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { -68, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { -67, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { -66, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { -65, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { -64, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { -63, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { -62, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { -61, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { -61, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { -60, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { -60, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { -59, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { -59, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { -58, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { -58, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { -57, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { -57, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { -56, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["FrostboltPlayer"] = {
- name = "Frostbolt",
- baseTypeName = "Frostbolt",
+skills["GalvanicFieldBuffPlayer"] = {
+ name = "Galvanic Field",
+ baseTypeName = "Galvanic Field",
+ fromItem = true,
color = 3,
- description = "Fire a slow-moving Piercing Projectile that leaves a wake of Chilled Ground, deals Cold damage and explodes on colliding with terrain.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, },
- castTime = 0.8,
+ description = "Gain a Buff that boosts your Shock chance. Shocking an enemy consumes the Buff to attach an Orb of electricity to that enemy. The Orb fires bolts of electricity at nearby enemies until it expires.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Sustained] = true, },
+ castTime = 0.65,
qualityStats = {
- { "active_skill_projectile_damage_+%_final_if_pierced_enemy", 1 },
+ { "number_of_chains", 0.1 },
},
levels = {
- [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 6, }, },
- [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 15, }, },
- [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 17, }, },
- [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 19, }, },
- [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 22, }, },
- [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 25, }, },
- [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 28, }, },
- [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 32, }, },
- [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 36, }, },
- [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 41, }, },
- [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 46, }, },
- [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 53, }, },
- [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 60, }, },
- [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 67, }, },
- [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 76, }, },
- [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 87, }, },
- [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 98, }, },
- [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 111, }, },
- [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 126, }, },
- [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 142, }, },
- [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 161, }, },
- [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 182, }, },
- [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 207, }, },
- [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 234, }, },
- [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 265, }, },
- [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 300, }, },
- [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 339, }, },
- [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 384, }, },
- [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 434, }, },
- [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 492, }, },
- [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 557, }, },
- [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 630, }, },
- [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 713, }, },
- [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 807, }, },
+ [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
},
statSets = {
[1] = {
- label = "Projectile",
- baseEffectiveness = 1.6699999570847,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "frost_bolt",
+ label = "Buff",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "galvanic_field",
+ statMap = {
+ ["galvanic_field_shock_chance_+%_final"] = {
+ mod("EnemyShockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }),
+ },
+ },
baseFlags = {
- spell = true,
area = true,
duration = true,
- projectile = true,
+ chaining = true,
},
constantStats = {
- { "base_skill_effect_duration", 4000 },
- { "active_skill_base_secondary_area_of_effect_radius", 9 },
+ { "galvanic_field_shock_chance_+%_final", 30 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "chill_effect_+%", 100 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "base_is_projectile",
- "always_pierce",
- "projectile_uses_contact_position",
- "maintain_projectile_direction_when_using_contact_position",
"can_perform_skill_while_moving",
+ "base_deal_no_damage",
},
levels = {
- [1] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 19, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 34, 50, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 78, 118, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 101, 151, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 114, 171, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 129, 193, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 164, 245, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 184, 276, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 207, 310, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 232, 349, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 261, 392, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 329, 493, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 369, 553, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 414, 621, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 464, 697, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 521, 782, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 585, 878, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 657, 986, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 738, 1107, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 830, 1244, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 933, 1399, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1049, 1574, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1181, 1772, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1330, 1996, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1499, 2249, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
[2] = {
- label = "Explosion",
- baseEffectiveness = 2.5,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0060000000521541,
- statDescriptionScope = "frost_bolt",
+ label = "Orb",
+ baseEffectiveness = 0.55000001192093,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "galvanic_field",
+ statMap = {
+ ["base_galvanic_field_beam_delay_ms"] = {
+ skill("hitTimeOverride", nil),
+ div = 1000,
+ },
+ },
baseFlags = {
spell = true,
- area = true,
- projectile = true,
+ duration = true,
},
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_base_area_of_effect_radius", 24 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 6000 },
+ { "base_galvanic_field_beam_delay_ms", 600 },
+ { "active_skill_base_area_of_effect_radius", 19 },
+ { "active_skill_base_secondary_area_of_effect_radius", 35 },
+ { "galvanic_field_maximum_number_of_spheres", 1 },
+ { "number_of_chains", 3 },
+ { "galvanic_field_retargeting_delay_ms", 10 },
},
- stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "base_is_projectile",
- "projectile_uses_contact_position",
- "maintain_projectile_direction_when_using_contact_position",
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
"can_perform_skill_while_moving",
- "is_area_damage",
+ "never_shock",
+ "skill_can_add_multiple_charges_per_action",
+ "base_skill_show_average_damage_instead_of_dps",
+ "display_statset_hide_usage_stats",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
},
levels = {
- [1] = { 0, 0, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 19, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 24, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 29, 44, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 49, 73, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 57, 86, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 66, 99, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 87, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 98, 148, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 112, 167, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 126, 189, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 142, 213, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 160, 240, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 180, 270, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 201, 302, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 226, 338, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 252, 378, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 282, 423, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 314, 472, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 351, 526, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 391, 587, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 436, 654, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 485, 728, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 541, 811, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 602, 903, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 671, 1006, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 747, 1121, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 832, 1249, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 927, 1391, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 1034, 1550, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 1152, 1728, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 1285, 1927, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 1433, 2150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 1600, 2400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 1786, 2680, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 3, 1, 3, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 4, 1, 4, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1, 6, 1, 6, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1, 8, 1, 8, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1, 11, 1, 11, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1, 14, 1, 14, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 1, 17, 1, 17, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 1, 21, 1, 21, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 1, 26, 1, 26, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 2, 31, 2, 31, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 2, 37, 2, 37, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 2, 44, 2, 44, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 3, 51, 3, 51, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 3, 59, 3, 59, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 4, 68, 4, 68, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 4, 79, 4, 79, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 5, 91, 5, 91, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 6, 105, 6, 105, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 6, 121, 6, 121, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7, 139, 7, 139, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 8, 159, 8, 159, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 10, 183, 10, 183, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 11, 210, 11, 210, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 13, 242, 13, 242, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 15, 278, 15, 278, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 17, 319, 17, 319, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 19, 367, 19, 367, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 22, 422, 22, 422, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 26, 485, 26, 485, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 29, 559, 29, 559, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 34, 644, 34, 644, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 39, 743, 39, 743, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 45, 858, 45, 858, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 52, 992, 52, 992, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 60, 1148, 60, 1148, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 70, 1330, 70, 1330, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 81, 1542, 81, 1542, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 94, 1790, 94, 1790, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 110, 2082, 110, 2082, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 128, 2423, 128, 2423, critChance = 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["FrozenLocusPlayer"] = {
- name = "Frozen Locus",
- baseTypeName = "Frozen Locus",
+skills["GatheringStormPlayer"] = {
+ name = "Gathering Storm",
+ baseTypeName = "Gathering Storm",
color = 3,
- description = "Leap backward and crack the ground with your staff to call forth an Ice Crystal, which creates Chilled Ground around it and can be damaged by you and enemies. If the Crystal is destroyed it causes an icy explosion that deals Attack damage but does not use your weapon's damage. This skill can be used while using other skills.",
- skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NonWeaponAttack] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, },
+ description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing dashes towards the target location, damaging enemies along the way. Releasing with Perfect Timing performs a Lightning-assisted dash that releases shockwaves from enemies you dash through and leaves a trail of Shocked Ground in your wake. This skill cannot be Ancestrally Boosted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.PerfectTiming] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_chill_effect_+%_final", 1 },
+ { "gathering_storm_perfect_aoe_limit", 0.1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, cost = { Mana = 16, }, },
- [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, cost = { Mana = 18, }, },
- [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, cost = { Mana = 22, }, },
- [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, cost = { Mana = 25, }, },
- [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, cost = { Mana = 28, }, },
- [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, cost = { Mana = 31, }, },
- [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, cost = { Mana = 34, }, },
- [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, cost = { Mana = 38, }, },
- [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, cost = { Mana = 42, }, },
- [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, cost = { Mana = 47, }, },
- [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, cost = { Mana = 52, }, },
- [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, cost = { Mana = 57, }, },
- [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, cost = { Mana = 64, }, },
- [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, cost = { Mana = 71, }, },
- [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, cost = { Mana = 78, }, },
- [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 87, }, },
- [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 96, }, },
- [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 107, }, },
- [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 118, }, },
- [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 131, }, },
- [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 145, }, },
- [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 161, }, },
- [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 178, }, },
- [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 198, }, },
- [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 219, }, },
- [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 243, }, },
- [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 269, }, },
- [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 298, }, },
- [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 331, }, },
- [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 366, }, },
- [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 406, }, },
- [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 450, }, },
- [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 499, }, },
- [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 553, }, },
- [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 612, }, },
- [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, cost = { Mana = 679, }, },
+ [1] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { ManaPerMinute = 474, }, },
+ [2] = { baseMultiplier = 1.32, levelRequirement = 3, cost = { ManaPerMinute = 548, }, },
+ [3] = { baseMultiplier = 1.45, levelRequirement = 6, cost = { ManaPerMinute = 628, }, },
+ [4] = { baseMultiplier = 1.59, levelRequirement = 10, cost = { ManaPerMinute = 713, }, },
+ [5] = { baseMultiplier = 1.72, levelRequirement = 14, cost = { ManaPerMinute = 805, }, },
+ [6] = { baseMultiplier = 1.85, levelRequirement = 18, cost = { ManaPerMinute = 903, }, },
+ [7] = { baseMultiplier = 1.99, levelRequirement = 22, cost = { ManaPerMinute = 1008, }, },
+ [8] = { baseMultiplier = 2.12, levelRequirement = 26, cost = { ManaPerMinute = 1120, }, },
+ [9] = { baseMultiplier = 2.24, levelRequirement = 31, cost = { ManaPerMinute = 1239, }, },
+ [10] = { baseMultiplier = 2.37, levelRequirement = 36, cost = { ManaPerMinute = 1367, }, },
+ [11] = { baseMultiplier = 2.51, levelRequirement = 41, cost = { ManaPerMinute = 1503, }, },
+ [12] = { baseMultiplier = 2.66, levelRequirement = 46, cost = { ManaPerMinute = 1648, }, },
+ [13] = { baseMultiplier = 2.82, levelRequirement = 52, cost = { ManaPerMinute = 1803, }, },
+ [14] = { baseMultiplier = 2.99, levelRequirement = 58, cost = { ManaPerMinute = 1968, }, },
+ [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { ManaPerMinute = 2143, }, },
+ [16] = { baseMultiplier = 3.38, levelRequirement = 66, cost = { ManaPerMinute = 2330, }, },
+ [17] = { baseMultiplier = 3.59, levelRequirement = 72, cost = { ManaPerMinute = 2529, }, },
+ [18] = { baseMultiplier = 3.82, levelRequirement = 78, cost = { ManaPerMinute = 2740, }, },
+ [19] = { baseMultiplier = 4.07, levelRequirement = 84, cost = { ManaPerMinute = 2964, }, },
+ [20] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { ManaPerMinute = 3203, }, },
+ [21] = { baseMultiplier = 4.64, levelRequirement = 90, cost = { ManaPerMinute = 3456, }, },
+ [22] = { baseMultiplier = 4.94, levelRequirement = 90, cost = { ManaPerMinute = 3725, }, },
+ [23] = { baseMultiplier = 5.27, levelRequirement = 90, cost = { ManaPerMinute = 4011, }, },
+ [24] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { ManaPerMinute = 4314, }, },
+ [25] = { baseMultiplier = 6, levelRequirement = 90, cost = { ManaPerMinute = 4635, }, },
+ [26] = { baseMultiplier = 6.4, levelRequirement = 90, cost = { ManaPerMinute = 4976, }, },
+ [27] = { baseMultiplier = 6.83, levelRequirement = 90, cost = { ManaPerMinute = 5337, }, },
+ [28] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { ManaPerMinute = 5719, }, },
+ [29] = { baseMultiplier = 7.77, levelRequirement = 90, cost = { ManaPerMinute = 6125, }, },
+ [30] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 6554, }, },
+ [31] = { baseMultiplier = 8.84, levelRequirement = 90, cost = { ManaPerMinute = 7009, }, },
+ [32] = { baseMultiplier = 9.42, levelRequirement = 90, cost = { ManaPerMinute = 7490, }, },
+ [33] = { baseMultiplier = 10.05, levelRequirement = 90, cost = { ManaPerMinute = 7999, }, },
+ [34] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { ManaPerMinute = 8538, }, },
+ [35] = { baseMultiplier = 11.44, levelRequirement = 90, cost = { ManaPerMinute = 9108, }, },
+ [36] = { baseMultiplier = 12.2, levelRequirement = 90, cost = { ManaPerMinute = 9711, }, },
+ [37] = { baseMultiplier = 13.01, levelRequirement = 90, cost = { ManaPerMinute = 10348, }, },
+ [38] = { baseMultiplier = 13.88, levelRequirement = 90, cost = { ManaPerMinute = 11022, }, },
+ [39] = { baseMultiplier = 14.8, levelRequirement = 90, cost = { ManaPerMinute = 11734, }, },
+ [40] = { baseMultiplier = 15.79, levelRequirement = 90, cost = { ManaPerMinute = 12487, }, },
},
+ preDamageFunc = function(activeSkill, output)
+ activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime
+ end,
statSets = {
[1] = {
- label = "Crystal",
+ label = "Normal Dash",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "ice_ambush_statset_0",
- statMap = {
- ["frozen_locus_crystal_display_stat"] = {
- -- Display Only
- },
- },
+ statDescriptionScope = "gathering_storm_statset_0",
baseFlags = {
- duration = true,
+ attack = true,
+ area = true,
+ melee = true,
+ channelRelease = true,
},
constantStats = {
- { "base_skill_effect_duration", 6000 },
- { "attack_maximum_action_distance_+", 15 },
- { "base_number_of_frozen_locus_allowed", 1 },
+ { "active_skill_override_turn_duration_ms", 360 },
+ { "perfect_strike_timing_window_base_ms", 300 },
+ { "base_melee_dash_range", 35 },
+ { "attack_maximum_action_distance_+", 20 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "channel_start_lock_cancelling_of_attack_time_%", 50 },
+ { "total_attack_time_+_ms", 800 },
+ { "gathering_storm_perfect_aoe_limit", 8 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
+ { "channel_end_duration_as_%_of_attack_time", 85 },
+ { "melee_range_+", 10 },
},
stats = {
- "frost_wall_maximum_life",
- "frost_wall_damage_taken_+%_final_from_own_team",
- "frozen_locus_crystal_display_stat",
- "active_skill_is_ignored_by_staggering_palm",
- "active_skill_is_ignored_by_charged_staff",
+ "is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
- "frozen_locus_stat_suppression",
- "base_deal_no_damage",
- "active_skill_is_ignored_by_mantra_of_destruction",
- "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
+ "quality_display_gathering_storm_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 43, 100, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 54, 75, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 68, 50, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 94, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 122, -32, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 151, -52, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 184, -61, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 220, -66, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 274, -70, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 331, -73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 396, -75, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 468, -77, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 569, -78, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 684, -78, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 817, -79, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 965, -79, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 1138, -79, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 1364, -79, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 1364, -82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 1364, -84, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1364, -85, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
[2] = {
- label = "Chilled Ground",
+ label = "Perfect Dash",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "ice_ambush_statset_1",
+ statDescriptionScope = "gathering_storm_statset_1",
baseFlags = {
+ attack = true,
area = true,
- duration = true,
+ melee = true,
+ channelRelease = true,
},
constantStats = {
- { "base_skill_effect_duration", 6000 },
- { "attack_maximum_action_distance_+", 15 },
- { "base_number_of_frozen_locus_allowed", 1 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
- { "active_skill_base_area_of_effect_radius", 12 },
- { "active_skill_ground_effect_area_of_effect_+%_final_per_second", 30 },
- { "active_skill_ground_effect_area_of_effect_+%_final_per_second_max", 150 },
+ { "active_skill_override_turn_duration_ms", 360 },
+ { "perfect_strike_timing_window_base_ms", 300 },
+ { "base_melee_dash_range", 35 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "channel_start_lock_cancelling_of_attack_time_%", 50 },
+ { "total_attack_time_+_ms", 800 },
+ { "gathering_storm_perfect_aoe_limit", 8 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
+ { "channel_end_duration_as_%_of_attack_time", 85 },
+ { "melee_range_+", 10 },
+ { "base_melee_dash_range", 25 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 50 },
+ { "base_skill_effect_duration", 5000 },
},
stats = {
- "frost_wall_maximum_life",
- "frost_wall_damage_taken_+%_final_from_own_team",
- "frozen_locus_crystal_display_stat",
- "active_skill_is_ignored_by_staggering_palm",
- "active_skill_is_ignored_by_charged_staff",
+ "is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
- "frozen_locus_stat_suppression",
- "active_skill_is_ignored_by_mantra_of_destruction",
- "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
- "display_fake_attack_hit_chill",
+ "quality_display_gathering_storm_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "display_statset_hide_usage_stats",
+ "perfectly_timed",
},
levels = {
- [1] = { 43, 100, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [1] = { baseMultiplier = 2.8, actorLevel = 1, },
+ [2] = { baseMultiplier = 3.08, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 3.39, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 3.7, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 4.01, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 4.33, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 4.65, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 4.95, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 5.23, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 5.53, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 5.86, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 6.2, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 6.58, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 6.98, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 7.41, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 7.88, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 8.38, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 8.92, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 9.51, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 10.14, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 10.82, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 11.54, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 12.31, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 13.13, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 14, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 14.93, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 15.93, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 16.99, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 18.12, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 19.33, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 20.62, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 21.99, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 23.45, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 25.02, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 26.68, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 28.46, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 30.36, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 32.38, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 34.54, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 36.84, actorLevel = 288.29998779297, },
},
},
- }
-}
-skills["FrozenLocusExplodePlayer"] = {
- name = "Crystal Explosion",
- hidden = true,
- skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UseGlobalStats] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Cold] = true, [SkillType.Nova] = true, [SkillType.NoAttackOrCastTime] = true, },
- castTime = 1,
- qualityStats = {
- },
- levels = {
- [1] = { critChance = 13, baseMultiplier = 2.5, levelRequirement = 0, },
- [2] = { critChance = 13, baseMultiplier = 2.76, levelRequirement = 0, },
- [3] = { critChance = 13, baseMultiplier = 3.04, levelRequirement = 0, },
- [4] = { critChance = 13, baseMultiplier = 3.34, levelRequirement = 0, },
- [5] = { critChance = 13, baseMultiplier = 3.63, levelRequirement = 0, },
- [6] = { critChance = 13, baseMultiplier = 3.93, levelRequirement = 0, },
- [7] = { critChance = 13, baseMultiplier = 4.24, levelRequirement = 0, },
- [8] = { critChance = 13, baseMultiplier = 4.54, levelRequirement = 0, },
- [9] = { critChance = 13, baseMultiplier = 4.83, levelRequirement = 0, },
- [10] = { critChance = 13, baseMultiplier = 5.13, levelRequirement = 0, },
- [11] = { critChance = 13, baseMultiplier = 5.47, levelRequirement = 0, },
- [12] = { critChance = 13, baseMultiplier = 5.83, levelRequirement = 0, },
- [13] = { critChance = 13, baseMultiplier = 6.23, levelRequirement = 0, },
- [14] = { critChance = 13, baseMultiplier = 6.66, levelRequirement = 0, },
- [15] = { critChance = 13, baseMultiplier = 7.12, levelRequirement = 0, },
- [16] = { critChance = 13, baseMultiplier = 7.64, levelRequirement = 0, },
- [17] = { critChance = 13, baseMultiplier = 8.19, levelRequirement = 0, },
- [18] = { critChance = 13, baseMultiplier = 8.81, levelRequirement = 0, },
- [19] = { critChance = 13, baseMultiplier = 9.47, levelRequirement = 0, },
- [20] = { critChance = 13, baseMultiplier = 10.21, levelRequirement = 0, },
- [21] = { critChance = 13, baseMultiplier = 11, levelRequirement = 0, },
- [22] = { critChance = 13, baseMultiplier = 11.85, levelRequirement = 0, },
- [23] = { critChance = 13, baseMultiplier = 12.76, levelRequirement = 0, },
- [24] = { critChance = 13, baseMultiplier = 13.75, levelRequirement = 0, },
- [25] = { critChance = 13, baseMultiplier = 14.81, levelRequirement = 0, },
- [26] = { critChance = 13, baseMultiplier = 15.96, levelRequirement = 0, },
- [27] = { critChance = 13, baseMultiplier = 17.19, levelRequirement = 0, },
- [28] = { critChance = 13, baseMultiplier = 18.52, levelRequirement = 0, },
- [29] = { critChance = 13, baseMultiplier = 19.95, levelRequirement = 0, },
- [30] = { critChance = 13, baseMultiplier = 21.49, levelRequirement = 0, },
- [31] = { critChance = 13, baseMultiplier = 23.15, levelRequirement = 0, },
- [32] = { critChance = 13, baseMultiplier = 24.94, levelRequirement = 0, },
- [33] = { critChance = 13, baseMultiplier = 26.87, levelRequirement = 0, },
- [34] = { critChance = 13, baseMultiplier = 28.95, levelRequirement = 0, },
- [35] = { critChance = 13, baseMultiplier = 31.18, levelRequirement = 0, },
- [36] = { critChance = 13, baseMultiplier = 33.59, levelRequirement = 0, },
- [37] = { critChance = 13, baseMultiplier = 36.19, levelRequirement = 0, },
- [38] = { critChance = 13, baseMultiplier = 38.99, levelRequirement = 0, },
- [39] = { critChance = 13, baseMultiplier = 42, levelRequirement = 0, },
- [40] = { critChance = 13, baseMultiplier = 45.25, levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "Explosion",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "ice_ambush_explode",
+ [3] = {
+ label = "Shockwave",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "gathering_storm_statset_2",
baseFlags = {
+ attack = true,
area = true,
- nonWeaponAttack = true,
- hit = true,
+ melee = true,
+ channelRelease = true,
+ duration = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 24 },
- { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 },
+ { "active_skill_override_turn_duration_ms", 360 },
+ { "perfect_strike_timing_window_base_ms", 300 },
+ { "base_melee_dash_range", 35 },
+ { "attack_maximum_action_distance_+", 20 },
+ { "channel_start_lock_cancelling_of_attack_time_%", 50 },
+ { "total_attack_time_+_ms", 800 },
+ { "gathering_storm_perfect_aoe_limit", 8 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
+ { "channel_end_duration_as_%_of_attack_time", 85 },
+ { "melee_range_+", 10 },
+ { "active_skill_base_area_of_effect_radius", 22 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
},
stats = {
- "main_hand_weapon_minimum_cold_damage",
- "main_hand_weapon_maximum_cold_damage",
"is_area_damage",
- "triggered_by_frozen_locus_destroy",
- "replace_main_hand_unarmed_attack_stats_with_quarterstaff_type",
- "triggerable_in_any_set",
+ "base_skill_show_average_damage_instead_of_dps",
+ "quality_display_gathering_storm_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
+ "perfectly_timed",
},
levels = {
- [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 1.2, actorLevel = 1, },
+ [2] = { baseMultiplier = 1.32, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.45, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.59, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.72, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.85, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.99, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.12, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.24, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.37, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 2.51, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 2.66, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 2.82, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 2.99, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 3.38, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 3.59, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 3.82, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 4.07, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 4.35, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 4.64, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 4.94, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 5.27, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 5.63, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 6, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 6.4, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 6.83, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 7.28, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 7.77, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 8.28, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 8.84, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 9.42, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 10.05, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 10.72, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 11.44, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 12.2, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 13.01, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 13.88, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 14.8, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 15.79, actorLevel = 288.29998779297, },
},
},
}
}
-skills["GalvanicFieldPlayer"] = {
- name = "Galvanic Field",
- baseTypeName = "Galvanic Field",
- fromItem = true,
+skills["GhostDancePlayer"] = {
+ name = "Ghost Dance",
+ baseTypeName = "Ghost Dance",
color = 3,
- description = "Gain a Buff that boosts your Shock chance. Shocking an enemy consumes the Buff to attach an Orb of electricity to that enemy. The Orb fires bolts of electricity at nearby enemies until it expires.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, },
- castTime = 0.5,
+ description = "While active, causes you to periodically gain Ghost Shrouds. If you are Hit while you have a Ghost Shroud, it is immediately consumed to recover Energy Shield based on your Evasion.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0,
qualityStats = {
- { "base_galvanic_field_beam_delay_ms", -0.5 },
+ { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 0.1 },
},
levels = {
- [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Galvanic Field",
- baseEffectiveness = 0.33700001239777,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "skill_stat_descriptions",
- statMap = {
- ["galvanic_field_retargeting_delay_ms"] = {
- skill("hitTimeOverride", nil),
- div = 1000,
- },
- ["base_chance_to_shock_%_from_skill"] = {
- mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Galvanic Field" }),
- },
- },
+ label = "Ghost Dance",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ghost_dance",
baseFlags = {
- area = true,
duration = true,
- chaining = true,
},
constantStats = {
- { "base_skill_effect_duration", 6000 },
- { "base_chance_to_shock_%_from_skill", 20 },
- { "base_galvanic_field_beam_delay_ms", 100 },
- { "galvanic_field_maximum_number_of_spheres", 1 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 5 },
},
stats = {
- "spell_minimum_base_lightning_damage",
- "spell_maximum_base_lightning_damage",
- "galvanic_field_retargeting_delay_ms",
- "never_shock",
- "skill_can_add_multiple_charges_per_action",
- "can_perform_skill_while_moving",
+ "base_skill_effect_duration",
+ "ghost_dance_max_stacks",
+ "base_deal_no_damage",
+ "quality_display_ghost_dance_is_gem",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
},
levels = {
- [1] = { 1, 2, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 1, 3, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1, 5, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1, 6, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 1, 8, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 1, 10, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 1, 12, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 1, 14, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 1, 17, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 1, 20, 700, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 1, 23, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 1, 27, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 2, 31, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 2, 36, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 2, 41, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 2, 47, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 3, 54, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 3, 61, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 4, 70, 600, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 4, 80, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 5, 91, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 5, 103, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 6, 117, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7, 133, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 8, 151, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 9, 172, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 10, 195, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 12, 221, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 13, 252, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 15, 286, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 17, 325, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 19, 370, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 22, 422, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 25, 481, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 29, 548, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 33, 626, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 38, 715, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 43, 817, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 49, 935, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 56, 1071, 500, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 4000, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3950, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 3900, 3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 3850, 3, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 3800, 3, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 3750, 3, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 3700, 3, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 3650, 3, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 3600, 3, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3550, 4, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 3500, 4, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3450, 4, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 3400, 4, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 3350, 4, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 3300, 4, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 3250, 4, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 3200, 4, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 3150, 5, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 3100, 5, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 3050, 5, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 3000, 5, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 2950, 5, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 2900, 5, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 2850, 5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 2800, 5, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 2750, 6, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 2700, 6, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2650, 6, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 2600, 6, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 2550, 6, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 2500, 6, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2450, 6, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2400, 6, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2350, 6, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2300, 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2250, 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2200, 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2150, 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2100, 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2050, 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["GatheringStormPlayer"] = {
- name = "Gathering Storm",
- baseTypeName = "Gathering Storm",
+skills["GlacialCascadePlayer"] = {
+ name = "Glacial Cascade",
+ baseTypeName = "Glacial Cascade",
color = 3,
- description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing dashes towards the target location, damaging enemies along the way. Releasing with perfect timing performs a Lightning-infused dash that releases shockwaves from enemies you dash through and leaves a trail of Shocked Ground in your wake. This skill cannot be Ancestrally Boosted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.PerfectTiming] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.QuarterstaffSkill] = true, },
+ description = "Sweep your Quarterstaff upwards, releasing an icy fissure which deals damage in a series of bursts culminating in a large spike. Frozen enemies hit by the final spike are dealt heavy damage but the Freeze is Consumed. Ice Crystals hit by the final spike explode.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "gathering_storm_perfect_aoe_limit", 0.1 },
+ { "active_skill_base_physical_damage_%_to_gain_as_cold", 0.75 },
},
levels = {
- [1] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { ManaPerMinute = 489, }, },
- [2] = { baseMultiplier = 1.32, levelRequirement = 3, cost = { ManaPerMinute = 541, }, },
- [3] = { baseMultiplier = 1.45, levelRequirement = 6, cost = { ManaPerMinute = 600, }, },
- [4] = { baseMultiplier = 1.59, levelRequirement = 10, cost = { ManaPerMinute = 665, }, },
- [5] = { baseMultiplier = 1.72, levelRequirement = 14, cost = { ManaPerMinute = 737, }, },
- [6] = { baseMultiplier = 1.85, levelRequirement = 18, cost = { ManaPerMinute = 816, }, },
- [7] = { baseMultiplier = 1.99, levelRequirement = 22, cost = { ManaPerMinute = 905, }, },
- [8] = { baseMultiplier = 2.12, levelRequirement = 26, cost = { ManaPerMinute = 1003, }, },
- [9] = { baseMultiplier = 2.24, levelRequirement = 31, cost = { ManaPerMinute = 1111, }, },
- [10] = { baseMultiplier = 2.37, levelRequirement = 36, cost = { ManaPerMinute = 1231, }, },
- [11] = { baseMultiplier = 2.51, levelRequirement = 41, cost = { ManaPerMinute = 1364, }, },
- [12] = { baseMultiplier = 2.66, levelRequirement = 46, cost = { ManaPerMinute = 1512, }, },
- [13] = { baseMultiplier = 2.82, levelRequirement = 52, cost = { ManaPerMinute = 1675, }, },
- [14] = { baseMultiplier = 2.99, levelRequirement = 58, cost = { ManaPerMinute = 1857, }, },
- [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { ManaPerMinute = 2057, }, },
- [16] = { baseMultiplier = 3.38, levelRequirement = 66, cost = { ManaPerMinute = 2280, }, },
- [17] = { baseMultiplier = 3.59, levelRequirement = 72, cost = { ManaPerMinute = 2526, }, },
- [18] = { baseMultiplier = 3.82, levelRequirement = 78, cost = { ManaPerMinute = 2799, }, },
- [19] = { baseMultiplier = 4.07, levelRequirement = 84, cost = { ManaPerMinute = 3102, }, },
- [20] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { ManaPerMinute = 3438, }, },
- [21] = { baseMultiplier = 4.64, levelRequirement = 90, cost = { ManaPerMinute = 3809, }, },
- [22] = { baseMultiplier = 4.94, levelRequirement = 90, cost = { ManaPerMinute = 4221, }, },
- [23] = { baseMultiplier = 5.27, levelRequirement = 90, cost = { ManaPerMinute = 4677, }, },
- [24] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { ManaPerMinute = 5183, }, },
- [25] = { baseMultiplier = 6, levelRequirement = 90, cost = { ManaPerMinute = 5743, }, },
- [26] = { baseMultiplier = 6.4, levelRequirement = 90, cost = { ManaPerMinute = 6364, }, },
- [27] = { baseMultiplier = 6.83, levelRequirement = 90, cost = { ManaPerMinute = 7052, }, },
- [28] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { ManaPerMinute = 7815, }, },
- [29] = { baseMultiplier = 7.77, levelRequirement = 90, cost = { ManaPerMinute = 8660, }, },
- [30] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 9596, }, },
- [31] = { baseMultiplier = 8.84, levelRequirement = 90, cost = { ManaPerMinute = 10633, }, },
- [32] = { baseMultiplier = 9.42, levelRequirement = 90, cost = { ManaPerMinute = 11783, }, },
- [33] = { baseMultiplier = 10.05, levelRequirement = 90, cost = { ManaPerMinute = 13056, }, },
- [34] = { baseMultiplier = 10.72, levelRequirement = 90, cost = { ManaPerMinute = 14468, }, },
- [35] = { baseMultiplier = 11.44, levelRequirement = 90, cost = { ManaPerMinute = 16032, }, },
- [36] = { baseMultiplier = 12.2, levelRequirement = 90, cost = { ManaPerMinute = 17765, }, },
- [37] = { baseMultiplier = 13.01, levelRequirement = 90, cost = { ManaPerMinute = 19685, }, },
- [38] = { baseMultiplier = 13.88, levelRequirement = 90, cost = { ManaPerMinute = 21813, }, },
- [39] = { baseMultiplier = 14.8, levelRequirement = 90, cost = { ManaPerMinute = 24171, }, },
- [40] = { baseMultiplier = 15.79, levelRequirement = 90, cost = { ManaPerMinute = 26784, }, },
+ [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 9, }, },
+ [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 10, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 12, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 29, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 32, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 35, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 38, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 42, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 45, }, },
+ [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 49, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 54, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 58, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 63, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 68, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 73, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 79, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 85, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 91, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 98, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 105, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 112, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 120, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 129, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 138, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 147, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 157, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 168, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 179, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 191, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 204, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 217, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 231, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 246, }, },
},
- preDamageFunc = function(activeSkill, output)
- activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime
- end,
statSets = {
[1] = {
- label = "Normal Dash",
+ label = "Wave",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gathering_storm_statset_0",
+ statDescriptionScope = "glacial_cascade_attack",
baseFlags = {
attack = true,
area = true,
- melee = true,
- channelRelease = true,
},
constantStats = {
- { "active_skill_override_turn_duration_ms", 360 },
- { "perfect_strike_timing_window_base_ms", 300 },
- { "base_melee_dash_range", 35 },
- { "attack_maximum_action_distance_+", 20 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "channel_start_lock_cancelling_of_attack_time_%", 50 },
- { "total_attack_time_+_ms", 800 },
- { "gathering_storm_perfect_aoe_limit", 8 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
- { "channel_end_duration_as_%_of_attack_time", 85 },
- { "melee_range_+", 10 },
+ { "upheaval_number_of_spikes", 8 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
+ { "active_skill_base_area_of_effect_radius", 6 },
+ { "cascade_attack_radius_per_stage_+1_per_100", 30 },
+ { "cascade_attack_base_total_distance", 48 },
+ { "cascade_attack_starting_distance_offset", 6 },
+ { "cascade_attack_ease_in_exponent_%", 125 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
+ "never_freeze",
"is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "quality_display_gathering_storm_is_gem",
+ "can_perform_skill_while_moving",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9034,170 +10762,92 @@ skills["GatheringStormPlayer"] = {
},
},
[2] = {
- label = "Perfect Dash",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gathering_storm_statset_1",
- baseFlags = {
- attack = true,
- area = true,
- melee = true,
- channelRelease = true,
- },
- baseMods = {
- mod("Condition:PerfectTiming", "FLAG", true),
- },
- constantStats = {
- { "active_skill_override_turn_duration_ms", 360 },
- { "perfect_strike_timing_window_base_ms", 300 },
- { "base_melee_dash_range", 35 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "channel_start_lock_cancelling_of_attack_time_%", 50 },
- { "total_attack_time_+_ms", 800 },
- { "gathering_storm_perfect_aoe_limit", 8 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
- { "channel_end_duration_as_%_of_attack_time", 85 },
- { "melee_range_+", 10 },
- { "base_melee_dash_range", 25 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 50 },
- { "base_skill_effect_duration", 5000 },
- },
- stats = {
- "is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "quality_display_gathering_storm_is_gem",
- "display_statset_hide_usage_stats",
- },
- levels = {
- [1] = { baseMultiplier = 2.8, actorLevel = 1, },
- [2] = { baseMultiplier = 3.08, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 3.39, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 3.7, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 4.01, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 4.33, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 4.65, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 4.95, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 5.23, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 5.53, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 5.86, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 6.2, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 6.58, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 6.98, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 7.41, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 7.88, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 8.38, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 8.92, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 9.51, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 10.14, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 10.82, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 11.54, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 12.31, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 13.13, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 14, actorLevel = 136.875, },
- [26] = { baseMultiplier = 14.93, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 15.93, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 16.99, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 18.12, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 19.33, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 20.62, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 21.99, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 23.45, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 25.02, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 26.68, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 28.46, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 30.36, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 32.38, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 34.54, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 36.84, actorLevel = 288.29998779297, },
- },
- },
- [3] = {
- label = "Shockwave",
+ label = "Final Burst",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gathering_storm_statset_2",
+ statDescriptionScope = "glacial_cascade_attack",
baseFlags = {
attack = true,
area = true,
- melee = true,
- channelRelease = true,
- duration = true,
},
constantStats = {
- { "active_skill_override_turn_duration_ms", 360 },
- { "perfect_strike_timing_window_base_ms", 300 },
- { "base_melee_dash_range", 35 },
- { "attack_maximum_action_distance_+", 20 },
- { "channel_start_lock_cancelling_of_attack_time_%", 50 },
- { "total_attack_time_+_ms", 800 },
- { "gathering_storm_perfect_aoe_limit", 8 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
- { "channel_end_duration_as_%_of_attack_time", 85 },
- { "melee_range_+", 10 },
- { "active_skill_base_area_of_effect_radius", 22 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
+ { "active_skill_base_area_of_effect_radius", 6 },
+ { "cascade_attack_radius_per_stage_+1_per_100", 30 },
+ { "cascade_attack_starting_distance_offset", 6 },
+ { "cascade_attack_ease_in_exponent_%", 125 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "glacial_cascade_attack_final_spike_rect_length", 20 },
+ { "active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final", 425 },
+ { "active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final", 250 },
+ { "active_skill_base_area_of_effect_radius", 3 },
},
stats = {
+ "never_freeze",
"is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "quality_display_gathering_storm_is_gem",
+ "can_perform_skill_while_moving",
+ "cannot_knockback",
+ "destroy_frost_wall_segment_on_hit",
"display_statset_hide_usage_stats",
},
levels = {
[1] = { baseMultiplier = 1.2, actorLevel = 1, },
[2] = { baseMultiplier = 1.32, actorLevel = 3.4519999027252, },
[3] = { baseMultiplier = 1.45, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.59, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.72, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.85, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.99, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 2.12, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.24, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.37, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.51, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.66, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.82, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 2.99, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 3.38, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 3.59, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.82, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 4.07, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 4.35, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 4.64, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 4.94, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 5.27, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 5.63, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 6, actorLevel = 136.875, },
- [26] = { baseMultiplier = 6.4, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 6.83, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 7.28, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 7.77, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 8.28, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 8.84, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 9.42, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 10.05, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 10.72, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 11.44, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 12.2, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 13.01, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 13.88, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 14.8, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 15.79, actorLevel = 288.29998779297, },
+ [4] = { baseMultiplier = 1.58, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.71, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.84, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.97, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.08, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.19, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.3, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 2.41, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 2.53, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 2.66, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 2.79, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 2.93, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 3.08, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 3.23, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 3.39, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 3.56, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 3.74, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 3.93, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 4.13, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 4.33, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 4.55, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 4.78, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 5.02, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 5.27, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 5.53, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 5.81, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 6.1, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 6.4, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 6.72, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 7.06, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 7.41, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 7.78, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 8.17, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 8.58, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 9.01, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 9.46, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 9.93, actorLevel = 288.29998779297, },
},
},
}
}
-skills["GhostDancePlayer"] = {
- name = "Ghost Dance",
- baseTypeName = "Ghost Dance",
+skills["GrimFeastPlayer"] = {
+ name = "Grim Feast",
+ baseTypeName = "Grim Feast",
color = 3,
- description = "While active, causes you to periodically gain Ghost Shrouds. If you are Hit while you have a Ghost Shroud, it is immediately consumed to recover Energy Shield based on your Evasion.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, },
+ description = "While active, your Reviving Minions store a percentage of their maximum Life in a collectible Grim Remnant on death. Using Grim Resurrection Consumes the Life you've collected to Revive up to that much total Life of dead Minions.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AffectsPresence] = true, [SkillType.RemnantCannotBeShared] = true, },
castTime = 0,
qualityStats = {
- { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 0.1 },
+ { "grim_remnant_health_stored_in_globe_%", 0.25 },
},
levels = {
- [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [1] = { levelRequirement = 0, },
[2] = { spiritReservationFlat = 30, levelRequirement = 3, },
[3] = { spiritReservationFlat = 30, levelRequirement = 6, },
[4] = { spiritReservationFlat = 30, levelRequirement = 10, },
@@ -9240,146 +10890,253 @@ skills["GhostDancePlayer"] = {
},
statSets = {
[1] = {
- label = "Ghost Dance",
+ label = "Grim Feast",
+ baseEffectiveness = 12,
+ incrementalEffectiveness = 4,
+ damageIncrementalEffectiveness = 0.013500000350177,
+ statDescriptionScope = "grim_feast",
+ baseFlags = {
+ },
+ constantStats = {
+ { "grim_remnant_chance_to_spawn_orb_on_minion_death_in_presence_%", 100 },
+ { "grim_remnant_health_stored_in_globe_%", 35 },
+ { "base_remnant_duration_ms", 8000 },
+ },
+ stats = {
+ "grim_remnant_max_health_stored",
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { 47, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 521, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1212, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 2019, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 2961, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4060, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 5343, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6842, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 8594, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 10643, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 13043, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 15856, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 19156, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 23034, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 27595, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 32967, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 39303, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 46787, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 55638, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 66124, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 78565, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 93350, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 110949, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 131934, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 156999, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 186990, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 222941, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 266116, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 318063, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 380686, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 456324, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 547864, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 658872, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 793763, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 958014, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1158435, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1403508, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1703828, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2072646, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2526581, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["GrimFeastResummonPlayer"] = {
+ name = "Grim Resurrection",
+ hidden = true,
+ description = "Consumes stored Minion Life to Revive your Minions. Revives as many Minions as possible with total Life equal to or less than the Life stored by Grim Feast, prioritising those with higher maximum Life.",
+ skillTypes = { [SkillType.Spell] = true, },
+ castTime = 0.4,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Grim Resurrection",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "ghost_dance",
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
- duration = true,
},
constantStats = {
- { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 5 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "base_skill_effect_duration",
- "ghost_dance_max_stacks",
"base_deal_no_damage",
- "quality_display_ghost_dance_is_gem",
+ "can_perform_skill_while_moving",
},
levels = {
- [1] = { 4000, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3950, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 3900, 3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 3850, 3, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 3800, 3, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 3750, 3, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 3700, 3, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 3650, 3, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 3600, 3, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 3550, 4, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 3500, 4, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 3450, 4, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 3400, 4, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 3350, 4, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 3300, 4, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 3250, 4, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 3200, 4, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 3150, 5, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 3100, 5, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 3050, 5, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 3000, 5, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 2950, 5, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 2900, 5, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 2850, 5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 2800, 5, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 2750, 6, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 2700, 6, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 2650, 6, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 2600, 6, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 2550, 6, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 2500, 6, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 2450, 6, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 2400, 6, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 2350, 6, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2300, 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2250, 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2200, 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 2150, 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2100, 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2050, 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
}
-skills["GlacialCascadePlayer"] = {
- name = "Glacial Cascade",
- baseTypeName = "Glacial Cascade",
+skills["HandOfChayulaPlayer"] = {
+ name = "Hand of Chayula",
+ baseTypeName = "Hand of Chayula",
color = 3,
- description = "Sweep your Quarterstaff upwards, releasing an icy fissure which deals damage in a series of bursts culminating in a large spike. Frozen enemies hit by the final spike are dealt heavy damage but the Freeze is Consumed. Ice Crystals hit by the final spike explode.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, },
+ description = "Dash to an enemy and Strike them, triggering socketed Marks with increased effect and applying socketed Curses with increased duration.",
+ skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_base_physical_damage_%_to_gain_as_cold", 0.5 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 9, }, },
- [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 10, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 26, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 29, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 33, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 36, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 40, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 44, }, },
- [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 49, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 55, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 61, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 67, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 75, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 83, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 92, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 102, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 113, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 125, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 139, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 154, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 170, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 189, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 209, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 232, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 257, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 285, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 316, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 350, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 388, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 430, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 476, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 528, }, },
+ [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 11, }, },
+ [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 3, cost = { Mana = 13, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 6, cost = { Mana = 15, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 10, cost = { Mana = 17, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.95, levelRequirement = 14, cost = { Mana = 19, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 18, cost = { Mana = 22, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 24, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.16, levelRequirement = 26, cost = { Mana = 27, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 31, cost = { Mana = 30, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 33, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.35, levelRequirement = 41, cost = { Mana = 37, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.41, levelRequirement = 46, cost = { Mana = 40, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.49, levelRequirement = 52, cost = { Mana = 44, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 58, cost = { Mana = 48, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 64, cost = { Mana = 52, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 66, cost = { Mana = 57, }, },
+ [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 72, cost = { Mana = 62, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 78, cost = { Mana = 67, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 84, cost = { Mana = 73, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 79, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 85, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 91, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 98, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 106, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 114, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 122, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 131, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 141, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 151, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 161, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 172, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 184, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 197, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 210, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 90, cost = { Mana = 224, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.56, levelRequirement = 90, cost = { Mana = 239, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 255, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 5.03, levelRequirement = 90, cost = { Mana = 271, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 5.28, levelRequirement = 90, cost = { Mana = 289, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.54, levelRequirement = 90, cost = { Mana = 307, }, },
},
statSets = {
[1] = {
- label = "Wave",
+ label = "Strike",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "glacial_cascade_attack",
+ statDescriptionScope = "hand_of_chayula",
baseFlags = {
attack = true,
+ melee = true,
area = true,
+ unarmed = true,
},
constantStats = {
- { "upheaval_number_of_spikes", 8 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
- { "active_skill_base_area_of_effect_radius", 5 },
- { "cascade_attack_radius_per_stage_+1_per_100", 30 },
- { "cascade_attack_base_total_distance", 48 },
- { "cascade_attack_starting_distance_offset", 6 },
- { "cascade_attack_ease_in_exponent_%", 125 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "melee_conditional_step_distance", 10 },
+ { "base_melee_dash_range", 65 },
+ { "active_skill_base_physical_damage_%_to_convert_to_chaos", 73 },
},
stats = {
- "never_freeze",
+ "global_always_hit",
"is_area_damage",
- "can_perform_skill_while_moving",
+ "base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9424,89 +11181,264 @@ skills["GlacialCascadePlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
- [2] = {
- label = "Final Burst",
+ }
+}
+skills["SupportHandOfChayulaPlayer"] = {
+ name = "SupportHandOfChayulaPlayer",
+ hidden = true,
+ support = true,
+ requireSkillTypes = { SkillType.AppliesCurse, SkillType.Mark, SkillType.OR, },
+ addSkillTypes = { },
+ excludeSkillTypes = { },
+ qualityStats = {
+ { "base_curse_duration_+%", 1 },
+ { "mark_effect_+%", 0.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Support",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "glacial_cascade_attack",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
- attack = true,
- area = true,
},
- constantStats = {
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
- { "active_skill_base_area_of_effect_radius", 5 },
- { "cascade_attack_radius_per_stage_+1_per_100", 30 },
- { "cascade_attack_starting_distance_offset", 6 },
- { "cascade_attack_ease_in_exponent_%", 125 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "glacial_cascade_attack_final_spike_rect_length", 20 },
- { "active_skill_base_area_of_effect_radius", 2 },
- { "active_skill_consume_enemy_freeze_to_gain_damage_+%_final", 350 },
+ stats = {
+ "base_curse_duration_+%",
+ "mark_effect_+%",
+ "triggered_by_hand_of_chayula",
+ },
+ levels = {
+ [1] = { 100, 20, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 100, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 100, 21, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 100, 21, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 100, 22, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 100, 22, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 100, 23, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 100, 23, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 100, 24, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 100, 24, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 100, 25, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 100, 25, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 100, 26, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 100, 26, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 100, 27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 100, 27, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 100, 28, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 100, 28, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 100, 29, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 100, 29, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 100, 30, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 100, 30, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 100, 31, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 100, 31, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 100, 32, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 100, 32, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 100, 33, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 100, 33, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 100, 34, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 100, 34, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 100, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 100, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 100, 36, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 100, 36, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 100, 37, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 100, 37, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 100, 38, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 100, 38, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 100, 39, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 100, 39, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["HeartOfIcePlayer"] = {
+ name = "Heart of Ice",
+ baseTypeName = "Heart of Ice",
+ fromItem = true,
+ color = 3,
+ description = "Chills all enemies in your Presence.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Cold] = true, [SkillType.Spell] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "active_skill_chill_effect_+%_final", 1 },
+ },
+ levels = {
+ [1] = { critChance = 11, levelRequirement = 0, },
+ [2] = { critChance = 11, levelRequirement = 3, },
+ [3] = { critChance = 11, levelRequirement = 6, },
+ [4] = { critChance = 11, levelRequirement = 10, },
+ [5] = { critChance = 11, levelRequirement = 14, },
+ [6] = { critChance = 11, levelRequirement = 18, },
+ [7] = { critChance = 11, levelRequirement = 22, },
+ [8] = { critChance = 11, levelRequirement = 26, },
+ [9] = { critChance = 11, levelRequirement = 31, },
+ [10] = { critChance = 11, levelRequirement = 36, },
+ [11] = { critChance = 11, levelRequirement = 41, },
+ [12] = { critChance = 11, levelRequirement = 46, },
+ [13] = { critChance = 11, levelRequirement = 52, },
+ [14] = { critChance = 11, levelRequirement = 58, },
+ [15] = { critChance = 11, levelRequirement = 64, },
+ [16] = { critChance = 11, levelRequirement = 66, },
+ [17] = { critChance = 11, levelRequirement = 72, },
+ [18] = { critChance = 11, levelRequirement = 78, },
+ [19] = { critChance = 11, levelRequirement = 84, },
+ [20] = { critChance = 11, levelRequirement = 90, },
+ [21] = { critChance = 11, levelRequirement = 90, },
+ [22] = { critChance = 11, levelRequirement = 90, },
+ [23] = { critChance = 11, levelRequirement = 90, },
+ [24] = { critChance = 11, levelRequirement = 90, },
+ [25] = { critChance = 11, levelRequirement = 90, },
+ [26] = { critChance = 11, levelRequirement = 90, },
+ [27] = { critChance = 11, levelRequirement = 90, },
+ [28] = { critChance = 11, levelRequirement = 90, },
+ [29] = { critChance = 11, levelRequirement = 90, },
+ [30] = { critChance = 11, levelRequirement = 90, },
+ [31] = { critChance = 11, levelRequirement = 90, },
+ [32] = { critChance = 11, levelRequirement = 90, },
+ [33] = { critChance = 11, levelRequirement = 90, },
+ [34] = { critChance = 11, levelRequirement = 90, },
+ [35] = { critChance = 11, levelRequirement = 90, },
+ [36] = { critChance = 11, levelRequirement = 90, },
+ [37] = { critChance = 11, levelRequirement = 90, },
+ [38] = { critChance = 11, levelRequirement = 90, },
+ [39] = { critChance = 11, levelRequirement = 90, },
+ [40] = { critChance = 11, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Heart of Ice",
+ baseEffectiveness = 8.3599996566772,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "chilling_aura",
+ baseFlags = {
+ buff = true,
+ aura = true,
+ },
+ constantStats = {
+ { "skill_desired_amount_override", 1 },
},
stats = {
- "never_freeze",
- "is_area_damage",
- "can_perform_skill_while_moving",
- "cannot_knockback",
- "destroy_frost_wall_segment_on_hit",
- "display_statset_hide_usage_stats",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "skill_chill_magnitude_is_aura_magnitude",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { baseMultiplier = 1.2, actorLevel = 1, },
- [2] = { baseMultiplier = 1.32, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.45, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.58, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.71, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.84, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.97, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 2.08, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.19, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.3, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.41, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.53, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.66, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 2.79, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 2.93, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 3.08, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 3.23, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.39, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 3.56, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 3.74, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 3.93, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 4.13, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 4.33, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 4.55, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 4.78, actorLevel = 136.875, },
- [26] = { baseMultiplier = 5.02, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 5.27, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 5.53, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 5.81, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 6.1, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 6.4, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 6.72, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 7.06, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 7.41, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 7.78, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 8.17, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 8.58, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 9.01, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 9.46, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 9.93, actorLevel = 288.29998779297, },
+ [1] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 98, 148, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 144, 217, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 172, 258, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 203, 305, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 239, 359, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 280, 420, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 326, 489, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 378, 567, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 438, 657, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 506, 759, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 583, 875, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 672, 1007, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 773, 1159, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1021, 1531, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1172, 1758, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1346, 2020, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1546, 2319, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1776, 2664, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 2041, 3061, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 2346, 3519, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2699, 4048, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 3106, 4659, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 3577, 5365, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 4123, 6184, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 4756, 7134, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 5492, 8238, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 6348, 9522, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 7346, 11019, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8509, 12764, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 9869, 14803, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 11459, 17188, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 13322, 19983, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 15509, 23263, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["GrimFeastPlayer"] = {
- name = "Grim Feast",
- baseTypeName = "Grim Feast",
+skills["HeraldOfIcePlayer"] = {
+ name = "Herald of Ice",
+ baseTypeName = "Herald of Ice",
color = 3,
- description = "This skill is currently disabled. We will rework and reenable it soon!",
- skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AffectsPresence] = true, },
+ description = "While active, Shattering an enemy with a non-Herald Attack Hit will cause an icy explosion that deals Attack damage to surrounding enemies.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Attack] = true, [SkillType.Herald] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, },
+ weaponTypes = {
+ ["One Handed Mace"] = true,
+ ["Flail"] = true,
+ ["Two Handed Sword"] = true,
+ ["Dagger"] = true,
+ ["Claw"] = true,
+ ["Crossbow"] = true,
+ ["Bow"] = true,
+ ["Spear"] = true,
+ ["Two Handed Axe"] = true,
+ ["Two Handed Mace"] = true,
+ ["One Handed Axe"] = true,
+ ["Staff"] = true,
+ ["One Handed Sword"] = true,
+ },
castTime = 0,
qualityStats = {
- { "dummy_stat_display_nothing", 1 },
+ { "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -9552,14 +11484,20 @@ skills["GrimFeastPlayer"] = {
},
statSets = {
[1] = {
- label = "Grim Feast",
+ label = "Buff",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "grim_feast",
+ statDescriptionScope = "herald_of_ice",
+ statMap = {
+ ["display_herald_of_ice_behaviour"] = {
+ flag("Condition:EnemiesExplode", { type = "GlobalEffect", effectType = "Buff", effectName = "Herald of Ice" }),
+ },
+ },
baseFlags = {
},
stats = {
"base_deal_no_damage",
- "base_skill_disabled",
+ "display_statset_no_hit_damage",
+ "display_herald_of_ice_behaviour",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9604,320 +11542,616 @@ skills["GrimFeastPlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
+ [2] = {
+ label = "Explosion",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "herald_of_ice",
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ },
+ stats = {
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "attack_is_not_melee_override",
+ "skill_can_add_multiple_charges_per_action",
+ "never_freeze",
+ "global_always_hit",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.7, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.85, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.93, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.02, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.1, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.19, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.35, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.53, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.63, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.74, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.86, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.99, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 2.14, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 2.29, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 2.47, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.65, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.86, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 3.08, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 3.32, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 3.57, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 3.85, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 4.15, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 4.47, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 4.81, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 5.18, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 5.59, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 6.02, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 6.48, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 6.98, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 7.52, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 8.1, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 8.73, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 9.41, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 10.13, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 10.92, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 11.76, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 12.67, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["HexblastPlayer"] = {
+ name = "Hexblast",
+ baseTypeName = "Hexblast",
+ color = 3,
+ description = "Detonate a Curse on every enemy in an area, causing explosions of Chaos damage but removing the Curse. Can only detonate Curses for which at least half of the duration has expired.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.DynamicCooldown] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "hexblast_damage_+%_final_per_second_remaining_curse_duration", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 12, }, },
+ [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 14, }, },
+ [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 17, }, },
+ [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 20, }, },
+ [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 26, }, },
+ [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 43, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 49, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 55, }, },
+ [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 61, }, },
+ [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 68, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 76, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 84, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 94, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 104, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 115, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 127, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 140, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 154, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 170, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 187, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 205, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 225, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 247, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 270, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 296, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 324, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 354, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 387, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 422, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 460, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 502, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 547, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 596, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 649, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 706, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 768, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Hexblast",
+ baseEffectiveness = 7.8000001907349,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "hexblast",
+ baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "hexblast_maximum_number_of_explosions", 3 },
+ { "active_skill_base_area_of_effect_radius", 20 },
+ { "active_skill_base_secondary_area_of_effect_radius", 28 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "show_curse_hexblastable",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
+ levels = {
+ [1] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 29, 53, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 39, 73, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 51, 95, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 65, 121, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 80, 149, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 98, 182, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 118, 219, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 140, 261, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 166, 309, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 195, 363, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 266, 494, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 309, 573, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 357, 664, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 413, 767, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 476, 884, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 548, 1018, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 631, 1172, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 725, 1347, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 833, 1547, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 957, 1777, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1099, 2041, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1262, 2344, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1450, 2693, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1666, 3094, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1915, 3557, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 2203, 4091, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 2535, 4709, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 2920, 5423, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 3366, 6251, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 3883, 7211, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 4484, 8327, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 5183, 9625, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 5997, 11137, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 6947, 12901, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8057, 14962, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 9355, 17374, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 10876, 20199, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 12661, 23513, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["HypothermiaPlayer"] = {
+ name = "Hypothermia",
+ baseTypeName = "Hypothermia",
+ color = 3,
+ description = "Curse all targets in an area after a short delay, lowering their Cold Resistance.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.7,
+ qualityStats = {
+ { "curse_effect_+%", 0.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Hypothermia",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "cold_weakness",
+ statMap = {
+ ["base_skill_buff_cold_damage_resistance_%_to_apply"] = {
+ mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }),
+ },
+ },
+ baseFlags = {
+ spell = true,
+ curse = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "curse_delay_duration_ms", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_skill_effect_duration",
+ "active_skill_base_area_of_effect_radius",
+ "base_skill_buff_cold_damage_resistance_%_to_apply",
+ "base_deal_no_damage",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 15, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
}
}
-skills["HandOfChayulaPlayer"] = {
- name = "Hand of Chayula",
- baseTypeName = "Hand of Chayula",
+skills["IceNovaPlayer"] = {
+ name = "Ice Nova",
+ baseTypeName = "Ice Nova",
color = 3,
- description = "Dash to an enemy and Strike them with an unarmed Attack, applying socketed Curses and triggering socketed Marks with reduced effect. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.",
- skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, },
- weaponTypes = {
- ["None"] = true,
- ["Staff"] = true,
- },
+ description = "Conjure a wave of ice in all directions, Knocking Back enemies based on how close they are to you. Casting Ice Nova targeting near a Frostbolt Projectile will cause it to originate from the Frostbolt instead of you. Consumes a Cold Infusion if possible to leave a patch of Chilled Ground.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, [SkillType.CreatesGroundEffect] = true, },
castTime = 1,
qualityStats = {
+ { "active_skill_damage_+%_final_vs_chilled_enemies", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 6, cost = { Mana = 14, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 10, cost = { Mana = 16, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.95, levelRequirement = 14, cost = { Mana = 18, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 22, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.16, levelRequirement = 26, cost = { Mana = 24, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 31, cost = { Mana = 27, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 30, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.35, levelRequirement = 41, cost = { Mana = 33, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.41, levelRequirement = 46, cost = { Mana = 37, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.49, levelRequirement = 52, cost = { Mana = 41, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 58, cost = { Mana = 45, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 64, cost = { Mana = 50, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 66, cost = { Mana = 56, }, },
- [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 72, cost = { Mana = 62, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 78, cost = { Mana = 68, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 84, cost = { Mana = 76, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 84, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 93, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 104, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 115, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 127, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 141, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 156, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 173, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 192, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 213, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 236, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 262, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 290, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 321, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 356, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 90, cost = { Mana = 395, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.56, levelRequirement = 90, cost = { Mana = 437, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 485, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 5.03, levelRequirement = 90, cost = { Mana = 537, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 5.28, levelRequirement = 90, cost = { Mana = 595, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.54, levelRequirement = 90, cost = { Mana = 660, }, },
+ [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 7, }, },
+ [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 8, }, },
+ [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 10, }, },
+ [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 17, }, },
+ [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 20, }, },
+ [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 22, }, },
+ [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 25, }, },
+ [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 28, }, },
+ [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 32, }, },
+ [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 36, }, },
+ [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 40, }, },
+ [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 44, }, },
+ [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 49, }, },
+ [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 55, }, },
+ [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 61, }, },
+ [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 67, }, },
+ [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 74, }, },
+ [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 82, }, },
+ [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 90, }, },
+ [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 99, }, },
+ [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 109, }, },
+ [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 120, }, },
+ [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 131, }, },
+ [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 144, }, },
+ [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 158, }, },
+ [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 173, }, },
+ [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 189, }, },
+ [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 207, }, },
+ [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 226, }, },
+ [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 247, }, },
+ [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 269, }, },
+ [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 294, }, },
+ [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 320, }, },
+ [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 348, }, },
+ [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 379, }, },
+ [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 413, }, },
+ [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 449, }, },
},
statSets = {
[1] = {
- label = "Strike",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "hand_of_chayula",
+ label = "Ice Nova",
+ baseEffectiveness = 1.5199999809265,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0074000000022352,
+ statDescriptionScope = "ice_nova_statset_0",
baseFlags = {
- attack = true,
- melee = true,
+ spell = true,
area = true,
- unarmed = true,
},
constantStats = {
- { "melee_conditional_step_distance", 10 },
- { "base_melee_dash_range", 65 },
- { "additional_base_critical_strike_chance", 900 },
+ { "generic_knockback_+%_final_at_min_distance", 50 },
+ { "generic_knockback_+%_final_at_max_distance", -90 },
+ { "generic_knockback_distance_limit", 20 },
+ { "active_skill_base_area_of_effect_radius", 32 },
+ { "ice_nova_number_of_frost_bolts_to_cast_on", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 8000 },
},
stats = {
- "attack_minimum_added_chaos_damage",
- "attack_maximum_added_chaos_damage",
- "global_always_hit",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "active_skill_hit_damage_freeze_multiplier_+%_final",
+ "active_skill_chill_effect_+%_final",
"is_area_damage",
+ "global_knockback",
+ "can_perform_skill_while_moving",
+ "active_skill_consumes_a_cold_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 13, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 23, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 29, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 35, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 41, 76, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 47, 88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 54, 100, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 61, 113, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 68, 127, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 76, 141, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 84, 156, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 92, 172, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 101, 188, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 110, 204, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 119, 222, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 129, 239, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 139, 258, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 149, 277, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 160, 296, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 170, 317, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 182, 337, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 193, 359, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 205, 380, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 217, 403, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 229, 426, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 242, 449, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 255, 474, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 268, 498, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 282, 524, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 296, 550, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 310, 576, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 325, 603, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 340, 631, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 355, 659, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 371, 688, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 386, 718, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 403, 748, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 6, 8, 100, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 10, 103, 103, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 9, 13, 106, 106, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 17, 109, 109, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, 112, 112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 17, 26, 115, 115, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 31, 118, 118, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 25, 37, 121, 121, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, 44, 124, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 34, 51, 127, 127, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 40, 60, 130, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 46, 69, 133, 133, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 53, 79, 136, 136, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 61, 91, 139, 139, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 69, 104, 142, 142, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 79, 119, 145, 145, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 90, 135, 148, 148, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 102, 153, 151, 151, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 116, 173, 154, 154, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 131, 196, 157, 157, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 148, 222, 160, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 167, 251, 163, 163, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 189, 283, 166, 166, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 213, 319, 169, 169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 240, 360, 172, 172, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 271, 406, 175, 175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 305, 458, 178, 178, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 345, 517, 181, 181, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 389, 583, 184, 184, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 438, 658, 187, 187, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 495, 742, 188, 188, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 559, 838, 190, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 631, 947, 191, 191, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 713, 1070, 193, 193, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 807, 1210, 194, 194, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 913, 1369, 196, 196, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1033, 1550, 197, 197, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1171, 1756, 199, 199, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1328, 1992, 200, 200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1507, 2260, 202, 202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
- }
-}
-skills["SupportHandOfChayulaPlayer"] = {
- name = "SupportHandOfChayulaPlayer",
- hidden = true,
- support = true,
- requireSkillTypes = { SkillType.AppliesCurse, SkillType.Mark, SkillType.OR, },
- addSkillTypes = { },
- excludeSkillTypes = { },
- levels = {
- [1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 0, },
- [3] = { levelRequirement = 0, },
- [4] = { levelRequirement = 0, },
- [5] = { levelRequirement = 0, },
- [6] = { levelRequirement = 0, },
- [7] = { levelRequirement = 0, },
- [8] = { levelRequirement = 0, },
- [9] = { levelRequirement = 0, },
- [10] = { levelRequirement = 0, },
- [11] = { levelRequirement = 0, },
- [12] = { levelRequirement = 0, },
- [13] = { levelRequirement = 0, },
- [14] = { levelRequirement = 0, },
- [15] = { levelRequirement = 0, },
- [16] = { levelRequirement = 0, },
- [17] = { levelRequirement = 0, },
- [18] = { levelRequirement = 0, },
- [19] = { levelRequirement = 0, },
- [20] = { levelRequirement = 0, },
- [21] = { levelRequirement = 0, },
- [22] = { levelRequirement = 0, },
- [23] = { levelRequirement = 0, },
- [24] = { levelRequirement = 0, },
- [25] = { levelRequirement = 0, },
- [26] = { levelRequirement = 0, },
- [27] = { levelRequirement = 0, },
- [28] = { levelRequirement = 0, },
- [29] = { levelRequirement = 0, },
- [30] = { levelRequirement = 0, },
- [31] = { levelRequirement = 0, },
- [32] = { levelRequirement = 0, },
- [33] = { levelRequirement = 0, },
- [34] = { levelRequirement = 0, },
- [35] = { levelRequirement = 0, },
- [36] = { levelRequirement = 0, },
- [37] = { levelRequirement = 0, },
- [38] = { levelRequirement = 0, },
- [39] = { levelRequirement = 0, },
- [40] = { levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "Support",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ [2] = {
+ label = "Cold-Infused",
+ baseEffectiveness = 4.2399997711182,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "ice_nova_statset_1",
baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "generic_knockback_+%_final_at_min_distance", 50 },
+ { "generic_knockback_+%_final_at_max_distance", -90 },
+ { "generic_knockback_distance_limit", 20 },
+ { "active_skill_base_area_of_effect_radius", 32 },
+ { "ice_nova_number_of_frost_bolts_to_cast_on", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 8000 },
},
stats = {
- "curse_effect_+%",
- "mark_effect_+%",
- "triggered_by_hand_of_chayula",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "active_skill_hit_damage_freeze_multiplier_+%_final",
+ "active_skill_chill_effect_+%_final",
+ "is_area_damage",
+ "global_knockback",
+ "can_perform_skill_while_moving",
+ "active_skill_consumes_a_cold_infusion",
+ "display_statset_hide_usage_stats",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { -40, -40, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { -40, -39, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { -39, -39, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { -39, -38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { -38, -38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { -38, -37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { -37, -37, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { -37, -36, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { -36, -36, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { -36, -35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { -35, -35, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { -35, -34, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { -34, -34, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { -34, -33, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { -33, -33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { -33, -32, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { -32, -32, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { -32, -31, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { -31, -31, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { -31, -30, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { -30, -30, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { -30, -29, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { -29, -29, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { -29, -28, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { -28, -28, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { -28, -27, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { -27, -27, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { -27, -26, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { -26, -26, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { -26, -25, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { -25, -25, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { -25, -24, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { -24, -24, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { -24, -23, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { -23, -23, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { -23, -22, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { -22, -22, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { -22, -21, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { -21, -21, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { -21, -20, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 13, 20, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 18, 27, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 24, 36, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 31, 47, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 40, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 49, 73, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 59, 89, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 71, 106, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 84, 125, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 98, 147, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 115, 172, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 133, 200, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 154, 231, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 177, 266, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 203, 305, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 233, 349, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 266, 399, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 304, 456, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 346, 519, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 394, 591, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 448, 672, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 509, 764, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 578, 868, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 657, 985, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 746, 1119, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 847, 1271, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 962, 1443, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 1093, 1639, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 1242, 1863, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 1412, 2118, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 1606, 2408, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 1827, 2741, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 2080, 3121, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 2371, 3556, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 2703, 4055, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 3085, 4627, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 3524, 5285, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 4028, 6042, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 4609, 6914, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 5279, 7919, 0, 0, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["HeraldOfIcePlayer"] = {
- name = "Herald of Ice",
- baseTypeName = "Herald of Ice",
+skills["IceStrikePlayer"] = {
+ name = "Ice Strike",
+ baseTypeName = "Ice Strike",
color = 3,
- description = "While active, Shattering an enemy with a non-Herald Attack Hit will cause an icy explosion that deals Attack damage to surrounding enemies.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Attack] = true, [SkillType.Herald] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, },
+ description = "Perform a fast icy Strike. Using this Attack three times in quick succession causes a final strike that is slower and more powerful.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
- ["One Handed Mace"] = true,
- ["Flail"] = true,
- ["Two Handed Sword"] = true,
- ["Dagger"] = true,
- ["Claw"] = true,
- ["Crossbow"] = true,
- ["Bow"] = true,
- ["Spear"] = true,
- ["Two Handed Axe"] = true,
- ["Two Handed Mace"] = true,
- ["One Handed Axe"] = true,
["Staff"] = true,
- ["One Handed Sword"] = true,
},
- castTime = 0,
+ castTime = 1,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.2 },
+ { "active_skill_attack_speed_+%_final", 0.5 },
},
levels = {
- [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 6, }, },
+ [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 7, }, },
+ [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 8, }, },
+ [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 11, }, },
+ [8] = { attackSpeedMultiplier = 40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 12, }, },
+ [9] = { attackSpeedMultiplier = 40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 13, }, },
+ [10] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 15, }, },
+ [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 16, }, },
+ [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 18, }, },
+ [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 20, }, },
+ [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 22, }, },
+ [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 24, }, },
+ [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 26, }, },
+ [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 28, }, },
+ [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 30, }, },
+ [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 33, }, },
+ [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 36, }, },
+ [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 38, }, },
+ [22] = { attackSpeedMultiplier = 40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 42, }, },
+ [23] = { attackSpeedMultiplier = 40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 45, }, },
+ [24] = { attackSpeedMultiplier = 40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 48, }, },
+ [25] = { attackSpeedMultiplier = 40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 52, }, },
+ [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 56, }, },
+ [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 60, }, },
+ [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 64, }, },
+ [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 69, }, },
+ [30] = { attackSpeedMultiplier = 40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 73, }, },
+ [31] = { attackSpeedMultiplier = 40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 79, }, },
+ [32] = { attackSpeedMultiplier = 40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 84, }, },
+ [33] = { attackSpeedMultiplier = 40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 90, }, },
+ [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 96, }, },
+ [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 102, }, },
+ [36] = { attackSpeedMultiplier = 40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 109, }, },
+ [37] = { attackSpeedMultiplier = 40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 116, }, },
+ [38] = { attackSpeedMultiplier = 40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 124, }, },
+ [39] = { attackSpeedMultiplier = 40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 132, }, },
+ [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 140, }, },
},
statSets = {
[1] = {
- label = "Buff",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "herald_of_ice",
- statMap = {
- ["display_herald_of_ice_behaviour"] = {
- mod("HeraldOfIceBuff", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Herald of Ice" }),
- },
- },
+ label = "Normal Strikes",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
+ attack = true,
+ area = true,
+ melee = true,
+ },
+ constantStats = {
+ { "melee_conditional_step_distance", 10 },
+ { "statset_index_for_final_animation_combo_index", 1 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
+ { "base_melee_dash_range", 30 },
},
stats = {
- "base_deal_no_damage",
- "display_statset_no_hit_damage",
- "display_herald_of_ice_behaviour",
+ "is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9963,530 +12197,408 @@ skills["HeraldOfIcePlayer"] = {
},
},
[2] = {
- label = "Explosion",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "herald_of_ice",
+ label = "Third Strike",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
attack = true,
area = true,
+ melee = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "melee_conditional_step_distance", 10 },
+ { "statset_index_for_final_animation_combo_index", 1 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
+ { "base_melee_dash_range", 30 },
+ { "supplementary_stat_container_attack_speed_+%_final", -50 },
+ { "melee_range_+", 7 },
},
stats = {
"is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "attack_is_not_melee_override",
- "skill_can_add_multiple_charges_per_action",
- "never_freeze",
- "global_always_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "display_statset_is_final_strike",
},
levels = {
- [1] = { baseMultiplier = 0.7, actorLevel = 1, },
- [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.85, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.93, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.02, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.1, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.19, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 1.35, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.53, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.63, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.74, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.86, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.99, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 2.14, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 2.29, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 2.47, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 2.65, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 2.86, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 3.08, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 3.32, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 3.57, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 3.85, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 4.15, actorLevel = 136.875, },
- [26] = { baseMultiplier = 4.47, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 4.81, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 5.18, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 5.59, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 6.02, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 6.48, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 6.98, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 7.52, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 8.1, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 8.73, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 9.41, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 10.13, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 10.92, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 11.76, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 12.67, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 1.3, actorLevel = 1, },
+ [2] = { baseMultiplier = 1.43, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.57, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.71, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.85, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.99, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 2.13, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.26, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.37, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.49, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 2.61, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 2.74, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 2.88, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 3.03, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 3.34, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 3.5, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 3.68, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 3.86, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 4.05, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 4.26, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 4.47, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 4.69, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 4.93, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 5.17, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 5.43, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 5.71, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 5.99, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 6.29, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 6.6, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 6.93, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 7.28, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 7.65, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 8.03, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 8.43, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 8.85, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 9.29, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 9.76, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 10.25, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 10.76, actorLevel = 288.29998779297, },
},
},
}
}
-skills["HexblastPlayer"] = {
- name = "Hexblast",
- baseTypeName = "Hexblast",
+skills["IcestormPlayer"] = {
+ name = "Icestorm",
+ baseTypeName = "Icestorm",
+ fromItem = true,
color = 3,
- description = "Detonate a Curse on every enemy in an area, causing explosions of Chaos damage but removing the Curse. Can only detonate Curses for which at least half of the duration has expired.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.DynamicCooldown] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 1,
+ description = "Conjure a hail of icy bolts over the targeted area. Chill and Freeze on enemies in front of you are Consumed to fuel the Icestorm by creating improved bolts.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 1.2,
qualityStats = {
- { "active_skill_chaos_damage_+%_final", 1 },
+ { "active_skill_base_area_of_effect_radius", 0.1 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 13, }, },
- [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 29, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 32, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 37, }, },
- [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 42, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 53, }, },
- [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 61, }, },
- [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 69, }, },
- [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 78, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 88, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 100, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 113, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 128, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 145, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 164, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 185, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 210, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 269, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 305, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 345, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 390, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 442, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 500, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 566, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 640, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 725, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 820, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 928, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1051, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1189, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1346, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1523, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1724, }, },
+ [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 12, }, },
+ [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 14, }, },
+ [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 17, }, },
+ [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 19, }, },
+ [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 22, }, },
+ [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 26, }, },
+ [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 43, }, },
+ [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 48, }, },
+ [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 54, }, },
+ [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 61, }, },
+ [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 68, }, },
+ [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 75, }, },
+ [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 84, }, },
+ [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 93, }, },
+ [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 103, }, },
+ [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 114, }, },
+ [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 126, }, },
+ [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 139, }, },
+ [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 153, }, },
+ [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 169, }, },
+ [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 186, }, },
+ [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 204, }, },
+ [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 224, }, },
+ [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 245, }, },
+ [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 269, }, },
+ [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 294, }, },
+ [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 322, }, },
+ [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 352, }, },
+ [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 384, }, },
+ [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 420, }, },
+ [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 458, }, },
+ [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 499, }, },
+ [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 544, }, },
+ [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 593, }, },
+ [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 645, }, },
+ [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 702, }, },
+ [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 764, }, },
},
statSets = {
[1] = {
- label = "Hexblast",
- baseEffectiveness = 7.8000001907349,
- incrementalEffectiveness = 0.14000000059605,
+ label = "Storm",
+ incrementalEffectiveness = 0.12999999523163,
damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "hexblast",
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "hexblast_maximum_number_of_explosions", 3 },
- { "active_skill_base_area_of_effect_radius", 20 },
- { "active_skill_base_secondary_area_of_effect_radius", 28 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- },
- stats = {
- "spell_minimum_base_chaos_damage",
- "spell_maximum_base_chaos_damage",
- "is_area_damage",
- "can_perform_skill_while_moving",
- "show_curse_hexblastable",
- },
- levels = {
- [1] = { 21, 39, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 29, 54, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 40, 75, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 53, 98, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 67, 124, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 83, 154, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 100, 187, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 120, 224, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 143, 265, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 168, 312, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 197, 365, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 264, 491, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 304, 565, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 350, 650, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 401, 745, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 458, 851, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 523, 972, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 597, 1108, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 679, 1262, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 773, 1435, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 879, 1632, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 998, 1854, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 1134, 2107, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 1288, 2393, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 1463, 2718, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 1662, 3087, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1888, 3507, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 2146, 3986, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 2440, 4532, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 2776, 5155, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 3159, 5867, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 3597, 6681, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 4100, 7613, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 4675, 8682, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 5336, 9910, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 6095, 11320, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 6969, 12942, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 7975, 14810, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 9135, 16965, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ statDescriptionScope = "ice_storm",
+ statMap = {
+ ["fire_storm_fireball_delay_ms"] = {
+ skill("hitTimeOverride", nil),
+ div = 1000,
+ },
},
- },
- }
-}
-skills["IceNovaPlayer"] = {
- name = "Ice Nova",
- baseTypeName = "Ice Nova",
- color = 3,
- description = "Conjure a wave of ice in all directions, Knocking Back enemies based on how close they are to you. Casting Ice Nova targeting near a Frostbolt Projectile will cause it to originate from the Frostbolt instead of you.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, },
- castTime = 1,
- qualityStats = {
- { "active_skill_damage_+%_final_vs_chilled_enemies", 1 },
- },
- levels = {
- [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { critChance = 12, levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { critChance = 12, levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { critChance = 12, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { critChance = 12, levelRequirement = 14, cost = { Mana = 13, }, },
- [6] = { critChance = 12, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { critChance = 12, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { critChance = 12, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { critChance = 12, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { critChance = 12, levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { critChance = 12, levelRequirement = 41, cost = { Mana = 27, }, },
- [12] = { critChance = 12, levelRequirement = 46, cost = { Mana = 31, }, },
- [13] = { critChance = 12, levelRequirement = 52, cost = { Mana = 35, }, },
- [14] = { critChance = 12, levelRequirement = 58, cost = { Mana = 40, }, },
- [15] = { critChance = 12, levelRequirement = 64, cost = { Mana = 45, }, },
- [16] = { critChance = 12, levelRequirement = 66, cost = { Mana = 51, }, },
- [17] = { critChance = 12, levelRequirement = 72, cost = { Mana = 58, }, },
- [18] = { critChance = 12, levelRequirement = 78, cost = { Mana = 66, }, },
- [19] = { critChance = 12, levelRequirement = 84, cost = { Mana = 75, }, },
- [20] = { critChance = 12, levelRequirement = 90, cost = { Mana = 84, }, },
- [21] = { critChance = 12, levelRequirement = 90, cost = { Mana = 96, }, },
- [22] = { critChance = 12, levelRequirement = 90, cost = { Mana = 108, }, },
- [23] = { critChance = 12, levelRequirement = 90, cost = { Mana = 123, }, },
- [24] = { critChance = 12, levelRequirement = 90, cost = { Mana = 139, }, },
- [25] = { critChance = 12, levelRequirement = 90, cost = { Mana = 157, }, },
- [26] = { critChance = 12, levelRequirement = 90, cost = { Mana = 178, }, },
- [27] = { critChance = 12, levelRequirement = 90, cost = { Mana = 202, }, },
- [28] = { critChance = 12, levelRequirement = 90, cost = { Mana = 228, }, },
- [29] = { critChance = 12, levelRequirement = 90, cost = { Mana = 258, }, },
- [30] = { critChance = 12, levelRequirement = 90, cost = { Mana = 292, }, },
- [31] = { critChance = 12, levelRequirement = 90, cost = { Mana = 331, }, },
- [32] = { critChance = 12, levelRequirement = 90, cost = { Mana = 375, }, },
- [33] = { critChance = 12, levelRequirement = 90, cost = { Mana = 424, }, },
- [34] = { critChance = 12, levelRequirement = 90, cost = { Mana = 480, }, },
- [35] = { critChance = 12, levelRequirement = 90, cost = { Mana = 543, }, },
- [36] = { critChance = 12, levelRequirement = 90, cost = { Mana = 615, }, },
- [37] = { critChance = 12, levelRequirement = 90, cost = { Mana = 696, }, },
- [38] = { critChance = 12, levelRequirement = 90, cost = { Mana = 788, }, },
- [39] = { critChance = 12, levelRequirement = 90, cost = { Mana = 891, }, },
- [40] = { critChance = 12, levelRequirement = 90, cost = { Mana = 1009, }, },
- },
- statSets = {
- [1] = {
- label = "Ice Nova",
- baseEffectiveness = 1.460000038147,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "ice_nova",
baseFlags = {
spell = true,
area = true,
+ duration = true,
},
constantStats = {
- { "generic_knockback_+%_final_at_min_distance", 50 },
- { "generic_knockback_+%_final_at_max_distance", -90 },
- { "generic_knockback_distance_limit", 20 },
- { "active_skill_base_area_of_effect_radius", 32 },
- { "ice_nova_number_of_frost_bolts_to_cast_on", 1 },
- { "active_skill_chill_effect_+%_final", 100 },
+ { "fire_storm_fireball_delay_ms", 150 },
+ { "firestorm_max_number_of_storms", 3 },
+ { "base_skill_effect_duration", 6000 },
+ { "active_skill_base_area_of_effect_radius", 9 },
+ { "active_skill_base_secondary_area_of_effect_radius", 26 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "rain_hit_delay_ms", 150 },
+ { "firestorm_improved_bolts_per_chill_consumed", 1 },
+ { "firestorm_improved_bolts_per_monster_power_of_freeze_consumed", 1 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
- "active_skill_hit_damage_freeze_multiplier_+%_final",
+ "base_skill_show_average_damage_instead_of_dps",
"is_area_damage",
- "global_knockback",
"can_perform_skill_while_moving",
+ "cold_damage_cannot_chill",
+ "never_freeze",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 5, 7, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 103, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 9, 13, 106, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 11, 17, 109, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 14, 21, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 17, 26, 115, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 21, 31, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 25, 37, 121, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 29, 44, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 34, 51, 127, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 40, 60, 130, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 46, 69, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 53, 79, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 60, 90, 139, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 142, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 78, 117, 145, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 88, 132, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 100, 150, 151, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 113, 169, 154, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 127, 191, 157, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 143, 215, 160, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 161, 241, 163, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 181, 271, 166, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 203, 305, 169, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 228, 342, 172, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 256, 384, 175, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 287, 431, 178, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 323, 484, 181, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 362, 543, 184, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 406, 609, 187, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 456, 684, 188, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 512, 767, 190, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 575, 862, 191, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 645, 968, 193, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 725, 1088, 194, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 816, 1223, 196, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 917, 1376, 197, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1033, 1549, 199, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1163, 1745, 200, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1311, 1966, 202, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 72, 107, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 82, 122, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 93, 139, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 155, 232, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 176, 264, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 200, 300, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 227, 340, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 258, 387, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 293, 439, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 379, 568, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 431, 646, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 559, 839, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 638, 956, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 728, 1091, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 831, 1247, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 950, 1425, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1087, 1631, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1245, 1868, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
- label = "Hidden",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "ice_nova",
+ label = "Improved Bolt",
+ baseEffectiveness = 4.0500001907349,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "ice_storm",
baseFlags = {
spell = true,
area = true,
+ duration = true,
},
constantStats = {
- { "generic_knockback_+%_final_at_min_distance", 50 },
- { "generic_knockback_+%_final_at_max_distance", -90 },
- { "generic_knockback_distance_limit", 20 },
- { "active_skill_base_area_of_effect_radius", 32 },
- { "ice_nova_number_of_frost_bolts_to_cast_on", 1 },
- { "active_skill_chill_effect_+%_final", 100 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "rain_hit_delay_ms", 150 },
+ { "active_skill_base_area_of_effect_radius", 18 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
- "active_skill_hit_damage_freeze_multiplier_+%_final",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_skill_show_average_damage_instead_of_dps",
"is_area_damage",
- "global_knockback",
"can_perform_skill_while_moving",
+ "cold_damage_cannot_chill",
+ "never_freeze",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "display_statset_hide_usage_stats",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 0.80000001192093, 1.2000000476837, 100, statInterpolation = { 3, 3, 1, }, actorLevel = 1, },
+ [1] = { 0, 0, 19, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 35, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 45, 68, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 57, 85, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 70, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 85, 127, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 101, 152, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 120, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 141, 211, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 164, 246, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 191, 286, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 220, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 254, 381, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 334, 501, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 381, 572, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 435, 653, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 496, 744, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 564, 847, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 642, 963, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 730, 1094, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 829, 1243, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 941, 1412, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 1069, 1603, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 1214, 1821, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 1379, 2068, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 1566, 2349, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 1779, 2669, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 2023, 3034, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 2301, 3451, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 2618, 3927, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 2981, 4471, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 3397, 5095, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 3873, 5810, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 4420, 6630, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 5048, 7573, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 5771, 8657, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 6604, 9906, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 7564, 11346, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["IceStrikePlayer"] = {
- name = "Ice Strike",
- baseTypeName = "Ice Strike",
+skills["ImpurityPlayer"] = {
+ name = "Impurity",
+ baseTypeName = "Impurity",
+ fromItem = true,
color = 3,
- description = "Perform a fast icy Strike. Using this Attack three times in quick succession causes a final strike that is slower and more powerful.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, },
- weaponTypes = {
- ["Staff"] = true,
- },
- castTime = 1,
+ description = "Emit an Aura that boosts the Chaos Resistance of you and Allies in your Presence.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Chaos] = true, [SkillType.AffectsPresence] = true, },
+ castTime = 0,
qualityStats = {
- { "active_skill_attack_speed_+%_final", 0.5 },
+ { "base_skill_buff_chaos_damage_resistance_%_to_apply", 0.3 },
},
levels = {
- [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 5, }, },
- [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.66, levelRequirement = 3, cost = { Mana = 6, }, },
- [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.73, levelRequirement = 6, cost = { Mana = 6, }, },
- [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.79, levelRequirement = 10, cost = { Mana = 7, }, },
- [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.85, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.92, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.98, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { attackSpeedMultiplier = 40, baseMultiplier = 1.04, levelRequirement = 26, cost = { Mana = 11, }, },
- [9] = { attackSpeedMultiplier = 40, baseMultiplier = 1.09, levelRequirement = 31, cost = { Mana = 12, }, },
- [10] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 36, cost = { Mana = 13, }, },
- [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 41, cost = { Mana = 15, }, },
- [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 46, cost = { Mana = 17, }, },
- [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.33, levelRequirement = 52, cost = { Mana = 18, }, },
- [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 58, cost = { Mana = 20, }, },
- [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 64, cost = { Mana = 23, }, },
- [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.54, levelRequirement = 66, cost = { Mana = 25, }, },
- [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.62, levelRequirement = 72, cost = { Mana = 28, }, },
- [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.7, levelRequirement = 78, cost = { Mana = 31, }, },
- [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.78, levelRequirement = 84, cost = { Mana = 34, }, },
- [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 38, }, },
- [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 42, }, },
- [22] = { attackSpeedMultiplier = 40, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 47, }, },
- [23] = { attackSpeedMultiplier = 40, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 52, }, },
- [24] = { attackSpeedMultiplier = 40, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 58, }, },
- [25] = { attackSpeedMultiplier = 40, baseMultiplier = 2.39, levelRequirement = 90, cost = { Mana = 64, }, },
- [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 71, }, },
- [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 79, }, },
- [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 88, }, },
- [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 97, }, },
- [30] = { attackSpeedMultiplier = 40, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 108, }, },
- [31] = { attackSpeedMultiplier = 40, baseMultiplier = 3.2, levelRequirement = 90, cost = { Mana = 119, }, },
- [32] = { attackSpeedMultiplier = 40, baseMultiplier = 3.36, levelRequirement = 90, cost = { Mana = 132, }, },
- [33] = { attackSpeedMultiplier = 40, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 147, }, },
- [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.71, levelRequirement = 90, cost = { Mana = 163, }, },
- [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.89, levelRequirement = 90, cost = { Mana = 180, }, },
- [36] = { attackSpeedMultiplier = 40, baseMultiplier = 4.08, levelRequirement = 90, cost = { Mana = 200, }, },
- [37] = { attackSpeedMultiplier = 40, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 221, }, },
- [38] = { attackSpeedMultiplier = 40, baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 245, }, },
- [39] = { attackSpeedMultiplier = 40, baseMultiplier = 4.73, levelRequirement = 90, cost = { Mana = 272, }, },
- [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 301, }, },
+ [1] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 0, },
+ [2] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 3, },
+ [3] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 6, },
+ [4] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 10, },
+ [5] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 14, },
+ [6] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 18, },
+ [7] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 22, },
+ [8] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 26, },
+ [9] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 31, },
+ [10] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 36, },
+ [11] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 41, },
+ [12] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 46, },
+ [13] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 52, },
+ [14] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 58, },
+ [15] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 64, },
+ [16] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 66, },
+ [17] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 72, },
+ [18] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 78, },
+ [19] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 84, },
+ [20] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [21] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [22] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [23] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [24] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [25] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [26] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [27] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [28] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [29] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [30] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [31] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [32] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [33] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [34] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [35] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [36] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [37] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [38] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [39] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
+ [40] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Normal Strikes",
+ label = "Impurity",
incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- attack = true,
- area = true,
- melee = true,
- },
- constantStats = {
- { "melee_conditional_step_distance", 10 },
- { "statset_index_for_final_animation_combo_index", 1 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
- { "base_melee_dash_range", 30 },
- },
- stats = {
- "is_area_damage",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ statDescriptionScope = "chaos_resist_aura",
+ statMap = {
+ ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = {
+ mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }),
+ },
},
- },
- [2] = {
- label = "Third Strike",
- incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
- attack = true,
+ spell = true,
+ aura = true,
area = true,
- melee = true,
},
constantStats = {
- { "melee_conditional_step_distance", 10 },
- { "statset_index_for_final_animation_combo_index", 1 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
- { "base_melee_dash_range", 30 },
- { "supplementary_stat_container_attack_speed_+%_final", -50 },
- { "melee_range_+", 7 },
+ { "skill_desired_amount_override", 1 },
},
stats = {
- "is_area_damage",
- "display_statset_is_final_strike",
+ "base_skill_buff_chaos_damage_resistance_%_to_apply",
+ "base_deal_no_damage",
},
levels = {
- [1] = { baseMultiplier = 1.3, actorLevel = 1, },
- [2] = { baseMultiplier = 1.43, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.57, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.71, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.85, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.99, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 2.13, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 2.26, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.37, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.49, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.61, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.74, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.88, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 3.03, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 3.34, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 3.5, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.68, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 3.86, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 4.05, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 4.26, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 4.47, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 4.69, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 4.93, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 5.17, actorLevel = 136.875, },
- [26] = { baseMultiplier = 5.43, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 5.71, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 5.99, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 6.29, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 6.6, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 6.93, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 7.28, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 7.65, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 8.03, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 8.43, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 8.85, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 9.29, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 9.76, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 10.25, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 10.76, actorLevel = 288.29998779297, },
+ [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 11, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 12, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 16, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 18, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 21, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 22, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 24, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 25, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 26, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 27, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 28, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 29, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 32, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 33, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 34, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 37, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 38, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 39, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 40, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 41, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 42, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 43, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 44, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 45, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 46, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 47, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 48, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 49, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -10495,60 +12607,60 @@ skills["IncineratePlayer"] = {
name = "Incinerate",
baseTypeName = "Incinerate",
color = 3,
- description = "Conjure a torrent of Fire from your hand, Igniting enemies in front of you. The flames grow stronger the longer you Channel for, and at maximum strength also apply stacking Fire Exposure and creating Ignited Ground.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GainsStages] = true, },
+ description = "Gain fuel by spending Mana on any Skill, then use the accumulated fuel to conjure a torrent of Fire from your hand, Igniting enemies in front of you. The flames grow stronger the longer you Channel. Consumes a Fire Infusion if possible to also create Ignited Ground.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.25,
qualityStats = {
{ "base_ignite_effect_+%", 1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { ManaPerMinute = 304, }, },
- [2] = { levelRequirement = 3, cost = { ManaPerMinute = 344, }, },
- [3] = { levelRequirement = 6, cost = { ManaPerMinute = 389, }, },
- [4] = { levelRequirement = 10, cost = { ManaPerMinute = 440, }, },
- [5] = { levelRequirement = 14, cost = { ManaPerMinute = 498, }, },
- [6] = { levelRequirement = 18, cost = { ManaPerMinute = 564, }, },
- [7] = { levelRequirement = 22, cost = { ManaPerMinute = 638, }, },
- [8] = { levelRequirement = 26, cost = { ManaPerMinute = 722, }, },
- [9] = { levelRequirement = 31, cost = { ManaPerMinute = 817, }, },
- [10] = { levelRequirement = 36, cost = { ManaPerMinute = 925, }, },
- [11] = { levelRequirement = 41, cost = { ManaPerMinute = 1047, }, },
- [12] = { levelRequirement = 46, cost = { ManaPerMinute = 1185, }, },
- [13] = { levelRequirement = 52, cost = { ManaPerMinute = 1341, }, },
- [14] = { levelRequirement = 58, cost = { ManaPerMinute = 1518, }, },
- [15] = { levelRequirement = 64, cost = { ManaPerMinute = 1718, }, },
- [16] = { levelRequirement = 66, cost = { ManaPerMinute = 1944, }, },
- [17] = { levelRequirement = 72, cost = { ManaPerMinute = 2200, }, },
- [18] = { levelRequirement = 78, cost = { ManaPerMinute = 2490, }, },
- [19] = { levelRequirement = 84, cost = { ManaPerMinute = 2818, }, },
- [20] = { levelRequirement = 90, cost = { ManaPerMinute = 3189, }, },
- [21] = { levelRequirement = 90, cost = { ManaPerMinute = 3609, }, },
- [22] = { levelRequirement = 90, cost = { ManaPerMinute = 4085, }, },
- [23] = { levelRequirement = 90, cost = { ManaPerMinute = 4623, }, },
- [24] = { levelRequirement = 90, cost = { ManaPerMinute = 5232, }, },
- [25] = { levelRequirement = 90, cost = { ManaPerMinute = 5921, }, },
- [26] = { levelRequirement = 90, cost = { ManaPerMinute = 6701, }, },
- [27] = { levelRequirement = 90, cost = { ManaPerMinute = 7583, }, },
- [28] = { levelRequirement = 90, cost = { ManaPerMinute = 8582, }, },
- [29] = { levelRequirement = 90, cost = { ManaPerMinute = 9712, }, },
- [30] = { levelRequirement = 90, cost = { ManaPerMinute = 10992, }, },
- [31] = { levelRequirement = 90, cost = { ManaPerMinute = 12439, }, },
- [32] = { levelRequirement = 90, cost = { ManaPerMinute = 14078, }, },
- [33] = { levelRequirement = 90, cost = { ManaPerMinute = 15932, }, },
- [34] = { levelRequirement = 90, cost = { ManaPerMinute = 18030, }, },
- [35] = { levelRequirement = 90, cost = { ManaPerMinute = 20405, }, },
- [36] = { levelRequirement = 90, cost = { ManaPerMinute = 23092, }, },
- [37] = { levelRequirement = 90, cost = { ManaPerMinute = 26133, }, },
- [38] = { levelRequirement = 90, cost = { ManaPerMinute = 29575, }, },
- [39] = { levelRequirement = 90, cost = { ManaPerMinute = 33470, }, },
- [40] = { levelRequirement = 90, cost = { ManaPerMinute = 37878, }, },
+ [1] = { critChance = 6, levelRequirement = 0, },
+ [2] = { critChance = 6, levelRequirement = 3, },
+ [3] = { critChance = 6, levelRequirement = 6, },
+ [4] = { critChance = 6, levelRequirement = 10, },
+ [5] = { critChance = 6, levelRequirement = 14, },
+ [6] = { critChance = 6, levelRequirement = 18, },
+ [7] = { critChance = 6, levelRequirement = 22, },
+ [8] = { critChance = 6, levelRequirement = 26, },
+ [9] = { critChance = 6, levelRequirement = 31, },
+ [10] = { critChance = 6, levelRequirement = 36, },
+ [11] = { critChance = 6, levelRequirement = 41, },
+ [12] = { critChance = 6, levelRequirement = 46, },
+ [13] = { critChance = 6, levelRequirement = 52, },
+ [14] = { critChance = 6, levelRequirement = 58, },
+ [15] = { critChance = 6, levelRequirement = 64, },
+ [16] = { critChance = 6, levelRequirement = 66, },
+ [17] = { critChance = 6, levelRequirement = 72, },
+ [18] = { critChance = 6, levelRequirement = 78, },
+ [19] = { critChance = 6, levelRequirement = 84, },
+ [20] = { critChance = 6, levelRequirement = 90, },
+ [21] = { critChance = 6, levelRequirement = 90, },
+ [22] = { critChance = 6, levelRequirement = 90, },
+ [23] = { critChance = 6, levelRequirement = 90, },
+ [24] = { critChance = 6, levelRequirement = 90, },
+ [25] = { critChance = 6, levelRequirement = 90, },
+ [26] = { critChance = 6, levelRequirement = 90, },
+ [27] = { critChance = 6, levelRequirement = 90, },
+ [28] = { critChance = 6, levelRequirement = 90, },
+ [29] = { critChance = 6, levelRequirement = 90, },
+ [30] = { critChance = 6, levelRequirement = 90, },
+ [31] = { critChance = 6, levelRequirement = 90, },
+ [32] = { critChance = 6, levelRequirement = 90, },
+ [33] = { critChance = 6, levelRequirement = 90, },
+ [34] = { critChance = 6, levelRequirement = 90, },
+ [35] = { critChance = 6, levelRequirement = 90, },
+ [36] = { critChance = 6, levelRequirement = 90, },
+ [37] = { critChance = 6, levelRequirement = 90, },
+ [38] = { critChance = 6, levelRequirement = 90, },
+ [39] = { critChance = 6, levelRequirement = 90, },
+ [40] = { critChance = 6, levelRequirement = 90, },
},
statSets = {
[1] = {
label = "Incinerate",
- baseEffectiveness = 3.1500000953674,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 3.9000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "incinerate_player_statset_0",
baseFlags = {
spell = true,
@@ -10557,70 +12669,77 @@ skills["IncineratePlayer"] = {
},
constantStats = {
{ "incinerate_cone_angle", 20 },
- { "active_skill_base_area_of_effect_radius", 46 },
- { "base_skill_effect_duration", 8000 },
- { "incinerate_maximum_exposure_magnitude", 50 },
- { "incinerate_maximum_stages", 8 },
+ { "active_skill_base_area_of_effect_radius", 58 },
+ { "incinerate_maximum_stages", 12 },
{ "base_minimum_channel_time_ms", 600 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_ignite_duration_+%_final", -25 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_ignite_duration_+%_final", -50 },
{ "active_skill_override_turn_duration_ms", 360 },
- { "incinerate_damage_+%_final_per_stage", 40 },
+ { "incinerate_damage_+%_final_per_stage", 30 },
{ "active_skill_energy_generated_+%_final", -98 },
+ { "incinerate_minimum_fuel_to_use", 1000 },
+ { "incinerate_gain_stage_every_x_ms", 250 },
+ { "incinerate_maximum_fuel", 10000 },
+ { "active_skill_ignite_chance_+%_final", -80 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
- "incinerate_buff_exposure_-_to_total_fire_resistance_per_stack",
+ "incinerate_fuel_gain_per_mana_spent",
"is_area_damage",
"can_perform_skill_while_moving",
- "channel_start_lock_cancelling_scales_with_cast_speed",
- "cast_speed_modifiers_apply_to_over_time_cost",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_fire_infusion",
+ "no_mana_cost",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
- [1] = { 10, 15, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 13, 20, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 19, 28, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 24, 36, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 31, 46, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 38, 57, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 46, 70, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 56, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 66, 99, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 78, 116, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 91, 136, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 105, 158, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 122, 183, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 141, 211, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 161, 242, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 185, 278, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 212, 317, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 242, 362, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 275, 413, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 314, 470, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 357, 535, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 406, 608, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 461, 691, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 524, 785, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 595, 892, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 675, 1013, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 767, 1151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 872, 1307, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 991, 1486, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1126, 1689, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1281, 1922, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1458, 2187, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1660, 2491, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1892, 2838, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2158, 3237, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2463, 3694, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2813, 4220, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3216, 4824, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 3681, 5521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4216, 6324, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 16, 25, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 22, 34, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 29, 44, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 37, 56, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 46, 69, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 56, 84, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 67, 101, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 80, 120, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 95, 142, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 112, 167, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 130, 196, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 152, 228, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 176, 265, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 204, 306, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 236, 354, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 272, 408, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 313, 470, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 360, 541, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 414, 622, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 476, 714, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 547, 820, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 628, 942, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 721, 1082, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 829, 1243, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 952, 1428, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1095, 1642, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1259, 1888, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1449, 2173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1669, 2503, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1923, 2885, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2219, 3328, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2562, 3843, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2962, 4442, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3427, 5140, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3970, 5954, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 4604, 6906, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 5346, 8019, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 6215, 9322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 7235, 10852, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
@@ -10634,71 +12753,78 @@ skills["IncineratePlayer"] = {
},
constantStats = {
{ "incinerate_cone_angle", 20 },
- { "active_skill_base_area_of_effect_radius", 46 },
- { "incinerate_maximum_exposure_magnitude", 50 },
- { "incinerate_maximum_stages", 8 },
+ { "active_skill_base_area_of_effect_radius", 58 },
+ { "incinerate_maximum_stages", 12 },
{ "base_minimum_channel_time_ms", 600 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_override_turn_duration_ms", 360 },
- { "incinerate_damage_+%_final_per_stage", 40 },
+ { "incinerate_damage_+%_final_per_stage", 30 },
{ "active_skill_energy_generated_+%_final", -98 },
+ { "incinerate_minimum_fuel_to_use", 1000 },
+ { "incinerate_gain_stage_every_x_ms", 250 },
+ { "incinerate_maximum_fuel", 10000 },
{ "base_skill_effect_duration", 4000 },
- { "active_skill_base_secondary_area_of_effect_radius", 8 },
+ { "active_skill_base_secondary_area_of_effect_radius", 14 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
- "incinerate_buff_exposure_-_to_total_fire_resistance_per_stack",
+ "incinerate_fuel_gain_per_mana_spent",
"is_area_damage",
"can_perform_skill_while_moving",
- "channel_start_lock_cancelling_scales_with_cast_speed",
- "cast_speed_modifiers_apply_to_over_time_cost",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "active_skill_consumes_a_fire_infusion",
+ "no_mana_cost",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 10, 15, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 13, 20, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 19, 28, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 24, 36, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 31, 46, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 38, 57, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 46, 70, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 56, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 66, 99, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 78, 116, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 91, 136, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 105, 158, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 122, 183, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 141, 211, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 161, 242, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 185, 278, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 212, 317, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 242, 362, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 275, 413, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 314, 470, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 357, 535, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 406, 608, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 461, 691, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 524, 785, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 595, 892, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 675, 1013, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 767, 1151, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 872, 1307, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 991, 1486, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1126, 1689, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1281, 1922, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1458, 2187, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1660, 2491, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1892, 2838, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2158, 3237, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2463, 3694, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2813, 4220, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3216, 4824, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 3681, 5521, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4216, 6324, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 16, 25, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 22, 34, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 29, 44, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 37, 56, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 46, 69, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 56, 84, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 67, 101, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 80, 120, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 95, 142, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 112, 167, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 130, 196, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 152, 228, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 176, 265, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 204, 306, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 236, 354, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 272, 408, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 313, 470, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 360, 541, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 414, 622, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 476, 714, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 547, 820, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 628, 942, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 721, 1082, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 829, 1243, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 952, 1428, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1095, 1642, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1259, 1888, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1449, 2173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1669, 2503, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1923, 2885, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2219, 3328, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2562, 3843, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2962, 4442, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3427, 5140, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3970, 5954, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 4604, 6906, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 5346, 8019, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 6215, 9322, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 7235, 10852, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -10707,10 +12833,9 @@ skills["KillingPalmPlayer"] = {
name = "Killing Palm",
baseTypeName = "Killing Palm",
color = 3,
- description = "Dash to an enemy and Strike them with an unarmed Attack, Culling enemies if their life is low enough. Each enemy killed by this strike grants a Power Charge. Enemies around you that can be Culled will be highlighted. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, },
+ description = "Dash to an enemy and Strike them, Culling enemies if their life is low enough. Each enemy killed by this strike grants a Power Charge, with higher Rarity monsters granting additional Charges. Enemies around you that can be Culled will be highlighted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
- ["None"] = true,
["Staff"] = true,
},
castTime = 1,
@@ -10720,51 +12845,50 @@ skills["KillingPalmPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 13, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 16, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 22, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 24, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 27, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 29, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 21, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 23, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 25, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 28, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 30, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 33, }, },
[18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 36, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 40, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 45, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 50, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 55, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 61, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 68, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 75, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 83, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 92, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 102, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 113, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 126, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 139, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 154, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 171, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 190, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 210, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 233, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 258, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 286, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 317, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 352, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 38, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 42, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 45, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 49, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 52, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 56, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 60, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 65, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 70, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 75, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 80, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 86, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 92, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 98, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 105, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 112, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 119, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 127, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 136, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 144, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 154, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 164, }, },
},
statSets = {
[1] = {
label = "Killing Palm",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "skill_stat_descriptions",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "killing_palm",
baseFlags = {
attack = true,
area = true,
@@ -10774,59 +12898,61 @@ skills["KillingPalmPlayer"] = {
constantStats = {
{ "melee_conditional_step_distance", 10 },
{ "base_melee_dash_range", 65 },
- { "additional_base_critical_strike_chance", 700 },
{ "active_skill_generic_grace_period_time_ms", 100 },
+ { "skill_grant_X_power_charges_against_normal_and_magic_monsters", 1 },
+ { "skill_grant_X_power_charges_against_rare_monsters", 2 },
+ { "skill_grant_X_power_charges_against_unique_monsters", 3 },
},
stats = {
- "attack_minimum_added_physical_damage",
- "attack_maximum_added_physical_damage",
"kill_enemy_on_hit_if_under_10%_life",
"active_skill_show_cull_range",
"skill_can_add_multiple_charges_per_action",
"global_always_hit",
"is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 4, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -10837,7 +12963,7 @@ skills["LightningBoltPlayer"] = {
fromItem = true,
color = 3,
description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.85,
qualityStats = {
{ "active_skill_shock_chance_+%_final", 2 },
@@ -10887,9 +13013,134 @@ skills["LightningBoltPlayer"] = {
statSets = {
[1] = {
label = "Lightning Bolt",
- baseEffectiveness = 2.2999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 2.5599999427795,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "lightning_bolt",
+ baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_shock_chance_+%_final", 200 },
+ { "active_skill_base_area_of_effect_radius", 8 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
+ levels = {
+ [1] = { 3, 13, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 27, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 4, 77, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7, 137, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 9, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 10, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 12, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 13, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 15, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 18, 334, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 20, 382, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 23, 436, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 26, 496, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 30, 565, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 34, 642, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 38, 730, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 44, 830, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 50, 942, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 56, 1070, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 64, 1215, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 73, 1380, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 82, 1567, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 94, 1781, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 107, 2024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 121, 2302, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 138, 2620, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 157, 2983, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 179, 3399, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 204, 3876, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 233, 4424, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 266, 5053, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 304, 5776, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 348, 6610, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 398, 7571, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["UniqueBreachLightningBoltPlayer"] = {
+ name = "Lightning Bolt",
+ baseTypeName = "Lightning Bolt",
+ fromItem = true,
+ color = 3,
+ description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.85,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 0.5, cost = { Mana = 0, }, },
+ [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 0.5, cost = { Mana = 0, }, },
+ [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 0.5, cost = { Mana = 0, }, },
+ [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 0.5, cost = { Mana = 0, }, },
+ [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 0.5, cost = { Mana = 0, }, },
+ [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 0.5, cost = { Mana = 0, }, },
+ [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 0.5, cost = { Mana = 0, }, },
+ [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 0.5, cost = { Mana = 0, }, },
+ [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 0.5, cost = { Mana = 0, }, },
+ [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 0.5, cost = { Mana = 0, }, },
+ [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 0.5, cost = { Mana = 0, }, },
+ [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 0.5, cost = { Mana = 0, }, },
+ [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 0.5, cost = { Mana = 0, }, },
+ [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 0.5, cost = { Mana = 0, }, },
+ [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 0.5, cost = { Mana = 0, }, },
+ [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 0.5, cost = { Mana = 0, }, },
+ [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 0.5, cost = { Mana = 0, }, },
+ [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 0.5, cost = { Mana = 0, }, },
+ [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 0.5, cost = { Mana = 0, }, },
+ [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Lightning Bolt",
+ baseEffectiveness = 2.5599999427795,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "lightning_bolt",
baseFlags = {
spell = true,
@@ -10900,7 +13151,8 @@ skills["LightningBoltPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 8 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "triggered_on_critical_strike_%", 100 },
},
stats = {
"spell_minimum_base_lightning_damage",
@@ -10908,47 +13160,51 @@ skills["LightningBoltPlayer"] = {
"is_area_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
- [1] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 2, 32, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 5, 93, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 8, 149, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 9, 172, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 10, 197, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 15, 291, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 17, 330, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 20, 373, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 22, 422, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 25, 475, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 28, 535, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 32, 602, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 36, 677, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 40, 760, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 45, 854, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 50, 958, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 57, 1075, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 64, 1207, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 71, 1354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 80, 1519, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, 1705, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 101, 1914, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 113, 2150, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 127, 2415, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 143, 2714, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 161, 3051, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 181, 3433, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 203, 3864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 229, 4352, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 258, 4905, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 13, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 27, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4, 48, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 4, 77, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 5, 94, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7, 137, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 9, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 10, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 12, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 13, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 15, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 18, 334, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 20, 382, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 23, 436, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 26, 496, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 30, 565, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 34, 642, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 38, 730, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 44, 830, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 50, 942, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 56, 1070, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 64, 1215, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 73, 1380, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 82, 1567, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 94, 1781, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 107, 2024, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 121, 2302, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 138, 2620, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 157, 2983, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 179, 3399, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 204, 3876, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 233, 4424, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 266, 5053, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 304, 5776, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 348, 6610, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 398, 7571, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -10957,60 +13213,60 @@ skills["LightningConduitPlayer"] = {
name = "Lightning Conduit",
baseTypeName = "Lightning Conduit",
color = 3,
- description = "Call down lightning to hit all enemies in a cone in front of you. Deals significantly more damage to Shocked enemies but Consumes Shock from them after damaging them. If a Shock is Consumed, additional lightning bolts are distributed among the targets hit. Targeting close to you will cause you to jump back as you cast.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesShock] = true, [SkillType.CanRapidFire] = true, },
+ description = "Call down Lightning to hit all enemies in a cone in front of you, dealing significantly more damage to Shocked enemies. If there is a Shocked enemy in the target area, additional lightning bolts are distributed among the targets hit. Targeting close to you will cause you to jump back as you cast.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, },
castTime = 1,
qualityStats = {
- { "reapply_enemy_shock_on_consuming_enemy_shock_chance_%", 1 },
+ { "lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock", 0.25 },
},
levels = {
- [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 17, }, },
- [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 19, }, },
- [3] = { critChance = 10, levelRequirement = 6, cost = { Mana = 22, }, },
- [4] = { critChance = 10, levelRequirement = 10, cost = { Mana = 25, }, },
- [5] = { critChance = 10, levelRequirement = 14, cost = { Mana = 28, }, },
- [6] = { critChance = 10, levelRequirement = 18, cost = { Mana = 32, }, },
- [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 36, }, },
- [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 41, }, },
- [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 47, }, },
- [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 53, }, },
- [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 60, }, },
- [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 68, }, },
- [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 77, }, },
- [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 87, }, },
- [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 99, }, },
- [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 112, }, },
- [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 127, }, },
- [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 143, }, },
- [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 162, }, },
- [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 184, }, },
- [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 208, }, },
- [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 235, }, },
- [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 266, }, },
- [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 302, }, },
- [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 341, }, },
- [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 386, }, },
- [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 437, }, },
- [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 495, }, },
- [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 560, }, },
- [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 634, }, },
- [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 718, }, },
- [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 812, }, },
- [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 919, }, },
- [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1040, }, },
- [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1177, }, },
- [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1333, }, },
- [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1508, }, },
- [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1707, }, },
- [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1932, }, },
- [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 2186, }, },
+ [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, },
+ [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, },
+ [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 26, }, },
+ [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 30, }, },
+ [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 35, }, },
+ [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 40, }, },
+ [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 46, }, },
+ [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 52, }, },
+ [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 59, }, },
+ [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 66, }, },
+ [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 75, }, },
+ [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 84, }, },
+ [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 94, }, },
+ [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 105, }, },
+ [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 117, }, },
+ [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 130, }, },
+ [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 144, }, },
+ [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 159, }, },
+ [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 176, }, },
+ [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 195, }, },
+ [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 215, }, },
+ [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 236, }, },
+ [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 260, }, },
+ [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 286, }, },
+ [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 314, }, },
+ [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 345, }, },
+ [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 378, }, },
+ [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 414, }, },
+ [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 453, }, },
+ [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 496, }, },
+ [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 542, }, },
+ [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 592, }, },
+ [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 646, }, },
+ [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 705, }, },
+ [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 769, }, },
+ [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 838, }, },
+ [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 913, }, },
+ [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 994, }, },
+ [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1081, }, },
+ [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1176, }, },
},
statSets = {
[1] = {
label = "Lightning Conduit",
- baseEffectiveness = 1.8200000524521,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 2.8499999046326,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "lightning_conduit",
statMap = {
["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"] = {
@@ -11024,7 +13280,7 @@ skills["LightningConduitPlayer"] = {
{ "range_backflip_conditional_distance", 30 },
{ "total_cast_time_+_ms", 1000 },
{ "active_skill_base_area_of_effect_radius", 100 },
- { "consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock", 20 },
+ { "lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock", 20 },
},
stats = {
"spell_minimum_base_lightning_damage",
@@ -11032,47 +13288,51 @@ skills["LightningConduitPlayer"] = {
"lightning_conduit_x_additional_strikes_if_consumed_a_shock",
"never_shock",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
- [1] = { 4, 11, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 5, 14, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 7, 20, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, 26, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 11, 33, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 13, 40, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 16, 49, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 19, 58, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 23, 69, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, 80, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 31, 93, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 36, 107, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 41, 123, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 47, 141, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 53, 160, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 61, 182, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 69, 206, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 78, 233, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 88, 263, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 99, 297, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 334, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 125, 376, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 141, 423, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 158, 475, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 178, 533, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 200, 599, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 224, 672, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 251, 754, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 282, 846, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 316, 949, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 355, 1065, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 399, 1196, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 448, 1343, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 503, 1509, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 565, 1695, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 635, 1906, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 715, 2144, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 805, 2414, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 906, 2719, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1021, 3064, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 6, 17, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 7, 22, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 31, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, 40, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 17, 51, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 21, 63, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 77, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 31, 92, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 37, 110, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 43, 130, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 51, 153, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 60, 179, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 69, 208, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 81, 242, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 93, 280, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 108, 323, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 124, 373, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 143, 429, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 165, 494, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 189, 568, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 217, 652, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 250, 749, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 287, 861, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 329, 988, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 378, 1135, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 435, 1305, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 500, 1500, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 575, 1725, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 662, 1985, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 762, 2286, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 878, 2635, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1013, 3040, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1170, 3511, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1353, 4058, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1565, 4695, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1813, 5439, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2103, 6308, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2442, 7325, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2839, 8516, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3304, 9913, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11081,60 +13341,60 @@ skills["LightningWarpPlayer"] = {
name = "Lightning Warp",
baseTypeName = "Lightning Warp",
color = 3,
- description = "Teleport inside the target's body, causing it to violently explode. Highlights enemies that can be Culled, and can only be used on these enemies or Ball Lightning Projectiles. The target is destroyed, and the explosion deals Lightning Damage to surrounding enemies. If targeting an enemy the explosion also creates Shocked Ground.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, },
+ description = "Teleport inside the target's body, causing it to violently explode. Highlights enemies that can be Culled, and can only be used on these enemies or Ball Lightning Projectiles. The target is destroyed, and the explosion deals Lightning damage to surrounding enemies. If targeting an enemy, the explosion also creates Shocked Ground. Creates a Lightning Infusion on successful use.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Movement] = true, [SkillType.GeneratesRemnants] = true, },
castTime = 0.5,
qualityStats = {
{ "shock_effect_+%", 0.5 },
},
levels = {
- [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 9, }, },
- [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 10, }, },
+ [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 8, }, },
+ [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 11, }, },
[4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 16, }, },
+ [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 17, }, },
[7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 24, }, },
- [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 27, }, },
- [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 35, }, },
+ [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 25, }, },
+ [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 28, }, },
+ [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 36, }, },
[13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 40, }, },
[14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 45, }, },
- [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 51, }, },
- [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 58, }, },
- [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 65, }, },
- [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 74, }, },
- [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 84, }, },
- [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 95, }, },
- [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 108, }, },
- [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 122, }, },
- [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 138, }, },
- [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 156, }, },
- [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 177, }, },
- [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 200, }, },
- [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 227, }, },
- [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 257, }, },
- [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 291, }, },
- [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 329, }, },
- [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 372, }, },
- [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 421, }, },
- [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 477, }, },
- [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 540, }, },
- [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 611, }, },
- [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 692, }, },
- [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 783, }, },
- [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 886, }, },
- [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1003, }, },
- [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1135, }, },
+ [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 50, }, },
+ [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 55, }, },
+ [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 61, }, },
+ [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 68, }, },
+ [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 83, }, },
+ [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 92, }, },
+ [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 101, }, },
+ [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 112, }, },
+ [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 123, }, },
+ [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 135, }, },
+ [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 148, }, },
+ [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 162, }, },
+ [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 178, }, },
+ [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 195, }, },
+ [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 213, }, },
+ [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 233, }, },
+ [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 254, }, },
+ [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 278, }, },
+ [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 303, }, },
+ [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 330, }, },
+ [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 360, }, },
+ [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 392, }, },
+ [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 427, }, },
+ [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 464, }, },
+ [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 505, }, },
},
statSets = {
[1] = {
label = "Lightning Warp",
baseEffectiveness = 4.0900001525879,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "teleport_ball",
baseFlags = {
spell = true,
@@ -11146,7 +13406,7 @@ skills["LightningWarpPlayer"] = {
{ "base_secondary_skill_effect_duration", 10000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"spell_minimum_base_lightning_damage",
@@ -11156,47 +13416,51 @@ skills["LightningWarpPlayer"] = {
"active_skill_show_cull_range",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 2, 30, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 2, 41, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 3, 57, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 4, 75, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 5, 95, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6, 118, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 8, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 9, 171, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 11, 203, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 13, 239, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 15, 280, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [3] = { 3, 56, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 5, 92, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6, 114, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7, 139, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 9, 168, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 11, 200, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 12, 236, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 15, 278, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 17, 325, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 20, 376, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 23, 433, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 26, 498, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 30, 571, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 34, 652, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 39, 745, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 45, 849, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 51, 967, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 58, 1100, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 66, 1251, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 75, 1421, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 85, 1614, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 97, 1834, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 110, 2083, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 125, 2366, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 141, 2688, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 161, 3055, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 183, 3473, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 208, 3950, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 237, 4496, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 269, 5120, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 307, 5835, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 350, 6654, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 400, 7594, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 457, 8675, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 522, 9918, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 597, 11350, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 684, 13001, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [13] = { 20, 378, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 23, 439, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 27, 509, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 31, 588, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 36, 678, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 41, 780, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 47, 898, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 54, 1032, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 62, 1186, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 72, 1362, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 82, 1564, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 95, 1797, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 109, 2064, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 125, 2371, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 143, 2726, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 165, 3136, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 190, 3609, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 219, 4156, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 252, 4790, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 291, 5526, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 336, 6382, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 388, 7376, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 449, 8535, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 520, 9887, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 604, 11467, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 701, 13315, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 815, 15480, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 948, 18020, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11206,7 +13470,7 @@ skills["LingeringIllusionPlayer"] = {
baseTypeName = "Lingering Illusion",
color = 3,
description = "While active, creates a short-lived illusory copy of yourself whenever you dodge roll. The copy can be damaged by enemies, and copies that are destroyed by an enemy will grant you a Power Charge.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
},
@@ -11310,7 +13574,7 @@ skills["LingeringIllusionPlayer"] = {
skills["LingeringIllusionSpawnPlayer"] = {
name = "",
hidden = true,
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, },
castTime = 1,
qualityStats = {
{ "chance_to_gain_1_more_charge_%", 1 },
@@ -11366,8 +13630,8 @@ skills["LingeringIllusionSpawnPlayer"] = {
duration = true,
},
constantStats = {
- { "base_skill_effect_duration", 600 },
- { "lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life", 20 },
+ { "base_skill_effect_duration", 1200 },
+ { "lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life", 15 },
},
stats = {
"chance_to_gain_1_more_charge_%",
@@ -11426,60 +13690,60 @@ skills["LivingBombPlayer"] = {
baseTypeName = "Living Bomb",
fromItem = true,
color = 3,
- description = "Plant a seed of Fire inside an enemy, which grows over a duration. When the duration expires, the seed explodes, damaging the enemy and all other enemies nearby.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Limit] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, },
+ description = "Plant a seed of Fire inside an enemy. Dealing enough damage to the enemy, or killing it outright, causes the seed to explode, dealing damage in an area and leaving behind a Fire Infusion Remnant.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.AreaSpell] = true, [SkillType.Limit] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, [SkillType.Triggerable] = true, },
castTime = 0.6,
qualityStats = {
- { "base_skill_effect_duration", -25 },
+ { "active_skill_ignite_chance_+%_final", 1 },
},
levels = {
- [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 0, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 8, }, },
+ [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 9, }, },
+ [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 11, }, },
+ [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 13, }, },
+ [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 20, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 23, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 26, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 29, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 36, }, },
+ [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 41, }, },
+ [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 46, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 51, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 57, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 63, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 70, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 77, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 85, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 94, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 103, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 114, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 125, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 138, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 151, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 166, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 181, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 199, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 217, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 238, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 260, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 283, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 309, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 337, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 367, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 400, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 436, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 474, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 516, }, },
},
statSets = {
[1] = {
label = "Living Bomb",
baseEffectiveness = 3.2000000476837,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "living_bomb_player",
baseFlags = {
spell = true,
@@ -11487,12 +13751,13 @@ skills["LivingBombPlayer"] = {
duration = true,
},
constantStats = {
- { "base_skill_effect_duration", 2500 },
+ { "base_skill_effect_duration", 15000 },
{ "active_skill_base_area_of_effect_radius", 25 },
{ "living_bomb_base_number_of_bombs_allowed", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "living_bomb_damage_threshold_%_of_ailment_threshold", 200 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -11501,47 +13766,51 @@ skills["LivingBombPlayer"] = {
"is_area_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 24, 37, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [2] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 30, 46, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
[6] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
[7] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 54, 82, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 75, 113, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 100, 151, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 115, 173, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 193, 290, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 219, 328, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 247, 370, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 278, 418, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 314, 470, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 353, 529, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 397, 595, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 445, 668, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 500, 750, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 561, 842, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 630, 945, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 707, 1060, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 793, 1190, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 890, 1335, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 999, 1498, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1121, 1682, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1259, 1889, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1415, 2122, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1590, 2385, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1787, 2681, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 2011, 3016, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 2263, 3395, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2549, 3824, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2873, 4310, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [8] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 92, 137, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 107, 161, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 125, 187, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 145, 217, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 168, 251, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 194, 290, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 257, 386, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 296, 444, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 340, 510, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 391, 586, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 449, 673, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 515, 773, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 592, 888, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 680, 1020, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 781, 1172, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1033, 1549, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1189, 1783, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1369, 2054, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1578, 2367, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1821, 2731, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2102, 3153, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2430, 3645, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2812, 4218, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3257, 4886, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 3777, 5666, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4386, 6579, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 5099, 7649, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 5936, 8904, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11670,11 +13939,11 @@ skills["ManaDrainPlayer"] = {
baseTypeName = "Mana Drain",
fromItem = true,
color = 3,
- description = "Siphon power from an enemy, briefly Hindering them and Leeching Mana.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Leech Mana from an enemy over a prolonged period, as well as briefly Hindering them.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.85,
qualityStats = {
- { "mana_drain_base_mana_leech_amount", 1.5 },
+ { "mana_drain_base_mana_leech_amount", 4.5 },
},
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 0, }, },
@@ -11728,53 +13997,54 @@ skills["ManaDrainPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_mana_leech_rate_+%", -70 },
},
stats = {
"mana_drain_base_mana_leech_amount",
"can_perform_skill_while_moving",
},
levels = {
- [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 12, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 18, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 22, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 28, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 36, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 42, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 48, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 54, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 62, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 70, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 78, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 86, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 94, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 104, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 114, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 126, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 136, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 148, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 160, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 174, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 186, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 200, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 214, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 226, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 240, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 256, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 270, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 284, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 300, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 316, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 332, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 348, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 364, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 382, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 398, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 416, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 432, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 36, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 48, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 54, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 66, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 84, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 96, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 108, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 126, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 144, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 162, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 186, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 210, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 234, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 258, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 282, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 312, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 342, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 378, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 408, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 444, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 480, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 522, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 558, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 600, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 642, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 678, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 720, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 768, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 810, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 852, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 900, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 948, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 996, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1044, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1092, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1146, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1194, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1248, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1296, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11787,7 +14057,7 @@ skills["ManaRemnantsPlayer"] = {
skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.TotemCastsAlone] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, },
castTime = 0,
qualityStats = {
- { "mana_remnants_mana_gain_per_globe", 1.5 },
+ { "mana_remnants_mana_gain_per_globe", 2 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -11850,46 +14120,46 @@ skills["ManaRemnantsPlayer"] = {
"base_deal_no_damage",
},
levels = {
- [1] = { 21, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 24, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 29, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 35, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 41, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 50, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 59, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 68, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 78, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 89, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 100, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 112, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 125, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 138, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 152, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 166, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 171, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 186, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 201, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 208, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 224, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 241, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 258, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 275, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 292, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 309, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 326, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 343, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 360, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 377, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 394, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 411, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 428, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 445, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 462, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 479, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 496, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 513, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 530, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 547, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 28, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 32, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 39, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 47, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 55, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 68, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 80, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 92, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 105, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 120, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 135, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 151, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 169, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 186, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 205, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 224, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 231, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 251, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 271, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 281, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 302, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 325, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 348, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 371, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 394, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 417, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 440, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 463, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 486, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 509, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 532, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 555, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 578, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 601, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 624, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 647, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 670, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 693, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 716, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 738, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11898,11 +14168,11 @@ skills["ManaTempestPlayer"] = {
name = "Mana Tempest",
baseTypeName = "Mana Tempest",
color = 3,
- description = "Create a storm of arcane energies that Empowers your Mana-costing Spells while you remain inside it. Maintaining the storm constantly drains your Mana, and each Spell you cast causes it to drain faster. The storm will dissipate when you exit it or run out of Mana.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, },
+ description = "Create a storm of arcane energies that Empowers your Mana-costing Spells while you remain inside it. Maintaining the storm constantly drains your Mana, and spending more causes it to drain faster. The storm will dissipate when you exit it or run out of Mana.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.6,
qualityStats = {
- { "non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff", 0.25 },
+ { "mana_tempest_effects_linger_X_ms", 100 },
},
levels = {
[1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { ManaPercentPerMinute = 60, }, },
@@ -11961,7 +14231,7 @@ skills["ManaTempestPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 26 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff",
@@ -12022,13 +14292,13 @@ skills["MantraOfDestructionPlayer"] = {
baseTypeName = "Mantra of Destruction",
color = 3,
description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to Empower your next Quarterstaff Attack, causing it to deal additional Chaos damage. Each kill with the Empowered Attack grants\nPurple Flames of Chayula for a duration.",
- skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Chaos] = true, [SkillType.HasUsageCondition] = true, },
+ skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Chaos] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 0.6,
qualityStats = {
- { "active_skill_required_number_of_combo_stacks", -0.1 },
+ { "active_skill_required_number_of_combo_stacks", -0.05 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -12081,15 +14351,15 @@ skills["MantraOfDestructionPlayer"] = {
duration = true,
},
constantStats = {
- { "active_skill_required_number_of_combo_stacks", 10 },
+ { "active_skill_required_number_of_combo_stacks", 8 },
{ "base_combo_stacks_decay_delay_ms", 8000 },
{ "skill_empowers_next_x_melee_attacks", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_skill_effect_duration", 8000 },
{ "mantra_of_destruction_purple_flame_all_damage_%_gained_as_chaos", 7 },
- { "base_secondary_skill_effect_duration", 8000 },
+ { "base_secondary_skill_effect_duration", 20000 },
},
stats = {
"mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks",
@@ -12099,46 +14369,46 @@ skills["MantraOfDestructionPlayer"] = {
"quality_display_active_skill_required_number_of_combo_stacks_is_gem",
},
levels = {
- [1] = { 22, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 23, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 24, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 25, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 27, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 29, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 30, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 31, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 32, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 34, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 35, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 36, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 37, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 38, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 39, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 40, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 41, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 42, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 43, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 44, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 45, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 46, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 47, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 48, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 49, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 50, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 51, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 52, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 53, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 54, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 55, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 56, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 57, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 58, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 59, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 60, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 61, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 51, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 52, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 53, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 54, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 55, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 56, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 57, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 58, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 59, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 60, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 61, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 62, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 63, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 64, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 65, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 66, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 67, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 68, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 69, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 70, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 71, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 72, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 73, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 74, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 76, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 77, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 78, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 79, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 80, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 81, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 82, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 83, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 84, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 85, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 86, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 87, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 88, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 89, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -12147,60 +14417,60 @@ skills["OrbOfStormsPlayer"] = {
name = "Orb of Storms",
baseTypeName = "Orb of Storms",
color = 3,
- description = "Create an Orb of electricity that fires Chaining Lightning bolts at nearby enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, },
+ description = "Create an Orb of electricity that fires Chaining Lightning bolts at nearby enemies. The Orb leaves behind a Lightning Infusion Remnant when it expires.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesInfusion] = true, [SkillType.GeneratesRemnants] = true, },
castTime = 0.8,
qualityStats = {
{ "number_of_chains", 0.15 },
},
levels = {
- [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 14, }, },
- [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 15, }, },
+ [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 12, }, },
+ [2] = { critChance = 10, levelRequirement = 3, cost = { Mana = 14, }, },
[3] = { critChance = 10, levelRequirement = 6, cost = { Mana = 17, }, },
[4] = { critChance = 10, levelRequirement = 10, cost = { Mana = 20, }, },
[5] = { critChance = 10, levelRequirement = 14, cost = { Mana = 23, }, },
[6] = { critChance = 10, levelRequirement = 18, cost = { Mana = 26, }, },
- [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 29, }, },
- [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 33, }, },
- [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 37, }, },
- [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 42, }, },
- [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 48, }, },
- [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 54, }, },
- [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 61, }, },
- [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 70, }, },
- [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 79, }, },
- [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 89, }, },
- [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 101, }, },
- [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 115, }, },
- [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 130, }, },
- [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 147, }, },
- [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 166, }, },
- [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 188, }, },
- [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 213, }, },
- [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 241, }, },
- [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 273, }, },
- [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 309, }, },
- [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 350, }, },
- [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 396, }, },
- [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 448, }, },
- [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 507, }, },
- [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 574, }, },
- [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 650, }, },
- [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 735, }, },
- [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 832, }, },
- [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 942, }, },
- [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1066, }, },
- [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1206, }, },
- [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1365, }, },
- [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1545, }, },
- [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 1749, }, },
+ [7] = { critChance = 10, levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { critChance = 10, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { critChance = 10, levelRequirement = 31, cost = { Mana = 39, }, },
+ [10] = { critChance = 10, levelRequirement = 36, cost = { Mana = 44, }, },
+ [11] = { critChance = 10, levelRequirement = 41, cost = { Mana = 49, }, },
+ [12] = { critChance = 10, levelRequirement = 46, cost = { Mana = 55, }, },
+ [13] = { critChance = 10, levelRequirement = 52, cost = { Mana = 62, }, },
+ [14] = { critChance = 10, levelRequirement = 58, cost = { Mana = 69, }, },
+ [15] = { critChance = 10, levelRequirement = 64, cost = { Mana = 77, }, },
+ [16] = { critChance = 10, levelRequirement = 66, cost = { Mana = 86, }, },
+ [17] = { critChance = 10, levelRequirement = 72, cost = { Mana = 95, }, },
+ [18] = { critChance = 10, levelRequirement = 78, cost = { Mana = 105, }, },
+ [19] = { critChance = 10, levelRequirement = 84, cost = { Mana = 117, }, },
+ [20] = { critChance = 10, levelRequirement = 90, cost = { Mana = 129, }, },
+ [21] = { critChance = 10, levelRequirement = 90, cost = { Mana = 142, }, },
+ [22] = { critChance = 10, levelRequirement = 90, cost = { Mana = 157, }, },
+ [23] = { critChance = 10, levelRequirement = 90, cost = { Mana = 172, }, },
+ [24] = { critChance = 10, levelRequirement = 90, cost = { Mana = 189, }, },
+ [25] = { critChance = 10, levelRequirement = 90, cost = { Mana = 208, }, },
+ [26] = { critChance = 10, levelRequirement = 90, cost = { Mana = 228, }, },
+ [27] = { critChance = 10, levelRequirement = 90, cost = { Mana = 250, }, },
+ [28] = { critChance = 10, levelRequirement = 90, cost = { Mana = 274, }, },
+ [29] = { critChance = 10, levelRequirement = 90, cost = { Mana = 300, }, },
+ [30] = { critChance = 10, levelRequirement = 90, cost = { Mana = 328, }, },
+ [31] = { critChance = 10, levelRequirement = 90, cost = { Mana = 359, }, },
+ [32] = { critChance = 10, levelRequirement = 90, cost = { Mana = 392, }, },
+ [33] = { critChance = 10, levelRequirement = 90, cost = { Mana = 428, }, },
+ [34] = { critChance = 10, levelRequirement = 90, cost = { Mana = 467, }, },
+ [35] = { critChance = 10, levelRequirement = 90, cost = { Mana = 509, }, },
+ [36] = { critChance = 10, levelRequirement = 90, cost = { Mana = 555, }, },
+ [37] = { critChance = 10, levelRequirement = 90, cost = { Mana = 605, }, },
+ [38] = { critChance = 10, levelRequirement = 90, cost = { Mana = 658, }, },
+ [39] = { critChance = 10, levelRequirement = 90, cost = { Mana = 716, }, },
+ [40] = { critChance = 10, levelRequirement = 90, cost = { Mana = 779, }, },
},
statSets = {
[1] = {
label = "Orb of Storms",
- baseEffectiveness = 1.0900000333786,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0074999998323619,
+ baseEffectiveness = 1.1000000238419,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.008899999782443,
statDescriptionScope = "orb_of_storms",
baseFlags = {
spell = true,
@@ -12209,67 +14479,71 @@ skills["OrbOfStormsPlayer"] = {
constantStats = {
{ "arc_chain_distance", 35 },
{ "active_skill_base_area_of_effect_radius", 56 },
- { "active_skill_base_secondary_area_of_effect_radius", 28 },
+ { "active_skill_base_secondary_area_of_effect_radius", 36 },
{ "orb_of_storms_base_maximum_number_of_orbs", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "orb_of_storms_minimum_placement_range_%", 25 },
{ "orb_of_storms_maximum_placement_range_%", 75 },
- { "base_skill_effect_duration", 10000 },
+ { "base_skill_effect_duration", 12000 },
+ { "orb_of_storms_maximum_number_of_hits", 6 },
+ { "orb_of_storms_base_bolt_frequency_ms", 4000 },
},
stats = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
- "orb_of_storms_maximum_number_of_hits",
- "orb_of_storms_base_bolt_frequency_ms",
"number_of_chains",
"skill_can_add_multiple_charges_per_action",
"damage_cannot_be_reflected_or_leech_if_used_by_other_object",
"disable_visual_hit_effect",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
- [1] = { 2, 6, 10, 3500, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 3, 9, 11, 3450, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, 12, 12, 3400, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 5, 16, 13, 3350, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 7, 20, 14, 3300, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 8, 24, 15, 3250, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 10, 30, 16, 3200, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 12, 35, 17, 3150, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 14, 42, 18, 3100, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 16, 49, 19, 3050, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 19, 57, 20, 3000, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 22, 66, 21, 2950, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 25, 76, 22, 2900, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 29, 88, 23, 2850, 4, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 33, 100, 24, 2800, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 38, 114, 25, 2750, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 43, 130, 26, 2700, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 49, 148, 27, 2650, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 56, 168, 28, 2600, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 63, 190, 29, 2550, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 72, 215, 30, 2500, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 81, 243, 31, 2450, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 92, 275, 32, 2400, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 104, 311, 33, 2350, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 117, 351, 34, 2300, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 132, 396, 35, 2250, 6, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 149, 448, 36, 2200, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 168, 505, 37, 2150, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 190, 571, 38, 2100, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 215, 645, 39, 2050, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 243, 728, 39, 2000, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 274, 823, 40, 1950, 7, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 310, 931, 40, 1900, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 351, 1053, 41, 1850, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 397, 1192, 41, 1800, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 450, 1351, 42, 1750, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 510, 1531, 42, 1700, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 579, 1737, 43, 1650, 8, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 657, 1972, 43, 1600, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 747, 2241, 44, 1550, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 8, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 11, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1, 15, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1, 19, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1, 25, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 2, 30, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 2, 37, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 2, 44, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 3, 53, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3, 62, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 4, 73, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 4, 85, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 98, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 6, 114, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7, 131, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 8, 151, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 9, 173, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 10, 198, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 12, 227, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 14, 260, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 16, 297, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 18, 339, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 20, 387, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 23, 442, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 27, 505, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 30, 577, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 35, 659, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 40, 754, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 45, 862, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 52, 986, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 59, 1129, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 68, 1294, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 78, 1483, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 90, 1702, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 103, 1955, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 118, 2248, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 136, 2588, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 157, 2981, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 181, 3439, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 209, 3971, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -12279,53 +14553,53 @@ skills["PainOfferingPlayer"] = {
baseTypeName = "Pain Offering",
color = 3,
description = "Skewer a Skeleton on a bone spike to send nearby Minions into a frenzy as long as the spike remains, making their skills faster and harder hitting.\n\nThe bone spike is itself a Minion. If it dies, the effect ends immediately.",
- skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, },
+ skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Triggerable] = true, },
minionSkillTypes = { [SkillType.Aura] = true, },
castTime = 0.6,
qualityStats = {
{ "active_skill_base_area_of_effect_radius", 1.2 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 26, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 25, }, },
[2] = { levelRequirement = 3, cost = { Mana = 28, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 31, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 34, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 38, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 42, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 46, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 50, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 32, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 35, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 39, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 43, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 47, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 51, }, },
[9] = { levelRequirement = 31, cost = { Mana = 55, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 61, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 67, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 73, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 80, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 88, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 97, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 107, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 117, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 129, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 141, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 171, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 187, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 206, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 226, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 248, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 273, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 300, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 329, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 361, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 397, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 436, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 479, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 526, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 577, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 634, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 696, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 764, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 839, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 922, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1012, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 59, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 64, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 68, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 73, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 78, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 83, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 88, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 93, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 99, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 104, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 116, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 122, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 129, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 135, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 156, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 164, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 171, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 179, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 195, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 204, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 213, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 222, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 231, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 240, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 250, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 260, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 270, }, },
},
statSets = {
[1] = {
@@ -12352,7 +14626,7 @@ skills["PainOfferingPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 60 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_number_of_pain_offerings_allowed", 1 },
},
stats = {
@@ -12413,7 +14687,7 @@ skills["PowerSiphonPlayer"] = {
fromItem = true,
color = 3,
description = "Attempt to rip the lifeforce from an enemy. Enemies within Culling range will be highlighted and instantly killed on Hit, granting a Power Charge. Can only target Enemies in Culling range.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.GeneratesCharges] = true, [SkillType.Physical] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.GeneratesCharges] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "chance_to_gain_1_more_charge_%", 0.5 },
@@ -12463,9 +14737,9 @@ skills["PowerSiphonPlayer"] = {
statSets = {
[1] = {
label = "Power Siphon",
- baseEffectiveness = 1.2000000476837,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ baseEffectiveness = 1.3400000333786,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "power_siphon",
baseFlags = {
spell = true,
@@ -12473,7 +14747,7 @@ skills["PowerSiphonPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"spell_minimum_base_physical_damage",
@@ -12483,47 +14757,51 @@ skills["PowerSiphonPlayer"] = {
"can_perform_skill_while_moving",
"spells_have_culling_strike",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
- [1] = { 3, 6, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 4, 8, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, 11, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 8, 15, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 10, 19, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 12, 23, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [1] = { 3, 5, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 4, 7, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6, 10, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7, 14, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 10, 18, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 12, 22, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
[7] = { 15, 28, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 18, 33, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 21, 39, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 25, 46, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 29, 53, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, 61, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 38, 70, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 43, 80, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 49, 92, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 56, 104, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 63, 118, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 72, 133, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 81, 151, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 91, 170, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 103, 191, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 116, 215, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 130, 242, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 146, 271, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 164, 305, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 184, 342, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 207, 384, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 232, 431, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 260, 483, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 292, 542, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 328, 609, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 368, 683, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 413, 767, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 464, 862, 132, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 522, 969, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 587, 1089, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 660, 1225, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 743, 1379, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 836, 1553, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 943, 1751, 156, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [8] = { 18, 34, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 22, 41, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 26, 49, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 32, 59, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 37, 68, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 43, 79, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 49, 91, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 56, 104, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 64, 120, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 74, 137, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 84, 156, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 96, 178, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 109, 202, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 124, 230, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 141, 262, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 160, 297, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 182, 337, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 206, 383, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 234, 435, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 266, 494, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 302, 561, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 343, 638, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 390, 725, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 444, 825, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 505, 938, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 575, 1068, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 656, 1217, 132, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 748, 1388, 136, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 853, 1584, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 974, 1810, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1114, 2069, 148, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1275, 2367, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1460, 2711, 156, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -12533,59 +14811,59 @@ skills["ProfaneRitualPlayer"] = {
baseTypeName = "Profane Ritual",
color = 3,
description = "Mark a Corpse with a profane rune, dealing Chaos damage over time to nearby enemies. When the ritual is complete the Corpse is consumed and you gain a Power Charge.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.GeneratesCharges] = true, [SkillType.CreatesGroundRune] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.GeneratesCharges] = true, [SkillType.CreatesGroundRune] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
- { "base_chance_to_not_consume_corpse_%", 1 },
+ { "base_chance_to_not_consume_corpse_%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 7, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 9, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 8, }, },
[4] = { levelRequirement = 10, cost = { Mana = 10, }, },
[5] = { levelRequirement = 14, cost = { Mana = 11, }, },
[6] = { levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 14, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 16, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 17, }, },
[9] = { levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 24, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 27, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 22, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 28, }, },
[13] = { levelRequirement = 52, cost = { Mana = 31, }, },
[14] = { levelRequirement = 58, cost = { Mana = 35, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 40, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 45, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 51, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 58, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 65, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 74, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 84, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 95, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 107, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 122, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 138, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 156, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 176, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 200, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 226, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 256, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 328, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 371, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 420, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 475, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 538, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 609, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 689, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 780, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 883, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 39, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 43, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 48, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 53, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 59, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 65, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 71, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 79, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 87, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 95, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 105, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 115, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 126, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 138, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 151, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 181, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 216, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 236, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 257, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 280, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 305, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 332, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 361, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 393, }, },
},
statSets = {
[1] = {
label = "Profane Ritual",
baseEffectiveness = 12.5,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
+ incrementalEffectiveness = 0.17000000178814,
+ damageIncrementalEffectiveness = 0.010599999688566,
statDescriptionScope = "ritual_of_power",
baseFlags = {
spell = true,
@@ -12597,7 +14875,7 @@ skills["ProfaneRitualPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 22 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_chaos_damage_to_deal_per_minute",
@@ -12606,45 +14884,45 @@ skills["ProfaneRitualPlayer"] = {
},
levels = {
[1] = { 809, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 1193, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1739, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 2358, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 3060, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 3854, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 4753, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 5770, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 6921, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 8224, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 9700, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 11372, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 13268, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 15418, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 17859, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 20632, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 23785, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 27373, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 31460, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 36119, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 41435, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 47509, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 54454, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 62404, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 71515, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 81967, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 93972, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 107776, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 123668, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 141985, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 163124, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 187549, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 215807, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 248541, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 286509, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 330608, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 381893, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 441618, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 511266, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 592599, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [2] = { 1177, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1703, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 2306, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 2994, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 3781, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 4679, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 5706, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6880, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 8222, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 9758, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 11517, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 13532, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15844, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 18498, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 21548, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 25056, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 29097, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 33754, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 39130, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 45342, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 52530, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 60856, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 70513, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 81730, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 94774, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 109966, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 127683, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 148373, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 172572, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 200916, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 234163, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 273221, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 319176, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 373331, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 437248, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 512807, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 602275, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 708382, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 834432, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -13016,7 +15294,7 @@ skills["RagingSpiritsPlayer"] = {
"SummonedRagingSpirit",
},
color = 3,
- description = "While active, Fire Spells you use yourself will also summon Raging Spirits, which are short-lived flaming skulls that rush at nearby enemies and rapidly Attack them. Enemies will not directly engage these Minions, and can pass through them.",
+ description = "While active, Fire Spells you use yourself will also summon Raging Spirits, which are short-lived flaming skulls that rush at nearby enemies and rapidly Attack them, ignoring commands. Enemies will not directly engage these Minions, and can pass through them.",
skillTypes = { [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.Fire] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.Limit] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, },
castTime = 1,
@@ -13139,53 +15417,53 @@ skills["RaiseZombiePlayer"] = {
},
color = 3,
description = "Consume a Corpse or Power Charge to create a short-lived Zombie. Zombies created from Power Charges are Empowered.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.CreatesMinion] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Physical] = true, [SkillType.ConsumesCharges] = true, [SkillType.Limit] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.CreatesMinion] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Physical] = true, [SkillType.ConsumesCharges] = true, [SkillType.Limit] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, },
castTime = 0.6,
qualityStats = {
- { "active_skill_minion_movement_velocity_+%_final", 1 },
+ { "raise_zombie_empowerment_effect_+%", 1.25 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 11, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 12, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 14, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 10, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 11, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 13, }, },
[4] = { levelRequirement = 10, cost = { Mana = 16, }, },
[5] = { levelRequirement = 14, cost = { Mana = 18, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 23, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 26, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 29, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 33, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 38, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 43, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 21, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 24, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 27, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 31, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 35, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 39, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 44, }, },
[13] = { levelRequirement = 52, cost = { Mana = 49, }, },
[14] = { levelRequirement = 58, cost = { Mana = 55, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 71, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 80, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 91, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 103, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 116, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 132, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 149, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 169, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 191, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 216, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 245, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 277, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 314, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 355, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 402, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 455, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 515, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 583, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 660, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 747, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 846, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 957, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1083, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1226, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1388, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 61, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 68, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 75, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 83, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 92, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 113, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 124, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 137, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 150, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 165, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 181, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 199, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 218, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 238, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 261, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 285, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 311, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 340, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 371, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 440, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 480, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 522, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 568, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 618, }, },
},
statSets = {
[1] = {
@@ -13205,7 +15483,7 @@ skills["RaiseZombiePlayer"] = {
{ "zombie_base_decay_rate_permyriad", 0 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "power_charged_zombie_movement_speed_+%_final", 25 },
{ "power_charged_zombie_hit_damage_+%_final", 100 },
{ "power_charged_zombie_damage_taken_-%_final", 30 },
@@ -13260,6 +15538,256 @@ skills["RaiseZombiePlayer"] = {
},
}
}
+skills["RavenousSwarmPlayer"] = {
+ name = "Ravenous Swarm",
+ baseTypeName = "Ravenous Swarm",
+ minionList = {
+ "RavenousSwarm",
+ },
+ color = 3,
+ description = "While active and enemies are present, swarms of insects emerge from your body to pursue nearby enemies. The swarms are untargetable Minions that Attack and Poison enemies.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, },
+ minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.5 },
+ },
+ levels = {
+ [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Ravenous Swarm",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ravenous_swarm",
+ baseFlags = {
+ spell = true,
+ minion = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 40 },
+ { "ravenous_swarm_create_new_swarm_every_X_ms", 6000 },
+ { "ravenous_swarm_maximum_swarm_count", 3 },
+ },
+ stats = {
+ "base_skill_effect_duration",
+ "base_deal_no_damage",
+ "display_statset_no_hit_damage",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 6200, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6400, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6600, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6800, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7000, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7200, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7400, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7600, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7800, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 8000, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 8200, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 8400, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 8600, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 8800, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 9000, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 9200, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9400, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 9600, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 9800, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 10000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 10200, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 10400, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 10600, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 10800, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 11000, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 11200, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 11400, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 11600, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 11800, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 11900, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 12000, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 12100, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 12200, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 12300, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 12400, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 12500, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 12600, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 12700, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 12800, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ReapPlayer"] = {
+ name = "Reap",
+ baseTypeName = "Reap",
+ fromItem = true,
+ color = 3,
+ description = "Conjure a bloody scythe that sweeps across the targeted area, dealing Physical damage to enemies and applying Critical Weakness. Cannot be Triggered.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.UsableWhileMoving] = true, },
+ castTime = 1.2,
+ qualityStats = {
+ { "base_skill_effect_duration", 100 },
+ },
+ levels = {
+ [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Reap",
+ baseEffectiveness = 4.3000001907349,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "reap",
+ baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 25 },
+ { "base_skill_effect_duration", 6000 },
+ },
+ stats = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ "life_gained_on_cull",
+ "is_area_damage",
+ "active_skill_show_cull_range",
+ "kill_enemy_on_hit_if_under_10%_life",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "cannot_cancel_skill_before_contact_point",
+ },
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
+ levels = {
+ [1] = { 11, 16, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 15, 22, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 21, 31, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 27, 41, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 35, 52, 19, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 44, 66, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 55, 82, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 66, 100, 35, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 81, 121, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 97, 146, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 116, 174, 58, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 135, 202, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 156, 234, 79, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 180, 269, 90, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 206, 309, 103, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 236, 354, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 270, 405, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 308, 462, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 351, 527, 168, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 400, 599, 188, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 454, 682, 210, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 516, 775, 233, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 587, 880, 257, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 666, 999, 282, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 757, 1135, 308, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 859, 1289, 335, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 976, 1464, 364, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1108, 1663, 393, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1259, 1889, 423, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1432, 2148, 455, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1628, 2443, 488, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1853, 2779, 521, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2110, 3165, 556, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 2404, 3606, 592, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2741, 4112, 629, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 3129, 4693, 667, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 3573, 5360, 705, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 4085, 6128, 746, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 4675, 7012, 787, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 5354, 8031, 829, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["MetaReapersInvocationPlayer"] = {
name = "Reaper's Invocation",
baseTypeName = "Reaper's Invocation",
@@ -13271,46 +15799,46 @@ skills["MetaReapersInvocationPlayer"] = {
{ "energy_generated_+%", 1 },
},
levels = {
- [1] = { spiritReservationFlat = 60, levelRequirement = 0, },
- [2] = { spiritReservationFlat = 60, levelRequirement = 3, },
- [3] = { spiritReservationFlat = 60, levelRequirement = 6, },
- [4] = { spiritReservationFlat = 60, levelRequirement = 10, },
- [5] = { spiritReservationFlat = 60, levelRequirement = 14, },
- [6] = { spiritReservationFlat = 60, levelRequirement = 18, },
- [7] = { spiritReservationFlat = 60, levelRequirement = 22, },
- [8] = { spiritReservationFlat = 60, levelRequirement = 26, },
- [9] = { spiritReservationFlat = 60, levelRequirement = 31, },
- [10] = { spiritReservationFlat = 60, levelRequirement = 36, },
- [11] = { spiritReservationFlat = 60, levelRequirement = 41, },
- [12] = { spiritReservationFlat = 60, levelRequirement = 46, },
- [13] = { spiritReservationFlat = 60, levelRequirement = 52, },
- [14] = { spiritReservationFlat = 60, levelRequirement = 58, },
- [15] = { spiritReservationFlat = 60, levelRequirement = 64, },
- [16] = { spiritReservationFlat = 60, levelRequirement = 66, },
- [17] = { spiritReservationFlat = 60, levelRequirement = 72, },
- [18] = { spiritReservationFlat = 60, levelRequirement = 78, },
- [19] = { spiritReservationFlat = 60, levelRequirement = 84, },
- [20] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [21] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [22] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [23] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [24] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [25] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [26] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [27] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [28] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [29] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [30] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [31] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [32] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [33] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [34] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [35] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [36] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [37] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [38] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [39] = { spiritReservationFlat = 60, levelRequirement = 90, },
- [40] = { spiritReservationFlat = 60, levelRequirement = 90, },
+ [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
},
statSets = {
[1] = {
@@ -13321,7 +15849,7 @@ skills["MetaReapersInvocationPlayer"] = {
},
constantStats = {
{ "generic_ongoing_trigger_maximum_energy", 500 },
- { "melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill", 1500 },
+ { "melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill", 3000 },
},
stats = {
"energy_generated_+%",
@@ -13380,6 +15908,8 @@ skills["SupportReapersInvocationPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -13426,7 +15956,7 @@ skills["SupportReapersInvocationPlayer"] = {
[1] = {
label = "SupportReapersInvocationPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -13434,8 +15964,7 @@ skills["SupportReapersInvocationPlayer"] = {
},
stats = {
"triggered_by_generic_ongoing_trigger",
- "display_generic_ongoing_triggerer_is_invocation_skill",
- "skill_cannot_generate_energy",
+ "generic_ongoing_triggerer_is_invocation_skill",
},
levels = {
[1] = { actorLevel = 1, },
@@ -13487,7 +16016,7 @@ skills["SacrificePlayer"] = {
baseTypeName = "Sacrifice",
color = 3,
description = "While active, your undead Reviving Minions can be used in place of Corpses by your skills, but your Minions Revive more slowly.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Minion] = true, },
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Minion] = true, [SkillType.ReserveInAllSets] = true, },
castTime = 1,
qualityStats = {
{ "harvester_minion_resummon_speed_+%_final", 0.25 },
@@ -13601,63 +16130,61 @@ skills["ShatteringPalmPlayer"] = {
name = "Shattering Palm",
baseTypeName = "Shattering Palm",
color = 3,
- description = "Dash to an enemy and Strike them with an Unarmed Attack that manifests a wave of cold, coating nearby enemies in shards of ice. Dealing enough damage to these enemies will shatter the shards, causing an icy explosion that deals Attack damage. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, },
+ description = "Dash to an enemy and Strike them with an Attack that manifests a wave of cold, coating nearby enemies in shards of ice. Dealing enough damage to these enemies will shatter the shards, causing an icy explosion that deals Attack damage.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
- ["None"] = true,
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "additional_base_critical_strike_chance", 10 },
+ { "active_skill_critical_strike_chance_+%_final", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 6, }, },
+ [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.38, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.42, levelRequirement = 6, cost = { Mana = 7, }, },
[4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.46, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.5, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.54, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.64, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.78, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 58, cost = { Mana = 23, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.86, levelRequirement = 64, cost = { Mana = 25, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 66, cost = { Mana = 28, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.5, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.54, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.64, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.67, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 41, cost = { Mana = 18, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.74, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.78, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.81, levelRequirement = 58, cost = { Mana = 24, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.86, levelRequirement = 64, cost = { Mana = 26, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 66, cost = { Mana = 29, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 72, cost = { Mana = 31, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 78, cost = { Mana = 35, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.04, levelRequirement = 84, cost = { Mana = 39, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 90, cost = { Mana = 43, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 47, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 53, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.26, levelRequirement = 90, cost = { Mana = 58, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 65, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 72, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 90, cost = { Mana = 80, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 88, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 98, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 90, cost = { Mana = 109, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.78, levelRequirement = 90, cost = { Mana = 120, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 133, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 148, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 164, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 182, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 201, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 90, cost = { Mana = 223, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 247, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 274, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 304, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 337, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 78, cost = { Mana = 34, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.04, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.15, levelRequirement = 90, cost = { Mana = 43, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 90, cost = { Mana = 46, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.26, levelRequirement = 90, cost = { Mana = 50, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 90, cost = { Mana = 58, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 90, cost = { Mana = 62, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.54, levelRequirement = 90, cost = { Mana = 67, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 90, cost = { Mana = 71, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 90, cost = { Mana = 77, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.78, levelRequirement = 90, cost = { Mana = 82, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.87, levelRequirement = 90, cost = { Mana = 88, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 90, cost = { Mana = 94, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 100, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 90, cost = { Mana = 107, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.27, levelRequirement = 90, cost = { Mana = 114, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 90, cost = { Mana = 122, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 130, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.63, levelRequirement = 90, cost = { Mana = 138, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 90, cost = { Mana = 147, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 157, }, },
},
statSets = {
[1] = {
label = "Melee",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "shattering_palm",
baseFlags = {
attack = true,
@@ -13668,57 +16195,57 @@ skills["ShatteringPalmPlayer"] = {
constantStats = {
{ "melee_conditional_step_distance", 10 },
{ "base_melee_dash_range", 65 },
- { "additional_base_critical_strike_chance", 900 },
{ "active_skill_base_area_of_effect_radius", 38 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
},
stats = {
- "attack_minimum_added_cold_damage",
- "attack_maximum_added_cold_damage",
"shattering_palm_debuff_damage_threshold",
"global_always_hit",
"is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 6, 9, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, 189, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, 282, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, 402, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, 555, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, 749, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, 995, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, 1379, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, 1881, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, 2532, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, 3546, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, 4673, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, 6410, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, 8716, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, 12304, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, 16487, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, 22942, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, 31724, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, 38477, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 32, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 46, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 68, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 141, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 269, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 472, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 708, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 971, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 1370, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 1839, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 2376, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3052, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 3880, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 4664, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 5836, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 6893, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 8129, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9743, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 11367, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 12788, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 13640, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 13640, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 13640, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 13640, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 13640, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 13640, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 13640, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 13640, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 13640, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 13640, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 13640, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 13640, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 13640, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 13640, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 13640, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 13640, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 13640, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 13640, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 13640, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 13640, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -13726,62 +16253,60 @@ skills["ShatteringPalmPlayer"] = {
skills["ShatteringPalmExplosionPlayer"] = {
name = "Freezing Explosion",
hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Nova] = true, [SkillType.Cold] = true, [SkillType.UseGlobalStats] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Triggered] = true, },
weaponTypes = {
- ["None"] = true,
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "additional_base_critical_strike_chance", 10 },
+ { "active_skill_critical_strike_chance_+%_final", 1 },
},
levels = {
- [1] = { baseMultiplier = 1.15, levelRequirement = 0, },
- [2] = { baseMultiplier = 1.27, levelRequirement = 0, },
- [3] = { baseMultiplier = 1.39, levelRequirement = 0, },
- [4] = { baseMultiplier = 1.52, levelRequirement = 0, },
- [5] = { baseMultiplier = 1.64, levelRequirement = 0, },
- [6] = { baseMultiplier = 1.76, levelRequirement = 0, },
- [7] = { baseMultiplier = 1.88, levelRequirement = 0, },
- [8] = { baseMultiplier = 2, levelRequirement = 0, },
- [9] = { baseMultiplier = 2.1, levelRequirement = 0, },
- [10] = { baseMultiplier = 2.2, levelRequirement = 0, },
- [11] = { baseMultiplier = 2.31, levelRequirement = 0, },
- [12] = { baseMultiplier = 2.43, levelRequirement = 0, },
- [13] = { baseMultiplier = 2.55, levelRequirement = 0, },
- [14] = { baseMultiplier = 2.68, levelRequirement = 0, },
- [15] = { baseMultiplier = 2.81, levelRequirement = 0, },
- [16] = { baseMultiplier = 2.95, levelRequirement = 0, },
- [17] = { baseMultiplier = 3.1, levelRequirement = 0, },
- [18] = { baseMultiplier = 3.25, levelRequirement = 0, },
- [19] = { baseMultiplier = 3.42, levelRequirement = 0, },
- [20] = { baseMultiplier = 3.59, levelRequirement = 0, },
- [21] = { baseMultiplier = 3.77, levelRequirement = 0, },
- [22] = { baseMultiplier = 3.95, levelRequirement = 0, },
- [23] = { baseMultiplier = 4.15, levelRequirement = 0, },
- [24] = { baseMultiplier = 4.36, levelRequirement = 0, },
- [25] = { baseMultiplier = 4.58, levelRequirement = 0, },
- [26] = { baseMultiplier = 4.81, levelRequirement = 0, },
- [27] = { baseMultiplier = 5.05, levelRequirement = 0, },
- [28] = { baseMultiplier = 5.3, levelRequirement = 0, },
- [29] = { baseMultiplier = 5.56, levelRequirement = 0, },
- [30] = { baseMultiplier = 5.84, levelRequirement = 0, },
- [31] = { baseMultiplier = 6.13, levelRequirement = 0, },
- [32] = { baseMultiplier = 6.44, levelRequirement = 0, },
- [33] = { baseMultiplier = 6.76, levelRequirement = 0, },
- [34] = { baseMultiplier = 7.1, levelRequirement = 0, },
- [35] = { baseMultiplier = 7.46, levelRequirement = 0, },
- [36] = { baseMultiplier = 7.83, levelRequirement = 0, },
- [37] = { baseMultiplier = 8.22, levelRequirement = 0, },
- [38] = { baseMultiplier = 8.63, levelRequirement = 0, },
- [39] = { baseMultiplier = 9.06, levelRequirement = 0, },
- [40] = { baseMultiplier = 9.52, levelRequirement = 0, },
+ [1] = { baseMultiplier = 1.2, levelRequirement = 0, },
+ [2] = { baseMultiplier = 1.32, levelRequirement = 0, },
+ [3] = { baseMultiplier = 1.45, levelRequirement = 0, },
+ [4] = { baseMultiplier = 1.58, levelRequirement = 0, },
+ [5] = { baseMultiplier = 1.71, levelRequirement = 0, },
+ [6] = { baseMultiplier = 1.84, levelRequirement = 0, },
+ [7] = { baseMultiplier = 1.97, levelRequirement = 0, },
+ [8] = { baseMultiplier = 2.08, levelRequirement = 0, },
+ [9] = { baseMultiplier = 2.19, levelRequirement = 0, },
+ [10] = { baseMultiplier = 2.3, levelRequirement = 0, },
+ [11] = { baseMultiplier = 2.41, levelRequirement = 0, },
+ [12] = { baseMultiplier = 2.53, levelRequirement = 0, },
+ [13] = { baseMultiplier = 2.66, levelRequirement = 0, },
+ [14] = { baseMultiplier = 2.79, levelRequirement = 0, },
+ [15] = { baseMultiplier = 2.93, levelRequirement = 0, },
+ [16] = { baseMultiplier = 3.08, levelRequirement = 0, },
+ [17] = { baseMultiplier = 3.23, levelRequirement = 0, },
+ [18] = { baseMultiplier = 3.39, levelRequirement = 0, },
+ [19] = { baseMultiplier = 3.56, levelRequirement = 0, },
+ [20] = { baseMultiplier = 3.74, levelRequirement = 0, },
+ [21] = { baseMultiplier = 3.93, levelRequirement = 0, },
+ [22] = { baseMultiplier = 4.13, levelRequirement = 0, },
+ [23] = { baseMultiplier = 4.33, levelRequirement = 0, },
+ [24] = { baseMultiplier = 4.55, levelRequirement = 0, },
+ [25] = { baseMultiplier = 4.78, levelRequirement = 0, },
+ [26] = { baseMultiplier = 5.02, levelRequirement = 0, },
+ [27] = { baseMultiplier = 5.27, levelRequirement = 0, },
+ [28] = { baseMultiplier = 5.53, levelRequirement = 0, },
+ [29] = { baseMultiplier = 5.81, levelRequirement = 0, },
+ [30] = { baseMultiplier = 6.1, levelRequirement = 0, },
+ [31] = { baseMultiplier = 6.4, levelRequirement = 0, },
+ [32] = { baseMultiplier = 6.72, levelRequirement = 0, },
+ [33] = { baseMultiplier = 7.06, levelRequirement = 0, },
+ [34] = { baseMultiplier = 7.41, levelRequirement = 0, },
+ [35] = { baseMultiplier = 7.78, levelRequirement = 0, },
+ [36] = { baseMultiplier = 8.17, levelRequirement = 0, },
+ [37] = { baseMultiplier = 8.58, levelRequirement = 0, },
+ [38] = { baseMultiplier = 9.01, levelRequirement = 0, },
+ [39] = { baseMultiplier = 9.46, levelRequirement = 0, },
+ [40] = { baseMultiplier = 9.93, levelRequirement = 0, },
},
statSets = {
[1] = {
label = "Explosion",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "triggered_freezing_word_explosion",
baseFlags = {
area = true,
@@ -13791,181 +16316,57 @@ skills["ShatteringPalmExplosionPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 16 },
- { "active_skill_hit_damage_freeze_multiplier_+%_final", 100 },
- { "additional_base_critical_strike_chance", 1100 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
},
stats = {
- "attack_minimum_added_cold_damage",
- "attack_maximum_added_cold_damage",
"is_area_damage",
"attack_is_not_melee_override",
"triggered_by_freezing_word_bomb",
"display_statset_hide_usage_stats",
"triggerable_in_any_set",
+ "base_skill_show_average_damage_instead_of_dps",
},
levels = {
- [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["ShockNovaPlayer"] = {
- name = "Shock Nova",
- baseTypeName = "Shock Nova",
- fromItem = true,
- color = 3,
- description = "Unleash a Nova of Lightning damage to Electrocute enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 0.7,
- qualityStats = {
- { "fishing_line_strength_+%", 0.5 },
- },
- levels = {
- [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- },
- statSets = {
- [1] = {
- label = "Shock Nova",
- baseEffectiveness = 1.305999994278,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_electrocutes_as_though_dealt_damage_+%_final", 100 },
- },
- stats = {
- "spell_minimum_base_lightning_damage",
- "spell_maximum_base_lightning_damage",
- "is_area_damage",
- "can_perform_skill_while_moving",
- "base_lightning_damage_can_electrocute",
- },
- levels = {
- [1] = { 3, 8, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 5, 14, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6, 19, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 8, 24, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 10, 29, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 12, 35, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 14, 42, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 3, 62, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 4, 73, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 4, 84, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 5, 97, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6, 112, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 8, 146, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 9, 165, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 10, 187, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 11, 212, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 13, 239, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 14, 270, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 16, 304, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 18, 342, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 20, 384, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 23, 432, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 26, 485, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 29, 544, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 32, 611, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 36, 685, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 40, 769, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 45, 863, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 51, 968, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 57, 1087, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 64, 1221, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 72, 1371, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 81, 1541, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 91, 1733, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 103, 1949, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 115, 2194, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 130, 2471, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 147, 2785, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -13976,7 +16377,7 @@ skills["SigilOfPowerPlayer"] = {
fromItem = true,
color = 3,
description = "Place a Sigil on the ground, providing a powerful Spell Damage Buff to you and Allies while standing in it. The Buff becomes more powerful the more mana you spend while standing in the Sigil.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GainsStages] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.6,
qualityStats = {
{ "active_skill_base_area_of_effect_radius", 0.4 },
@@ -14048,7 +16449,7 @@ skills["SigilOfPowerPlayer"] = {
{ "base_circle_of_power_mana_%_spend_per_upgrade", 50 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_area_of_effect_radius", 30 },
},
stats = {
@@ -14057,6 +16458,9 @@ skills["SigilOfPowerPlayer"] = {
"display_sigil_of_power_stage_gain_delay",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 10, 10000, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 10, 10100, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
@@ -14102,60 +16506,175 @@ skills["SigilOfPowerPlayer"] = {
},
}
}
+skills["SiphonElementsPlayer"] = {
+ name = "Siphon Elements",
+ baseTypeName = "Siphon Elements",
+ color = 3,
+ description = "While active, has a chance to create an Infusion Remnant when you Freeze, Shock or Ignite a target.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.TotemCastsAlone] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy", 0.1 },
+ { "infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy", 0.1 },
+ { "infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy", 0.1 },
+ },
+ levels = {
+ [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Siphon Elements",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ constantStats = {
+ { "infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy", 5 },
+ { "infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy", 5 },
+ { "infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy", 5 },
+ },
+ stats = {
+ "remnant_pickup_range_+%",
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 5, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 10, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 12, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 15, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 20, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 22, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 25, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 27, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 30, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 32, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 35, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 37, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 40, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 42, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 45, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 47, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 52, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 55, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 57, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 60, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 62, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 65, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 67, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 70, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 72, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 77, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 80, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 82, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 85, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 87, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 90, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 92, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 95, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 97, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["SiphoningStrikePlayer"] = {
name = "Siphoning Strike",
baseTypeName = "Siphoning Strike",
color = 3,
- description = "Dash to a target and Strike them with your Quarterstaff. If the target is Shocked, consumes their Shock to release a Lightning shockwave around the target and grant you a Power Charge. This skill cannot be Ancestrally Boosted.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CannotSpiritStrike] = true, },
+ description = "Dash to a target and Strike them with your Quarterstaff. If the target is Shocked, Consume their Shock to release a Lightning shockwave around the target and grant you a Power Charge. This skill cannot be Ancestrally Boosted.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CannotSpiritStrike] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "active_skill_hit_damage_stun_multiplier_+%_final", 2 },
+ { "base_chance_to_daze_%", 2.5 },
},
levels = {
- [1] = { baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 7, }, },
- [2] = { baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 20, }, },
- [12] = { baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 22, }, },
- [13] = { baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 27, }, },
- [15] = { baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 30, }, },
- [16] = { baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 33, }, },
- [17] = { baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 37, }, },
- [18] = { baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 41, }, },
- [19] = { baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 45, }, },
- [20] = { baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 50, }, },
- [21] = { baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 56, }, },
- [22] = { baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 62, }, },
- [23] = { baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 69, }, },
- [24] = { baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 76, }, },
- [25] = { baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 84, }, },
- [26] = { baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 94, }, },
- [27] = { baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 104, }, },
- [28] = { baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 115, }, },
- [29] = { baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 128, }, },
- [30] = { baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 141, }, },
- [31] = { baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 157, }, },
- [32] = { baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 174, }, },
- [33] = { baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 193, }, },
- [34] = { baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 213, }, },
- [35] = { baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 237, }, },
- [36] = { baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 262, }, },
- [37] = { baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 291, }, },
- [38] = { baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 322, }, },
- [39] = { baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 357, }, },
- [40] = { baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 396, }, },
+ [1] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 7, }, },
+ [2] = { baseMultiplier = 0.82, levelRequirement = 3, cost = { Mana = 8, }, },
+ [3] = { baseMultiplier = 0.91, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { baseMultiplier = 0.99, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { baseMultiplier = 1.07, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { baseMultiplier = 1.15, levelRequirement = 18, cost = { Mana = 13, }, },
+ [7] = { baseMultiplier = 1.23, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { baseMultiplier = 1.3, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { baseMultiplier = 1.37, levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { baseMultiplier = 1.44, levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { baseMultiplier = 1.51, levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { baseMultiplier = 1.58, levelRequirement = 46, cost = { Mana = 24, }, },
+ [13] = { baseMultiplier = 1.66, levelRequirement = 52, cost = { Mana = 26, }, },
+ [14] = { baseMultiplier = 1.75, levelRequirement = 58, cost = { Mana = 29, }, },
+ [15] = { baseMultiplier = 1.83, levelRequirement = 64, cost = { Mana = 31, }, },
+ [16] = { baseMultiplier = 1.92, levelRequirement = 66, cost = { Mana = 34, }, },
+ [17] = { baseMultiplier = 2.02, levelRequirement = 72, cost = { Mana = 37, }, },
+ [18] = { baseMultiplier = 2.12, levelRequirement = 78, cost = { Mana = 40, }, },
+ [19] = { baseMultiplier = 2.23, levelRequirement = 84, cost = { Mana = 43, }, },
+ [20] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 47, }, },
+ [21] = { baseMultiplier = 2.46, levelRequirement = 90, cost = { Mana = 51, }, },
+ [22] = { baseMultiplier = 2.58, levelRequirement = 90, cost = { Mana = 55, }, },
+ [23] = { baseMultiplier = 2.71, levelRequirement = 90, cost = { Mana = 59, }, },
+ [24] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 63, }, },
+ [25] = { baseMultiplier = 2.99, levelRequirement = 90, cost = { Mana = 68, }, },
+ [26] = { baseMultiplier = 3.13, levelRequirement = 90, cost = { Mana = 73, }, },
+ [27] = { baseMultiplier = 3.29, levelRequirement = 90, cost = { Mana = 78, }, },
+ [28] = { baseMultiplier = 3.46, levelRequirement = 90, cost = { Mana = 84, }, },
+ [29] = { baseMultiplier = 3.63, levelRequirement = 90, cost = { Mana = 90, }, },
+ [30] = { baseMultiplier = 3.81, levelRequirement = 90, cost = { Mana = 96, }, },
+ [31] = { baseMultiplier = 4, levelRequirement = 90, cost = { Mana = 103, }, },
+ [32] = { baseMultiplier = 4.2, levelRequirement = 90, cost = { Mana = 110, }, },
+ [33] = { baseMultiplier = 4.41, levelRequirement = 90, cost = { Mana = 118, }, },
+ [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 126, }, },
+ [35] = { baseMultiplier = 4.86, levelRequirement = 90, cost = { Mana = 134, }, },
+ [36] = { baseMultiplier = 5.11, levelRequirement = 90, cost = { Mana = 143, }, },
+ [37] = { baseMultiplier = 5.36, levelRequirement = 90, cost = { Mana = 153, }, },
+ [38] = { baseMultiplier = 5.63, levelRequirement = 90, cost = { Mana = 163, }, },
+ [39] = { baseMultiplier = 5.91, levelRequirement = 90, cost = { Mana = 173, }, },
+ [40] = { baseMultiplier = 6.21, levelRequirement = 90, cost = { Mana = 184, }, },
},
statSets = {
[1] = {
@@ -14179,6 +16698,7 @@ skills["SiphoningStrikePlayer"] = {
"never_shock",
"global_knockback",
"base_consume_enemy_shock_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -14235,56 +16755,57 @@ skills["SiphoningStrikePlayer"] = {
{ "melee_conditional_step_distance", 10 },
{ "base_melee_dash_range", 65 },
{ "active_skill_hit_damage_stun_multiplier_+%_final", 50 },
- { "active_skill_base_area_of_effect_radius", 20 },
+ { "active_skill_base_area_of_effect_radius", 30 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
},
stats = {
"skill_can_add_multiple_charges_per_action",
"is_area_damage",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { baseMultiplier = 1.1, actorLevel = 1, },
- [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.57, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.68, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.8, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.91, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.01, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.11, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.21, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.32, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.44, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 2.56, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 2.69, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 2.82, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 2.96, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.11, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 3.27, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 3.43, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 3.6, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 3.78, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 3.97, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 4.17, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 4.38, actorLevel = 136.875, },
- [26] = { baseMultiplier = 4.6, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 4.83, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 5.07, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 5.32, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 5.59, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 5.87, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 6.16, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 6.47, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 6.79, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 7.13, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 7.49, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 7.86, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 8.26, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 8.67, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 9.1, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 2, actorLevel = 1, },
+ [2] = { baseMultiplier = 2.2, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 2.42, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 2.64, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 2.85, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 3.06, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 3.28, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 3.47, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 3.65, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 3.83, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 4.02, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 4.22, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 4.43, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 4.65, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 4.89, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 5.13, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 5.39, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 5.66, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 5.94, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 6.24, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 6.55, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 6.88, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 7.22, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 7.58, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 7.96, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 8.36, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 8.78, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 9.22, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 9.68, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 10.16, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 10.67, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 11.2, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 11.76, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 12.35, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 12.97, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 13.62, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 14.3, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 15.01, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 15.76, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 16.55, actorLevel = 288.29998779297, },
},
},
}
@@ -14297,8 +16818,8 @@ skills["SummonSkeletalArsonistsPlayer"] = {
},
color = 3,
description = "Activate to summon bomb-throwing, Reviving Skeletal Arsonists that can detonate other Minions on Command.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, },
- minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
+ minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, },
castTime = 0,
qualityStats = {
},
@@ -14357,6 +16878,7 @@ skills["SummonSkeletalArsonistsPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 15 },
},
stats = {
"is_resummoning_minion",
@@ -14414,12 +16936,12 @@ skills["SummonSkeletalBrutesPlayer"] = {
"RaisedSkeletonBrute",
},
color = 3,
- description = "Activate to summons hard-hitting, Reviving Skeletal Brutes that can Stun Primed enemies.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, },
- minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, },
+ description = "Activate to summon hard-hitting, Reviving Skeletal Brutes that can Stun Primed enemies and Warcry on Command. This Warcry Intimidates nearby enemies and Consumes Freeze on enemies and allies to deal damage in an Area around them.",
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CommandableMinion] = true, },
+ minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, },
castTime = 0,
qualityStats = {
- { "active_skill_minion_hit_damage_stun_multiplier_+%_final", 1 },
+ { "active_skill_minion_hit_damage_stun_multiplier_+%_final", 2 },
},
levels = {
[1] = { spiritReservationFlat = 165, levelRequirement = 0, },
@@ -14476,6 +16998,7 @@ skills["SummonSkeletalBrutesPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 60 },
},
stats = {
"is_resummoning_minion",
@@ -14534,11 +17057,11 @@ skills["SummonSkeletalClericsPlayer"] = {
},
color = 3,
description = "Activate to summon Reviving Skeletal Clerics that heal other minions and revive fallen Skeletons.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, },
castTime = 0,
qualityStats = {
- { "active_skill_minion_life_+%_final", 1.5 },
+ { "skeletal_cleric_revived_skeletons_immune_for_X_ms", 150 },
},
levels = {
[1] = { spiritReservationFlat = 60, levelRequirement = 0, },
@@ -14595,6 +17118,7 @@ skills["SummonSkeletalClericsPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 30 },
},
stats = {
"is_resummoning_minion",
@@ -14652,12 +17176,12 @@ skills["SummonSkeletalFrostMagesPlayer"] = {
"RaisedSkeletonFrostMage",
},
color = 3,
- description = "Activate to summon Reviving Skeletal Frost Mages that can be Commanded to cast icy explosions.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Cold] = true, [SkillType.CommandableMinion] = true, },
- minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, },
+ description = "Activate to summon Reviving Skeletal Frost Mages that can envelop your Minions in an icy shield on Command.",
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Cold] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, },
+ minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, },
castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "active_skill_minion_damage_+%_final", 1 },
},
levels = {
[1] = { spiritReservationFlat = 120, levelRequirement = 0, },
@@ -14714,6 +17238,7 @@ skills["SummonSkeletalFrostMagesPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 35 },
},
stats = {
"is_resummoning_minion",
@@ -14772,7 +17297,7 @@ skills["SummonSkeletalReaversPlayer"] = {
},
color = 3,
description = "Activate to summon aggressive, Reviving Skeletal Reavers that can enrage on Command.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.CommandableMinion] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, },
castTime = 0,
qualityStats = {
@@ -14834,6 +17359,7 @@ skills["SummonSkeletalReaversPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 6 },
},
stats = {
"is_resummoning_minion",
@@ -14892,11 +17418,11 @@ skills["SummonSkeletalSnipersPlayer"] = {
},
color = 3,
description = "Activate to summon long-ranged, Reviving Skeletal Snipers that can fire a gas arrow on Command.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.CreatesGroundEffect] = true, },
castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "active_skill_minion_damage_+%_final", 1 },
},
levels = {
[1] = { spiritReservationFlat = 90, levelRequirement = 0, },
@@ -14953,6 +17479,7 @@ skills["SummonSkeletalSnipersPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 15 },
},
stats = {
"is_resummoning_minion",
@@ -15011,7 +17538,7 @@ skills["SummonSkeletalStormMagesPlayer"] = {
},
color = 3,
description = "Activate to summon Reviving Skeletal Storm Mages that can call down a lightning storm on dead Skeletons on Command.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Lightning] = true, [SkillType.CommandableMinion] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Lightning] = true, [SkillType.CommandableMinion] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Chains] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, },
castTime = 0,
qualityStats = {
@@ -15072,6 +17599,7 @@ skills["SummonSkeletalStormMagesPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 2 },
{ "minion_base_resummon_time_ms", 12000 },
+ { "skeletal_graft_buff_effect_magnitude", 25 },
},
stats = {
"is_resummoning_minion",
@@ -15131,7 +17659,7 @@ skills["SummonSkeletalWarriorsPlayer"] = {
},
color = 3,
description = "Activate to summon Reviving Skeletal Warriors.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.CreatesSkeletonMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, },
castTime = 0,
qualityStats = {
@@ -15195,6 +17723,7 @@ skills["SummonSkeletalWarriorsPlayer"] = {
{ "minion_base_resummon_time_ms", 12000 },
{ "first_X_minions_have_0_base_spirit_reservation", 2 },
{ "skill_desired_initial_amount", 2 },
+ { "skeletal_graft_buff_effect_magnitude", 15 },
},
stats = {
"is_resummoning_minion",
@@ -15245,64 +17774,360 @@ skills["SummonSkeletalWarriorsPlayer"] = {
},
}
}
+skills["SnapPlayer"] = {
+ name = "Snap",
+ baseTypeName = "Snap",
+ color = 3,
+ description = "Consume the elemental energy from a Frozen, Shocked or Ignited enemy, creating an elemental blast that leaves behind an Infusion Remnant. The blast will spread to other enemies affected by the same Ailment, but those blasts cannot spread further. Can also be cast on a Frostbolt to create a larger cold blast.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.SkillConsumesIgnite] = true, [SkillType.SkillConsumesShock] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Unleashable] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GeneratesRemnants] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, },
+ castTime = 0.5,
+ qualityStats = {
+ { "chance_%_to_spawn_another_infusion_remnant", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 13, storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 8, }, },
+ [2] = { critChance = 13, storedUses = 1, levelRequirement = 3, cooldown = 4, cost = { Mana = 10, }, },
+ [3] = { critChance = 13, storedUses = 1, levelRequirement = 6, cooldown = 4, cost = { Mana = 12, }, },
+ [4] = { critChance = 13, storedUses = 1, levelRequirement = 10, cooldown = 4, cost = { Mana = 14, }, },
+ [5] = { critChance = 13, storedUses = 1, levelRequirement = 14, cooldown = 4, cost = { Mana = 16, }, },
+ [6] = { critChance = 13, storedUses = 1, levelRequirement = 18, cooldown = 4, cost = { Mana = 18, }, },
+ [7] = { critChance = 13, storedUses = 1, levelRequirement = 22, cooldown = 4, cost = { Mana = 21, }, },
+ [8] = { critChance = 13, storedUses = 1, levelRequirement = 26, cooldown = 4, cost = { Mana = 24, }, },
+ [9] = { critChance = 13, storedUses = 1, levelRequirement = 31, cooldown = 4, cost = { Mana = 27, }, },
+ [10] = { critChance = 13, storedUses = 1, levelRequirement = 36, cooldown = 4, cost = { Mana = 30, }, },
+ [11] = { critChance = 13, storedUses = 1, levelRequirement = 41, cooldown = 4, cost = { Mana = 34, }, },
+ [12] = { critChance = 13, storedUses = 1, levelRequirement = 46, cooldown = 4, cost = { Mana = 38, }, },
+ [13] = { critChance = 13, storedUses = 1, levelRequirement = 52, cooldown = 4, cost = { Mana = 43, }, },
+ [14] = { critChance = 13, storedUses = 1, levelRequirement = 58, cooldown = 4, cost = { Mana = 48, }, },
+ [15] = { critChance = 13, storedUses = 1, levelRequirement = 64, cooldown = 4, cost = { Mana = 53, }, },
+ [16] = { critChance = 13, storedUses = 1, levelRequirement = 66, cooldown = 4, cost = { Mana = 59, }, },
+ [17] = { critChance = 13, storedUses = 1, levelRequirement = 72, cooldown = 4, cost = { Mana = 65, }, },
+ [18] = { critChance = 13, storedUses = 1, levelRequirement = 78, cooldown = 4, cost = { Mana = 73, }, },
+ [19] = { critChance = 13, storedUses = 1, levelRequirement = 84, cooldown = 4, cost = { Mana = 80, }, },
+ [20] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 89, }, },
+ [21] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 98, }, },
+ [22] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 108, }, },
+ [23] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 119, }, },
+ [24] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 131, }, },
+ [25] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 144, }, },
+ [26] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 158, }, },
+ [27] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 173, }, },
+ [28] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 189, }, },
+ [29] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 207, }, },
+ [30] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 227, }, },
+ [31] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 248, }, },
+ [32] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 271, }, },
+ [33] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 296, }, },
+ [34] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 322, }, },
+ [35] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 352, }, },
+ [36] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 383, }, },
+ [37] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 417, }, },
+ [38] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 454, }, },
+ [39] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 495, }, },
+ [40] = { critChance = 13, storedUses = 1, levelRequirement = 90, cooldown = 4, cost = { Mana = 538, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Cold",
+ baseEffectiveness = 4.4499998092651,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "shatter",
+ baseFlags = {
+ area = true,
+ spell = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_secondary_area_of_effect_radius", 32 },
+ { "snap_proliferation_base_delay_ms", 50 },
+ { "snap_proliferation_delay_range_ms", 200 },
+ { "snap_maximum_proliferation_depth", 2 },
+ { "snap_damage_+%_final_if_created_from_unique", 50 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "can_perform_skill_while_moving",
+ "is_area_damage",
+ "skill_is_infusion_skill",
+ "never_freeze",
+ "never_shock",
+ "never_ignite",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 26, 38, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 92, 137, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 173, 260, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 201, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 233, 350, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 269, 404, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 310, 466, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 358, 536, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 411, 617, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 473, 709, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 543, 815, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 624, 936, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 717, 1075, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 823, 1235, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 945, 1418, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1086, 1630, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1249, 1873, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1436, 2155, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1653, 2480, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1904, 2856, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 2195, 3292, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2532, 3798, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 2923, 4385, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 3379, 5069, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 3910, 5865, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 4529, 6794, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 5253, 7880, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 6100, 9149, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 7091, 10637, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8255, 12383, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Lightning",
+ baseEffectiveness = 2.0299999713898,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "shatter",
+ baseFlags = {
+ area = true,
+ spell = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "snap_proliferation_base_delay_ms", 50 },
+ { "snap_proliferation_delay_range_ms", 200 },
+ { "snap_maximum_proliferation_depth", 2 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "can_perform_skill_while_moving",
+ "is_area_damage",
+ "skill_is_infusion_skill",
+ "never_freeze",
+ "never_shock",
+ "never_ignite",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 1, 15, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 1, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1, 28, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 2, 36, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 2, 46, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 3, 57, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 4, 69, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 4, 83, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 5, 99, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 6, 117, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 7, 138, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 8, 161, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 10, 188, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 11, 218, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 13, 252, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 15, 292, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 18, 336, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 20, 387, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 23, 446, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 27, 512, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 31, 589, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 36, 676, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 41, 776, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 47, 892, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 54, 1024, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 62, 1177, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 71, 1353, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 82, 1556, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 94, 1791, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 109, 2063, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 125, 2378, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 144, 2743, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 167, 3167, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 193, 3661, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 223, 4236, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 258, 4907, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 300, 5691, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 348, 6608, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 404, 7683, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 471, 8944, critChance = 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [3] = {
+ label = "Fire",
+ baseEffectiveness = 1.8099999427795,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "shatter",
+ baseFlags = {
+ area = true,
+ spell = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "snap_proliferation_base_delay_ms", 50 },
+ { "snap_proliferation_delay_range_ms", 200 },
+ { "snap_maximum_proliferation_depth", 2 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "can_perform_skill_while_moving",
+ "is_area_damage",
+ "skill_is_infusion_skill",
+ "never_freeze",
+ "never_shock",
+ "never_ignite",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 6, 8, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 8, 11, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 10, 16, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 14, 20, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 17, 26, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 21, 32, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 26, 39, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 31, 47, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 37, 56, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 44, 66, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 52, 78, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 61, 91, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 71, 106, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 82, 123, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 95, 142, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 109, 164, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 126, 189, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 145, 218, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 167, 251, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 192, 288, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 221, 331, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 254, 381, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 291, 437, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 335, 502, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 385, 577, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 442, 663, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 508, 762, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 584, 876, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 672, 1009, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 774, 1162, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 893, 1339, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 1030, 1545, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 1189, 1784, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 1374, 2062, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 1590, 2386, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 1842, 2763, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 2137, 3205, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 2481, 3721, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 2884, 4327, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 3358, 5037, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["SolarOrbPlayer"] = {
name = "Solar Orb",
baseTypeName = "Solar Orb",
color = 3,
- description = "Create a fiery Orb that periodically releases fiery pulses. Enemies that are very close to the Orb are Ignited.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, },
+ description = "Create a fiery Orb that periodically releases fiery pulses. Enemies that are very close to the Orb are Ignited. Flameblast can target a Solar Orb to be centred on the Orb instead of your location.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.8,
qualityStats = {
- { "solar_orb_base_pulse_frequency_ms", -15 },
+ { "active_skill_damage_+%_final_vs_burning_enemies", 1 },
},
levels = {
- [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 13, }, },
- [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 28, }, },
- [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 32, }, },
- [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 36, }, },
- [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 41, }, },
- [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 46, }, },
- [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 52, }, },
- [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 59, }, },
- [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 67, }, },
- [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 76, }, },
- [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 86, }, },
- [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 97, }, },
- [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 110, }, },
- [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 125, }, },
- [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 141, }, },
- [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 160, }, },
- [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 181, }, },
- [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 205, }, },
- [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 232, }, },
- [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 262, }, },
- [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 297, }, },
- [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 336, }, },
- [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 381, }, },
- [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 431, }, },
- [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 488, }, },
- [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 552, }, },
- [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 625, }, },
- [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 707, }, },
- [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 800, }, },
- [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 906, }, },
- [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1025, }, },
- [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1160, }, },
- [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1313, }, },
- [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1486, }, },
- [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 1682, }, },
+ [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, },
},
statSets = {
[1] = {
label = "Pulse",
- baseEffectiveness = 1.3500000238419,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 1.7000000476837,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "solar_orb_statset_0",
statMap = {
["solar_orb_base_pulse_frequency_ms"] = {
@@ -15322,7 +18147,7 @@ skills["SolarOrbPlayer"] = {
{ "solar_orb_base_maximum_number_of_orbs", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -15331,63 +18156,66 @@ skills["SolarOrbPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [1] = { 4, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 104, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 104, 155, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 134, 202, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 153, 229, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 174, 261, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 197, 296, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 224, 337, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 289, 434, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 329, 493, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 374, 560, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 425, 637, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 483, 724, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 549, 824, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 625, 937, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 712, 1067, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 811, 1216, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 925, 1387, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1055, 1583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1206, 1808, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1378, 2068, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1577, 2366, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1807, 2710, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [4] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 40, 61, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 57, 85, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 77, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 137, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 181, 271, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 238, 358, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 274, 411, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 314, 472, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 415, 623, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 477, 716, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 632, 947, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 727, 1091, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 838, 1258, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 967, 1451, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1117, 1675, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1291, 1936, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1494, 2241, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1730, 2596, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2007, 3010, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2330, 3495, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2709, 4064, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3154, 4730, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
label = "Ignite",
- baseEffectiveness = 4.3000001907349,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ baseEffectiveness = 2.7000000476837,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "solar_orb_statset_1",
baseFlags = {
spell = true,
area = true,
- duration = true,
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 10 },
- { "active_skill_energy_generated_+%_final", -80 },
+ { "active_skill_energy_generated_+%_final", -50 },
},
stats = {
"spell_minimum_base_fire_damage",
@@ -15398,48 +18226,53 @@ skills["SolarOrbPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
"can_perform_skill_while_moving",
"display_statset_hide_usage_stats",
+ "quality_hide_display_character_panel",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
},
levels = {
- [1] = { 4, 6, 13, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 18, 27, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 8, 12, 25, 38, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 10, 16, 33, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 13, 20, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 16, 25, 52, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 20, 30, 63, 95, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 24, 36, 76, 114, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 28, 42, 90, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 33, 50, 106, 159, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 39, 58, 124, 186, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 45, 68, 144, 216, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 52, 78, 166, 250, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 60, 90, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 104, 220, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 79, 119, 253, 379, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 91, 136, 289, 433, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 104, 155, 330, 495, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 118, 177, 376, 564, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 134, 202, 428, 642, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 153, 229, 487, 730, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 174, 261, 554, 830, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 197, 296, 629, 944, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 224, 337, 715, 1072, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 255, 382, 812, 1218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 289, 434, 922, 1383, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 329, 493, 1047, 1571, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 374, 560, 1190, 1785, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 425, 637, 1352, 2028, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 483, 724, 1537, 2306, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 549, 824, 1749, 2623, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 625, 937, 1990, 2985, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 712, 1067, 2266, 3400, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 811, 1216, 2583, 3874, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 925, 1387, 2946, 4418, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1055, 1583, 3362, 5043, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1206, 1808, 3840, 5760, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1378, 2068, 4390, 6586, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1577, 2366, 5024, 7536, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1807, 2710, 5755, 8633, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 4, 5, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 8, 12, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 16, 17, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, 27, 28, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 22, 33, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 27, 41, 43, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 33, 50, 53, 79, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 40, 61, 64, 96, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 49, 73, 77, 116, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 57, 85, 90, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 66, 99, 105, 158, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 77, 115, 122, 183, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 89, 134, 141, 212, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 103, 154, 163, 245, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 119, 178, 188, 283, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 137, 205, 217, 325, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 157, 236, 250, 374, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 181, 271, 287, 430, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 208, 311, 330, 494, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 238, 358, 379, 568, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 274, 411, 435, 652, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 314, 472, 499, 749, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 361, 542, 574, 860, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 415, 623, 659, 989, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 477, 716, 758, 1137, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 549, 823, 872, 1307, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 632, 947, 1003, 1505, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 727, 1091, 1155, 1733, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 838, 1258, 1332, 1997, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 967, 1451, 1536, 2304, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1117, 1675, 1774, 2661, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1291, 1936, 2050, 3075, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1494, 2241, 2372, 3559, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1730, 2596, 2748, 4122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2007, 3010, 3187, 4781, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2330, 3495, 3701, 5551, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2709, 4064, 4303, 6454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3154, 4730, 5009, 7513, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -15449,52 +18282,52 @@ skills["SoulOfferingPlayer"] = {
baseTypeName = "Soul Offering",
color = 3,
description = "Skewer a Skeleton on a bone spike, granting you a powerful Spell damage Buff as long as the spike remains. Does not affect your Minions.\n\nThe bone spike is itself a Minion. If it dies, the effect ends immediately.",
- skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Buff] = true, },
+ skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Buff] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
{ "base_skill_effect_duration", 50 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 33, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 37, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 40, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 44, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 49, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 53, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 59, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 64, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 71, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 78, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 86, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 94, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 103, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 113, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 125, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 137, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 150, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 165, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 181, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 199, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 240, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 264, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 290, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 318, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 350, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 384, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 422, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 463, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 509, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 559, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 614, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 674, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 740, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 813, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 892, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 980, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1076, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1182, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1298, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 32, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 36, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 41, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 45, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 50, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 55, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 60, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 65, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 70, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 76, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 82, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 88, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 94, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 100, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 106, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 113, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 120, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 127, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 134, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 141, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 157, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 165, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 174, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 182, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 191, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 200, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 210, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 220, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 240, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 251, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 261, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 273, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 284, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 296, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 308, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 321, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 334, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 347, }, },
},
statSets = {
[1] = {
@@ -15513,7 +18346,7 @@ skills["SoulOfferingPlayer"] = {
{ "base_number_of_power_offerings_allowed", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "base_skill_effect_duration", 4000 },
},
stats = {
@@ -15567,65 +18400,348 @@ skills["SoulOfferingPlayer"] = {
},
}
}
+skills["SoulrendPlayer"] = {
+ name = "Soulrend",
+ baseTypeName = "Soulrend",
+ fromItem = true,
+ color = 3,
+ description = "Fire a Piercing Projectile that seeks out enemies. Enemies hit are inflicted with a Debuff that Hinders them and deals Chaos damage over time for a short duration.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.DamageOverTime] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Unleashable] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ { "base_skill_effect_duration", 5 },
+ },
+ levels = {
+ [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 13, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 13, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 13, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 13, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 13, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 13, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 13, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 13, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 13, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 13, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 13, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 13, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 13, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 13, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 13, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 13, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 13, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 13, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 13, levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Projectile",
+ baseEffectiveness = 1.6000000238419,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "soulrend",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "active_skill_projectile_speed_+%_variation_final", 25 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "base_is_projectile",
+ "always_pierce",
+ "can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
+ levels = {
+ [1] = { 3, 6, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 7, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 14, 27, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 18, 33, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 22, 40, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 26, 49, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 32, 59, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 38, 70, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 44, 82, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 51, 94, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 58, 109, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 67, 125, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 77, 143, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 88, 163, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 100, 186, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 114, 212, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 130, 242, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 148, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 168, 312, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 191, 355, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 217, 403, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 246, 457, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 280, 520, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 318, 590, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 361, 670, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 410, 762, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 466, 866, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 530, 985, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 603, 1120, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 687, 1276, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 783, 1454, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 893, 1658, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1019, 1892, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1163, 2161, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1330, 2470, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1522, 2826, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1743, 3237, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Damage over Time",
+ baseEffectiveness = 1.6000000238419,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "soulrend",
+ baseFlags = {
+ spell = true,
+ duration = true,
+ },
+ baseMods = {
+ skill("debuff", true),
+ },
+ constantStats = {
+ { "active_skill_projectile_speed_+%_variation_final", 25 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 600 },
+ { "pvp_skill_dot_attack_time_override_ms", 600 },
+ },
+ stats = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ "base_chaos_damage_to_deal_per_minute",
+ "can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ "spell_damage_modifiers_apply_to_skill_dot",
+ "display_statset_hide_usage_stats",
+ },
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
+ levels = {
+ [1] = { 0, 0, 605, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 834, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1165, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1554, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 2012, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 2548, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 3176, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 3909, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 4768, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 5777, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 6961, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 8140, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 9481, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 11006, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 12742, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 14720, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 16975, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 19550, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 22491, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 25856, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 29708, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 34123, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 39189, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 45008, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 51701, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 59407, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 68291, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 78546, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 90397, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 104111, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 120002, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 138440, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 159860, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 184780, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 213811, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 247679, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 287245, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 333535, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 387769, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 451405, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["SparkPlayer"] = {
name = "Spark",
baseTypeName = "Spark",
color = 3,
- description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire. Consumes a Cold Infusion if possible to fire many sparks in a circle.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "base_projectile_speed_+%", 1.5 },
},
levels = {
- [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 6, }, },
+ [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { critChance = 9, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { critChance = 9, levelRequirement = 6, cost = { Mana = 7, }, },
[4] = { critChance = 9, levelRequirement = 10, cost = { Mana = 8, }, },
[5] = { critChance = 9, levelRequirement = 14, cost = { Mana = 10, }, },
[6] = { critChance = 9, levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 12, }, },
- [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 18, }, },
+ [7] = { critChance = 9, levelRequirement = 22, cost = { Mana = 13, }, },
+ [8] = { critChance = 9, levelRequirement = 26, cost = { Mana = 15, }, },
+ [9] = { critChance = 9, levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { critChance = 9, levelRequirement = 36, cost = { Mana = 19, }, },
[11] = { critChance = 9, levelRequirement = 41, cost = { Mana = 21, }, },
- [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 23, }, },
+ [12] = { critChance = 9, levelRequirement = 46, cost = { Mana = 24, }, },
[13] = { critChance = 9, levelRequirement = 52, cost = { Mana = 27, }, },
[14] = { critChance = 9, levelRequirement = 58, cost = { Mana = 30, }, },
- [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 34, }, },
- [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 39, }, },
- [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 44, }, },
- [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 50, }, },
- [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 56, }, },
- [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 64, }, },
- [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 72, }, },
- [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 82, }, },
- [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 93, }, },
- [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 105, }, },
- [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 119, }, },
- [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 153, }, },
- [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 173, }, },
- [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 196, }, },
- [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 222, }, },
- [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 251, }, },
- [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 284, }, },
- [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 321, }, },
- [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 364, }, },
- [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 412, }, },
- [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 466, }, },
- [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 527, }, },
- [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 597, }, },
- [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 676, }, },
- [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 765, }, },
+ [15] = { critChance = 9, levelRequirement = 64, cost = { Mana = 33, }, },
+ [16] = { critChance = 9, levelRequirement = 66, cost = { Mana = 37, }, },
+ [17] = { critChance = 9, levelRequirement = 72, cost = { Mana = 41, }, },
+ [18] = { critChance = 9, levelRequirement = 78, cost = { Mana = 46, }, },
+ [19] = { critChance = 9, levelRequirement = 84, cost = { Mana = 51, }, },
+ [20] = { critChance = 9, levelRequirement = 90, cost = { Mana = 56, }, },
+ [21] = { critChance = 9, levelRequirement = 90, cost = { Mana = 62, }, },
+ [22] = { critChance = 9, levelRequirement = 90, cost = { Mana = 68, }, },
+ [23] = { critChance = 9, levelRequirement = 90, cost = { Mana = 75, }, },
+ [24] = { critChance = 9, levelRequirement = 90, cost = { Mana = 83, }, },
+ [25] = { critChance = 9, levelRequirement = 90, cost = { Mana = 91, }, },
+ [26] = { critChance = 9, levelRequirement = 90, cost = { Mana = 100, }, },
+ [27] = { critChance = 9, levelRequirement = 90, cost = { Mana = 109, }, },
+ [28] = { critChance = 9, levelRequirement = 90, cost = { Mana = 120, }, },
+ [29] = { critChance = 9, levelRequirement = 90, cost = { Mana = 131, }, },
+ [30] = { critChance = 9, levelRequirement = 90, cost = { Mana = 143, }, },
+ [31] = { critChance = 9, levelRequirement = 90, cost = { Mana = 157, }, },
+ [32] = { critChance = 9, levelRequirement = 90, cost = { Mana = 171, }, },
+ [33] = { critChance = 9, levelRequirement = 90, cost = { Mana = 187, }, },
+ [34] = { critChance = 9, levelRequirement = 90, cost = { Mana = 204, }, },
+ [35] = { critChance = 9, levelRequirement = 90, cost = { Mana = 223, }, },
+ [36] = { critChance = 9, levelRequirement = 90, cost = { Mana = 243, }, },
+ [37] = { critChance = 9, levelRequirement = 90, cost = { Mana = 264, }, },
+ [38] = { critChance = 9, levelRequirement = 90, cost = { Mana = 288, }, },
+ [39] = { critChance = 9, levelRequirement = 90, cost = { Mana = 313, }, },
+ [40] = { critChance = 9, levelRequirement = 90, cost = { Mana = 341, }, },
},
statSets = {
[1] = {
- label = "Spark",
- baseEffectiveness = 1.1399999856949,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0044999998062849,
- statDescriptionScope = "spark",
+ label = "Base",
+ baseEffectiveness = 1.2000000476837,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0060999998822808,
+ statDescriptionScope = "spark_statset_0",
+ baseFlags = {
+ spell = true,
+ projectile = true,
+ duration = true,
+ },
+ constantStats = {
+ { "base_skill_effect_duration", 2000 },
+ { "spark_pathing_width_bounds", 20 },
+ { "damage_hit_effect_index", 1009 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "spark_min_time_between_target_clearing_ms", 660 },
+ },
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "base_number_of_projectiles",
+ "base_is_projectile",
+ "projectiles_should_collide_with_flying_monsters",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "can_perform_skill_while_moving",
+ "active_skill_consumes_a_cold_infusion",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
+ levels = {
+ [1] = { 1, 10, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1, 17, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1, 21, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1, 26, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 2, 32, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 2, 38, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 2, 45, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 3, 53, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3, 61, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 4, 71, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 4, 81, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 93, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 6, 106, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 6, 120, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7, 135, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 8, 153, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9, 172, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 10, 193, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 11, 216, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 13, 242, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 14, 271, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 16, 303, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 18, 338, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 20, 378, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 22, 421, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 25, 470, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 28, 524, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 31, 584, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 34, 651, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 38, 726, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 43, 809, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 47, 902, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 53, 1006, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 59, 1122, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 66, 1252, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 74, 1398, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 82, 1561, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 92, 1744, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 103, 1949, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Cold-Infused",
+ baseEffectiveness = 2.4000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0060999998822808,
+ statDescriptionScope = "spark_statset_1",
baseFlags = {
spell = true,
projectile = true,
@@ -15637,12 +18753,18 @@ skills["SparkPlayer"] = {
{ "damage_hit_effect_index", 1009 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "spark_min_time_between_target_clearing_ms", 660 },
+ { "base_spell_cast_time_ms", 500 },
},
stats = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "base_number_of_projectiles",
"base_number_of_projectiles",
"base_is_projectile",
"projectiles_should_collide_with_flying_monsters",
@@ -15650,48 +18772,56 @@ skills["SparkPlayer"] = {
"projectile_uses_contact_direction",
"check_for_targets_between_initiator_and_projectile_source",
"can_perform_skill_while_moving",
+ "active_skill_consumes_a_cold_infusion",
+ "projectiles_nova",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
},
levels = {
- [1] = { 1, 8, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 1, 11, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1, 16, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1, 20, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 1, 25, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 2, 31, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 2, 37, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 2, 43, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 3, 51, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 3, 59, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 4, 67, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 4, 77, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 5, 87, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 5, 98, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 6, 110, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6, 123, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7, 138, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 8, 153, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 9, 170, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 10, 189, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 11, 209, 9, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 12, 231, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 13, 255, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 15, 281, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 16, 310, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 18, 341, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 20, 376, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 22, 413, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 24, 454, 11, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 26, 498, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 29, 547, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 32, 600, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 35, 659, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 38, 723, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 42, 793, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 46, 870, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 50, 954, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 55, 1047, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 60, 1148, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 66, 1260, 13, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 1, 10, 7, 11, 0, 12, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 1, 13, 10, 15, 0, 12, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 1, 17, 14, 20, 0, 12, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 1, 21, 17, 26, 0, 12, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 1, 26, 22, 33, 0, 13, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 2, 32, 27, 40, 0, 13, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 2, 38, 32, 48, 0, 13, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 2, 45, 38, 57, 0, 13, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 3, 53, 44, 67, 0, 14, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 3, 61, 52, 78, 0, 14, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 4, 71, 60, 89, 0, 14, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 4, 81, 68, 103, 0, 14, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 5, 93, 78, 117, 0, 15, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 6, 106, 89, 134, 0, 15, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 6, 120, 101, 151, 0, 15, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 7, 135, 114, 171, 0, 15, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 8, 153, 129, 193, 0, 16, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 9, 172, 145, 217, 0, 16, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 10, 193, 163, 244, 0, 16, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 11, 216, 182, 273, 0, 16, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 13, 242, 204, 306, 0, 17, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 14, 271, 228, 343, 0, 17, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 16, 303, 255, 383, 0, 17, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 18, 338, 285, 428, 0, 17, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 20, 378, 318, 477, 0, 18, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 22, 421, 355, 532, 0, 18, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 25, 470, 396, 594, 0, 18, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 28, 524, 441, 662, 0, 18, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 31, 584, 492, 738, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 34, 651, 548, 822, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 38, 726, 611, 917, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 43, 809, 681, 1022, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 47, 902, 760, 1139, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 53, 1006, 847, 1271, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 59, 1122, 945, 1417, 0, 19, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 66, 1252, 1054, 1582, 0, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 74, 1398, 1177, 1765, 0, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 82, 1561, 1314, 1972, 0, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 92, 1744, 1469, 2203, 0, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 103, 1949, 1642, 2462, 0, 20, critChance = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -15703,11 +18833,11 @@ skills["SummonSpectrePlayer"] = {
},
color = 3,
description = "Summon the spirit of the bound monster as a Reviving Minion.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, },
- minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesUndeadMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.MultipleReservation] = true, },
+ minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Cooldown] = true, [SkillType.Barrageable] = true, [SkillType.Cascadable] = true, },
castTime = 0.85,
qualityStats = {
- { "base_reservation_+%", -0.5 },
+ { "active_skill_minion_damage_+%_final", 1 },
},
levels = {
[1] = { spiritReservationFlat = 50, levelRequirement = 0, },
@@ -15823,10 +18953,9 @@ skills["StaggeringPalmPlayer"] = {
name = "Staggering Palm",
baseTypeName = "Staggering Palm",
color = 3,
- description = "Dash to an enemy and Strike them with an Unarmed Attack. Heavy Stunning an enemy with this Skill grants you a Buff that causes your Quarterstaff and Unarmed Attacks to also fire Projectiles for a short duration. Enemies which are Primed for Stun will instantly be Heavily Stunned. This skill always Strikes with your bare fist, even if you have a Quarterstaff equipped.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, },
+ description = "Dash to an enemy and Strike them, instantly Heavily Stunning enemies which are Primed for Stun. Heavy Stunning an enemy with this Skill grants you a Buff that causes your Quarterstaff Attacks to also fire Projectiles for a short duration. Heavy Stunning additional enemies adds to the Buff's duration.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
- ["None"] = true,
["Staff"] = true,
},
castTime = 1,
@@ -15835,50 +18964,49 @@ skills["StaggeringPalmPlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 20, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 22, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 27, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 30, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 33, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 13, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 24, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 26, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 29, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 31, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 34, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 37, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 41, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 45, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 50, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 56, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 62, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 69, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 76, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 84, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 94, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 104, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 115, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 128, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 141, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 157, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 174, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 193, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 213, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 237, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 262, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 291, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 322, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 357, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 396, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 40, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 43, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 47, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 51, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 55, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 59, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 63, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 68, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 73, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 78, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 84, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 90, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 96, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 103, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 110, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 118, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 126, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 134, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 143, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 153, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 163, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 173, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 184, }, },
},
statSets = {
[1] = {
label = "Staggering Palm",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "wind_palm",
baseFlags = {
attack = true,
@@ -15888,68 +19016,67 @@ skills["StaggeringPalmPlayer"] = {
constantStats = {
{ "melee_conditional_step_distance", 10 },
{ "base_melee_dash_range", 65 },
- { "additional_base_critical_strike_chance", 700 },
+ { "base_skill_effect_duration", 7500 },
+ { "staggering_palm_buff_max_duration_ms", 30000 },
},
stats = {
- "attack_minimum_added_physical_damage",
- "attack_maximum_added_physical_damage",
- "base_skill_effect_duration",
"global_always_hit",
"is_area_damage",
"active_skill_show_crush_range",
"crushing_blow",
+ "base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 6, 9, 6000, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 6200, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, 6400, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, 6600, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, 6800, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, 7000, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, 7200, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, 7400, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, 7600, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, 7800, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, 8000, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, 8200, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, 8400, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, 8600, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, 8800, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, 9000, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, 9200, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, 9400, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, 9600, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, 9800, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, 10000, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, 10200, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, 10400, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, 10600, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, 10800, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, 11000, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 11200, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, 11400, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, 11600, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, 11800, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, 12000, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, 12200, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, 12400, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, 12600, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, 12800, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, 13000, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, 13200, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, 13400, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, 13600, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, 13800, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
}
skills["StaggeringPalmProjectilePlayer"] = {
- name = "Wind Blast (Quarterstaff)",
+ name = "Projectile",
hidden = true,
- skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, },
+ skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.QuarterstaffSkill] = true, },
weaponTypes = {
- ["None"] = true,
["Staff"] = true,
},
castTime = 1,
@@ -15957,50 +19084,50 @@ skills["StaggeringPalmProjectilePlayer"] = {
{ "attacks_chance_to_blind_on_hit_%", 2 },
},
levels = {
- [1] = { baseMultiplier = 0.48, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.53, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.58, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.63, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.68, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.73, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.79, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.83, levelRequirement = 0, },
- [9] = { baseMultiplier = 0.88, levelRequirement = 0, },
- [10] = { baseMultiplier = 0.92, levelRequirement = 0, },
- [11] = { baseMultiplier = 0.97, levelRequirement = 0, },
- [12] = { baseMultiplier = 1.01, levelRequirement = 0, },
- [13] = { baseMultiplier = 1.06, levelRequirement = 0, },
- [14] = { baseMultiplier = 1.12, levelRequirement = 0, },
- [15] = { baseMultiplier = 1.17, levelRequirement = 0, },
- [16] = { baseMultiplier = 1.23, levelRequirement = 0, },
- [17] = { baseMultiplier = 1.29, levelRequirement = 0, },
- [18] = { baseMultiplier = 1.36, levelRequirement = 0, },
- [19] = { baseMultiplier = 1.43, levelRequirement = 0, },
- [20] = { baseMultiplier = 1.5, levelRequirement = 0, },
- [21] = { baseMultiplier = 1.57, levelRequirement = 0, },
- [22] = { baseMultiplier = 1.65, levelRequirement = 0, },
- [23] = { baseMultiplier = 1.73, levelRequirement = 0, },
- [24] = { baseMultiplier = 1.82, levelRequirement = 0, },
- [25] = { baseMultiplier = 1.91, levelRequirement = 0, },
- [26] = { baseMultiplier = 2.01, levelRequirement = 0, },
- [27] = { baseMultiplier = 2.11, levelRequirement = 0, },
- [28] = { baseMultiplier = 2.21, levelRequirement = 0, },
- [29] = { baseMultiplier = 2.32, levelRequirement = 0, },
- [30] = { baseMultiplier = 2.44, levelRequirement = 0, },
- [31] = { baseMultiplier = 2.56, levelRequirement = 0, },
- [32] = { baseMultiplier = 2.69, levelRequirement = 0, },
- [33] = { baseMultiplier = 2.82, levelRequirement = 0, },
- [34] = { baseMultiplier = 2.96, levelRequirement = 0, },
- [35] = { baseMultiplier = 3.11, levelRequirement = 0, },
- [36] = { baseMultiplier = 3.27, levelRequirement = 0, },
- [37] = { baseMultiplier = 3.43, levelRequirement = 0, },
- [38] = { baseMultiplier = 3.6, levelRequirement = 0, },
- [39] = { baseMultiplier = 3.78, levelRequirement = 0, },
- [40] = { baseMultiplier = 3.97, levelRequirement = 0, },
+ [1] = { baseMultiplier = 0.5, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.55, levelRequirement = 0, },
+ [3] = { baseMultiplier = 0.6, levelRequirement = 0, },
+ [4] = { baseMultiplier = 0.66, levelRequirement = 0, },
+ [5] = { baseMultiplier = 0.71, levelRequirement = 0, },
+ [6] = { baseMultiplier = 0.77, levelRequirement = 0, },
+ [7] = { baseMultiplier = 0.82, levelRequirement = 0, },
+ [8] = { baseMultiplier = 0.87, levelRequirement = 0, },
+ [9] = { baseMultiplier = 0.91, levelRequirement = 0, },
+ [10] = { baseMultiplier = 0.96, levelRequirement = 0, },
+ [11] = { baseMultiplier = 1.01, levelRequirement = 0, },
+ [12] = { baseMultiplier = 1.06, levelRequirement = 0, },
+ [13] = { baseMultiplier = 1.11, levelRequirement = 0, },
+ [14] = { baseMultiplier = 1.16, levelRequirement = 0, },
+ [15] = { baseMultiplier = 1.22, levelRequirement = 0, },
+ [16] = { baseMultiplier = 1.28, levelRequirement = 0, },
+ [17] = { baseMultiplier = 1.35, levelRequirement = 0, },
+ [18] = { baseMultiplier = 1.41, levelRequirement = 0, },
+ [19] = { baseMultiplier = 1.49, levelRequirement = 0, },
+ [20] = { baseMultiplier = 1.56, levelRequirement = 0, },
+ [21] = { baseMultiplier = 1.64, levelRequirement = 0, },
+ [22] = { baseMultiplier = 1.72, levelRequirement = 0, },
+ [23] = { baseMultiplier = 1.81, levelRequirement = 0, },
+ [24] = { baseMultiplier = 1.9, levelRequirement = 0, },
+ [25] = { baseMultiplier = 1.99, levelRequirement = 0, },
+ [26] = { baseMultiplier = 2.09, levelRequirement = 0, },
+ [27] = { baseMultiplier = 2.19, levelRequirement = 0, },
+ [28] = { baseMultiplier = 2.3, levelRequirement = 0, },
+ [29] = { baseMultiplier = 2.42, levelRequirement = 0, },
+ [30] = { baseMultiplier = 2.54, levelRequirement = 0, },
+ [31] = { baseMultiplier = 2.67, levelRequirement = 0, },
+ [32] = { baseMultiplier = 2.8, levelRequirement = 0, },
+ [33] = { baseMultiplier = 2.94, levelRequirement = 0, },
+ [34] = { baseMultiplier = 3.09, levelRequirement = 0, },
+ [35] = { baseMultiplier = 3.24, levelRequirement = 0, },
+ [36] = { baseMultiplier = 3.4, levelRequirement = 0, },
+ [37] = { baseMultiplier = 3.57, levelRequirement = 0, },
+ [38] = { baseMultiplier = 3.75, levelRequirement = 0, },
+ [39] = { baseMultiplier = 3.94, levelRequirement = 0, },
+ [40] = { baseMultiplier = 4.14, levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Projectile (Quarterstaff)",
+ label = "Projectile",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
@@ -16016,6 +19143,7 @@ skills["StaggeringPalmProjectilePlayer"] = {
"triggered_by_staggering_palm_on_hit_with_other_skill",
"visual_hit_effect_physical_is_wind",
"display_statset_hide_usage_stats",
+ "base_skill_show_average_damage_instead_of_dps",
},
levels = {
[1] = { actorLevel = 1, },
@@ -16062,135 +19190,12 @@ skills["StaggeringPalmProjectilePlayer"] = {
},
}
}
-skills["StaggeringPalmUnarmedProjectilePlayer"] = {
- name = "Wind Blast (Unarmed)",
- hidden = true,
- skillTypes = { [SkillType.UseGlobalStats] = true, [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, },
- weaponTypes = {
- ["None"] = true,
- ["Staff"] = true,
- },
- castTime = 1,
- qualityStats = {
- { "attacks_chance_to_blind_on_hit_%", 2 },
- },
- levels = {
- [1] = { baseMultiplier = 0.48, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.53, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.58, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.63, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.68, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.73, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.79, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.83, levelRequirement = 0, },
- [9] = { baseMultiplier = 0.88, levelRequirement = 0, },
- [10] = { baseMultiplier = 0.92, levelRequirement = 0, },
- [11] = { baseMultiplier = 0.97, levelRequirement = 0, },
- [12] = { baseMultiplier = 1.01, levelRequirement = 0, },
- [13] = { baseMultiplier = 1.06, levelRequirement = 0, },
- [14] = { baseMultiplier = 1.12, levelRequirement = 0, },
- [15] = { baseMultiplier = 1.17, levelRequirement = 0, },
- [16] = { baseMultiplier = 1.23, levelRequirement = 0, },
- [17] = { baseMultiplier = 1.29, levelRequirement = 0, },
- [18] = { baseMultiplier = 1.36, levelRequirement = 0, },
- [19] = { baseMultiplier = 1.43, levelRequirement = 0, },
- [20] = { baseMultiplier = 1.5, levelRequirement = 0, },
- [21] = { baseMultiplier = 1.57, levelRequirement = 0, },
- [22] = { baseMultiplier = 1.65, levelRequirement = 0, },
- [23] = { baseMultiplier = 1.73, levelRequirement = 0, },
- [24] = { baseMultiplier = 1.82, levelRequirement = 0, },
- [25] = { baseMultiplier = 1.91, levelRequirement = 0, },
- [26] = { baseMultiplier = 2.01, levelRequirement = 0, },
- [27] = { baseMultiplier = 2.11, levelRequirement = 0, },
- [28] = { baseMultiplier = 2.21, levelRequirement = 0, },
- [29] = { baseMultiplier = 2.32, levelRequirement = 0, },
- [30] = { baseMultiplier = 2.44, levelRequirement = 0, },
- [31] = { baseMultiplier = 2.56, levelRequirement = 0, },
- [32] = { baseMultiplier = 2.69, levelRequirement = 0, },
- [33] = { baseMultiplier = 2.82, levelRequirement = 0, },
- [34] = { baseMultiplier = 2.96, levelRequirement = 0, },
- [35] = { baseMultiplier = 3.11, levelRequirement = 0, },
- [36] = { baseMultiplier = 3.27, levelRequirement = 0, },
- [37] = { baseMultiplier = 3.43, levelRequirement = 0, },
- [38] = { baseMultiplier = 3.6, levelRequirement = 0, },
- [39] = { baseMultiplier = 3.78, levelRequirement = 0, },
- [40] = { baseMultiplier = 3.97, levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "Projectile (Unarmed)",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- attack = true,
- projectile = true,
- unarmed = true,
- },
- constantStats = {
- { "base_number_of_projectiles", 1 },
- { "additional_base_critical_strike_chance", 700 },
- },
- stats = {
- "attack_minimum_added_physical_damage",
- "attack_maximum_added_physical_damage",
- "base_is_projectile",
- "always_pierce",
- "triggered_by_staggering_palm_on_hit_with_other_skill",
- "visual_hit_effect_physical_is_wind",
- "display_statset_hide_usage_stats",
- },
- levels = {
- [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
skills["StormWavePlayer"] = {
name = "Storm Wave",
baseTypeName = "Storm Wave",
color = 3,
description = "Sweep your Quarterstaff, projecting a bolt of Lightning through the ground in a long fissure ahead of you.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesFissure] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
@@ -16202,43 +19207,43 @@ skills["StormWavePlayer"] = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 8, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 17, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 23, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 25, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 28, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 31, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 35, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 38, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 12, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 17, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 19, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 21, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 23, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 28, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 30, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 33, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 36, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 39, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 43, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 47, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 53, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 58, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 65, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 72, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 79, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 88, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 98, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 108, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 120, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 133, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 148, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 164, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 181, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 201, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 223, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 247, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 274, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 303, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 336, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 372, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 413, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 457, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 46, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 50, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 54, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 59, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 63, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 68, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 73, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 79, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 85, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 91, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 97, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 104, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 112, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 119, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 128, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 136, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 145, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 155, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 166, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 176, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 188, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 200, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 213, }, },
},
statSets = {
[1] = {
@@ -16253,10 +19258,11 @@ skills["StormWavePlayer"] = {
constantStats = {
{ "active_skill_base_area_of_effect_radius", 80 },
{ "active_skill_base_secondary_area_of_effect_radius", 10 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 10 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_shock_chance_+%_final", 100 },
},
stats = {
@@ -16314,55 +19320,55 @@ skills["TempestBellPlayer"] = {
baseTypeName = "Tempest Bell",
color = 3,
description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to cause the Bell on your staff to grow to massive size as you drop it on the ground. The Bell damages enemies on impact and can be Hit by your skills, creating a damaging shockwave. Elemental Ailments applied to the Bell cause its shockwaves to deal extra damage of the corresponding type, and Hits which would have caused Knockback increase the area of effect of the shockwaves.",
- skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Nova] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SupportedByFountains] = true, [SkillType.HasUsageCondition] = true, },
+ skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SupportedByFountains] = true, [SkillType.HasUsageCondition] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.ObjectDurability] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "tempest_bell_hit_limit", 0.1 },
+ { "tempest_bell_damage_+%_final_per_time_hit", 0.15 },
},
levels = {
- [1] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 0, cost = { Mana = 15, }, },
+ [1] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 0, cost = { Mana = 14, }, },
[2] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 22, cost = { Mana = 27, }, },
- [8] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 26, cost = { Mana = 30, }, },
- [9] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 31, cost = { Mana = 34, }, },
- [10] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 36, cost = { Mana = 37, }, },
- [11] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 41, cost = { Mana = 42, }, },
- [12] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 46, cost = { Mana = 46, }, },
- [13] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 52, cost = { Mana = 51, }, },
- [14] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 58, cost = { Mana = 57, }, },
- [15] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 64, cost = { Mana = 63, }, },
- [16] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 66, cost = { Mana = 70, }, },
+ [3] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 14, cost = { Mana = 24, }, },
+ [6] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 18, cost = { Mana = 27, }, },
+ [7] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 22, cost = { Mana = 31, }, },
+ [8] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 46, cost = { Mana = 50, }, },
+ [13] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 52, cost = { Mana = 55, }, },
+ [14] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 58, cost = { Mana = 60, }, },
+ [15] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 64, cost = { Mana = 66, }, },
+ [16] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 66, cost = { Mana = 71, }, },
[17] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 72, cost = { Mana = 77, }, },
- [18] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 78, cost = { Mana = 86, }, },
- [19] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 84, cost = { Mana = 95, }, },
- [20] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 105, }, },
- [21] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 117, }, },
- [22] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 130, }, },
- [23] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 144, }, },
- [24] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 159, }, },
- [25] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 177, }, },
- [26] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 196, }, },
- [27] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 217, }, },
- [28] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 240, }, },
- [29] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 266, }, },
- [30] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 295, }, },
- [31] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 327, }, },
- [32] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 363, }, },
- [33] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 402, }, },
- [34] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 445, }, },
- [35] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 494, }, },
- [36] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 547, }, },
- [37] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 606, }, },
- [38] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 672, }, },
- [39] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 744, }, },
- [40] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 825, }, },
+ [18] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 78, cost = { Mana = 84, }, },
+ [19] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 84, cost = { Mana = 91, }, },
+ [20] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 98, }, },
+ [21] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 106, }, },
+ [22] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 114, }, },
+ [23] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 123, }, },
+ [24] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 132, }, },
+ [25] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 142, }, },
+ [26] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 153, }, },
+ [27] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 164, }, },
+ [28] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 176, }, },
+ [29] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 188, }, },
+ [30] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 201, }, },
+ [31] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 215, }, },
+ [32] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 230, }, },
+ [33] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 246, }, },
+ [34] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 263, }, },
+ [35] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 280, }, },
+ [36] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 299, }, },
+ [37] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 318, }, },
+ [38] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 339, }, },
+ [39] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 361, }, },
+ [40] = { attackSpeedMultiplier = 20, storedUses = 1, cooldown = 0.5, levelRequirement = 90, cost = { Mana = 384, }, },
},
statSets = {
[1] = {
@@ -16586,7 +19592,7 @@ skills["TempestFlurryPlayer"] = {
baseTypeName = "Tempest Flurry",
color = 3,
description = "Perform a series of aggressive Strikes. When used in quick succession, the third use Strikes three times, and the fourth use performs a Final Strike that calls down a powerful Shocking bolt.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
@@ -16595,46 +19601,46 @@ skills["TempestFlurryPlayer"] = {
{ "melee_range_+", 0.2 },
},
levels = {
- [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, },
- [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, },
- [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 6, }, },
- [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, },
- [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { attackSpeedMultiplier = 40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 11, }, },
- [9] = { attackSpeedMultiplier = 40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 12, }, },
- [10] = { attackSpeedMultiplier = 40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, },
- [11] = { attackSpeedMultiplier = 40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 15, }, },
- [12] = { attackSpeedMultiplier = 40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 17, }, },
- [13] = { attackSpeedMultiplier = 40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, },
- [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 21, }, },
- [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 23, }, },
- [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 26, }, },
- [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 29, }, },
- [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 32, }, },
- [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 36, }, },
- [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 39, }, },
- [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 44, }, },
- [22] = { attackSpeedMultiplier = 40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 49, }, },
- [23] = { attackSpeedMultiplier = 40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 54, }, },
- [24] = { attackSpeedMultiplier = 40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 60, }, },
- [25] = { attackSpeedMultiplier = 40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 66, }, },
- [26] = { attackSpeedMultiplier = 40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 73, }, },
- [27] = { attackSpeedMultiplier = 40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 81, }, },
- [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 90, }, },
- [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 100, }, },
- [30] = { attackSpeedMultiplier = 40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 111, }, },
- [31] = { attackSpeedMultiplier = 40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 123, }, },
- [32] = { attackSpeedMultiplier = 40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 136, }, },
- [33] = { attackSpeedMultiplier = 40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 151, }, },
- [34] = { attackSpeedMultiplier = 40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 168, }, },
- [35] = { attackSpeedMultiplier = 40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 186, }, },
- [36] = { attackSpeedMultiplier = 40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 206, }, },
- [37] = { attackSpeedMultiplier = 40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 228, }, },
- [38] = { attackSpeedMultiplier = 40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 253, }, },
- [39] = { attackSpeedMultiplier = 40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 280, }, },
- [40] = { attackSpeedMultiplier = 40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 311, }, },
+ [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 5, }, },
+ [2] = { attackSpeedMultiplier = 40, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 6, }, },
+ [3] = { attackSpeedMultiplier = 40, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 7, }, },
+ [4] = { attackSpeedMultiplier = 40, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 8, }, },
+ [5] = { attackSpeedMultiplier = 40, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { attackSpeedMultiplier = 40, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { attackSpeedMultiplier = 40, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 11, }, },
+ [8] = { attackSpeedMultiplier = 40, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { attackSpeedMultiplier = 40, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 14, }, },
+ [10] = { attackSpeedMultiplier = 40, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 15, }, },
+ [11] = { attackSpeedMultiplier = 40, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 17, }, },
+ [12] = { attackSpeedMultiplier = 40, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 19, }, },
+ [13] = { attackSpeedMultiplier = 40, levelRequirement = 52, cost = { Mana = 20, }, },
+ [14] = { attackSpeedMultiplier = 40, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 22, }, },
+ [15] = { attackSpeedMultiplier = 40, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 24, }, },
+ [16] = { attackSpeedMultiplier = 40, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 27, }, },
+ [17] = { attackSpeedMultiplier = 40, baseMultiplier = 1.21, levelRequirement = 72, cost = { Mana = 29, }, },
+ [18] = { attackSpeedMultiplier = 40, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 31, }, },
+ [19] = { attackSpeedMultiplier = 40, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 34, }, },
+ [20] = { attackSpeedMultiplier = 40, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 37, }, },
+ [21] = { attackSpeedMultiplier = 40, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 40, }, },
+ [22] = { attackSpeedMultiplier = 40, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 43, }, },
+ [23] = { attackSpeedMultiplier = 40, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 46, }, },
+ [24] = { attackSpeedMultiplier = 40, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 50, }, },
+ [25] = { attackSpeedMultiplier = 40, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 53, }, },
+ [26] = { attackSpeedMultiplier = 40, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 57, }, },
+ [27] = { attackSpeedMultiplier = 40, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 61, }, },
+ [28] = { attackSpeedMultiplier = 40, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 66, }, },
+ [29] = { attackSpeedMultiplier = 40, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 71, }, },
+ [30] = { attackSpeedMultiplier = 40, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 76, }, },
+ [31] = { attackSpeedMultiplier = 40, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 81, }, },
+ [32] = { attackSpeedMultiplier = 40, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 86, }, },
+ [33] = { attackSpeedMultiplier = 40, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 92, }, },
+ [34] = { attackSpeedMultiplier = 40, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 99, }, },
+ [35] = { attackSpeedMultiplier = 40, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 105, }, },
+ [36] = { attackSpeedMultiplier = 40, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 112, }, },
+ [37] = { attackSpeedMultiplier = 40, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 120, }, },
+ [38] = { attackSpeedMultiplier = 40, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 128, }, },
+ [39] = { attackSpeedMultiplier = 40, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 136, }, },
+ [40] = { attackSpeedMultiplier = 40, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 145, }, },
},
statSets = {
[1] = {
@@ -16656,6 +19662,7 @@ skills["TempestFlurryPlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -16706,61 +19713,62 @@ skills["TempestFlurryPlayer"] = {
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
attack = true,
- melee = true,
- },
- constantStats = {
- { "statset_index_for_third_animation_combo_index", 1 },
- { "statset_index_for_final_animation_combo_index", 2 },
- { "attack_maximum_action_distance_+", 5 },
- { "melee_range_+", 4 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 },
- { "active_skill_override_turn_duration_ms", 200 },
- { "supplementary_stat_container_attack_speed_+%_final", -35 },
- },
- stats = {
- "is_area_damage",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ melee = true,
+ },
+ constantStats = {
+ { "statset_index_for_third_animation_combo_index", 1 },
+ { "statset_index_for_final_animation_combo_index", 2 },
+ { "attack_maximum_action_distance_+", 5 },
+ { "melee_range_+", 4 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 },
+ { "active_skill_override_turn_duration_ms", 200 },
+ { "supplementary_stat_container_attack_speed_+%_final", -35 },
+ },
+ stats = {
+ "is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.9, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.9, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.9, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.9, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.9, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.9, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.9, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.9, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.9, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.9, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 0.9, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 0.9, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 0.9, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 0.9, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 0.9, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 0.9, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 0.9, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 0.9, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 0.9, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 0.9, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 0.9, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 0.9, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 0.9, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 0.9, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 0.9, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 0.9, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 0.9, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 0.9, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 0.9, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 0.9, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 0.9, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 0.9, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 0.9, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 0.9, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 0.9, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 0.9, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 0.9, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 0.9, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 0.9, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 0.9, actorLevel = 288.29998779297, },
},
},
[3] = {
@@ -16782,52 +19790,54 @@ skills["TempestFlurryPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 },
{ "active_skill_shock_chance_+%_final", 100 },
{ "melee_range_+", 2 },
+ { "active_skill_shock_effect_+%_final", 100 },
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_is_final_strike",
},
levels = {
- [1] = { baseMultiplier = 1.5, actorLevel = 1, },
- [2] = { baseMultiplier = 1.65, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.82, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.98, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 2.14, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 2.3, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 2.46, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 2.61, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.74, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.87, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 3.02, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 3.17, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 3.32, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 3.49, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 3.67, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 3.85, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 4.04, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 4.24, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 4.46, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 4.68, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 4.91, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 5.16, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 5.42, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 5.69, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 5.97, actorLevel = 136.875, },
- [26] = { baseMultiplier = 6.27, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 6.58, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 6.91, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 7.26, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 7.62, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 8, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 8.4, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 8.82, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 9.26, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 9.73, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 10.21, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 10.72, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 11.26, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 11.82, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 12.41, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 1.35, actorLevel = 1, },
+ [2] = { baseMultiplier = 1.49, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.63, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.78, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.92, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 2.07, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 2.21, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.34, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.46, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.58, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 2.71, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 2.85, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 2.99, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 3.14, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 3.3, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 3.46, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 3.64, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 3.82, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 4.01, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 4.21, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 4.42, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 4.64, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 4.87, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 5.12, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 5.37, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 5.64, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 5.92, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 6.22, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 6.53, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 6.86, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 7.2, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 7.56, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 7.94, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 8.34, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 8.75, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 9.19, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 9.65, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 10.13, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 10.64, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 11.17, actorLevel = 288.29998779297, },
},
},
}
@@ -16837,52 +19847,52 @@ skills["TemporalChainsPlayer"] = {
baseTypeName = "Temporal Chains",
color = 3,
description = "Curse all enemies in an area, Slowing them and making other effects on them expire more slowly.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
[2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
[9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
},
statSets = {
[1] = {
@@ -16898,57 +19908,191 @@ skills["TemporalChainsPlayer"] = {
{ "curse_delay_duration_ms", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
"active_skill_base_area_of_effect_radius",
"base_skill_debuff_action_speed_+%_final_to_inflict",
"base_temporal_chains_other_buff_time_passed_+%_to_apply",
+ "skill_curses_cannot_apply_to_targets_above_level",
"base_deal_no_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 15, -40, -25, 20, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, -41, -25, 23, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, -42, -25, 25, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, -43, -25, 29, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, -44, -25, 32, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, -45, -25, 36, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, -46, -25, 39, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, -47, -25, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, -48, -25, 47, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, -49, -25, 52, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, -50, -25, 56, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, -51, -25, 61, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, -52, -25, 66, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, -53, -25, 72, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, -54, -25, 74, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, -55, -25, 76, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, -56, -25, 78, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, -57, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, -58, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, -59, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, -60, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, -61, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, -62, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, -63, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, -64, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, -65, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, -66, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, -67, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, -68, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, -69, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, -69, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, -70, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, -70, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, -71, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, -71, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, -72, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, -72, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, -73, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, -73, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, -74, -25, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["TrinityPlayer"] = {
+ name = "Trinity",
+ baseTypeName = "Trinity",
+ color = 3,
+ description = "Become attuned to all Elements building up Fire, Cold and Lightning Resonance based off the highest Elemental Damage type dealt by your Hits. Your Elemental Damage is enhanced the more Resonance of any type you have.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant", 0.75 },
+ },
+ levels = {
+ [1] = { spiritReservationFlat = 100, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 100, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 100, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 100, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 100, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 100, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 100, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 100, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 100, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 100, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 100, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 100, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 100, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 100, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 100, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 100, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 100, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 100, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 100, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 100, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Trinity",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ statMap = {
+ ["trinity_damage_+%_final_to_grant_per_50_resonance"] = {
+ mod("ElementalDamage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ResonanceCount", div = 30 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }),
+ },
+ ["trinity_attack_speed_+%_while_all_resonance_is_at_least_250_to_grant"] = {
+ mod("Speed", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "ResonanceCount", threshold = 250 },{ type = "GlobalEffect", effectType = "Buff", effectName = "Trinity" }),
+ },
+ ["quality_display_trinity_is_gem"] = {
+ -- Display only
+ },
+ ["trinity_loss_per_hit"] = {
+ -- Display only
+ },
+ },
+ baseFlags = {
+ buff = true,
+ duration = true,
+ },
+ constantStats = {
+ { "trinity_resonance_decay_delay_ms", 8000 },
+ { "trinity_resonance_loss_per_second", 10 },
+ { "trinity_loss_per_hit", 3 },
+ },
+ stats = {
+ "trinity_damage_+%_final_to_grant_per_50_resonance",
+ "trinity_resonance_to_grant",
+ "quality_display_trinity_is_gem",
+ },
levels = {
- [1] = { 6000, 15, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6200, 16, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6200, 17, -22, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6200, 18, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6400, 18, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6400, 19, -23, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6400, 20, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6600, 21, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6600, 22, -24, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6600, 23, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6800, 23, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6800, 24, -25, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 25, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7000, 26, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7000, 27, -26, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 7000, 28, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7200, 28, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 7200, 29, -27, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 7200, 30, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 7400, 31, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7400, 32, -28, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7400, 33, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7600, 34, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7600, 34, -29, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7600, 35, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7800, 36, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7800, 37, -30, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7800, 38, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8000, 39, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8000, 39, -31, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8000, 40, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8200, 40, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 8200, 41, -32, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 8200, 41, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 8400, 42, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 8400, 42, -33, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 8400, 42, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 8600, 43, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8600, 43, -34, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 8600, 44, -35, -25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 2, 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3, 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 3, 11, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 4, 11, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 4, 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 5, 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 5, 13, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 6, 13, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 6, 14, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7, 15, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 8, 15, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8, 16, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 9, 16, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 9, 17, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 10, 17, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -16960,64 +20104,66 @@ skills["UnearthPlayer"] = {
"UnearthBoneConstruct",
},
color = 3,
- description = "Raise spikes of bone from the earth in front of you, damaging enemies. The bones of Corpses in the area are ripped out and reassembled into short-lived Bone Construct Minions that fight for you.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Minion] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.Triggerable] = true, },
+ description = "Raise spikes of bone from the earth in front of you, damaging enemies. The bones of Corpses and dead Reviving Minions in the area are ripped out and reassembled into short-lived Bone Construct Minions that fight for you. Larger Corpses create more than one Bone Construct.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Minion] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.Limit] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, },
castTime = 0.95,
qualityStats = {
{ "base_skill_effect_duration", 250 },
+ { "minion_movement_speed_+%", 2.5 },
},
levels = {
- [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 9, }, },
+ [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 7, }, },
+ [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 8, }, },
[3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 10, }, },
[4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 12, }, },
[5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 13, }, },
[6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 22, }, },
- [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 25, }, },
- [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 28, }, },
- [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 32, }, },
- [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 36, }, },
+ [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 18, }, },
+ [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 20, }, },
+ [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 23, }, },
+ [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 29, }, },
+ [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 33, }, },
+ [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 37, }, },
[14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 41, }, },
- [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 47, }, },
- [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 53, }, },
- [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 60, }, },
- [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 68, }, },
- [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 77, }, },
- [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 87, }, },
- [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 99, }, },
- [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 112, }, },
- [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 126, }, },
- [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 143, }, },
- [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 162, }, },
- [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 183, }, },
- [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 208, }, },
- [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 235, }, },
- [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 266, }, },
- [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 301, }, },
- [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 341, }, },
- [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 386, }, },
- [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 437, }, },
- [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 494, }, },
- [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 559, }, },
- [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 633, }, },
- [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 716, }, },
- [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 811, }, },
- [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 918, }, },
- [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 1039, }, },
+ [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 46, }, },
+ [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 51, }, },
+ [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 56, }, },
+ [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 62, }, },
+ [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 69, }, },
+ [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 76, }, },
+ [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 84, }, },
+ [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 93, }, },
+ [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 102, }, },
+ [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 112, }, },
+ [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 123, }, },
+ [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 135, }, },
+ [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 149, }, },
+ [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 163, }, },
+ [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 178, }, },
+ [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 195, }, },
+ [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 213, }, },
+ [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 233, }, },
+ [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 254, }, },
+ [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 277, }, },
+ [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 302, }, },
+ [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 330, }, },
+ [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 359, }, },
+ [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 391, }, },
+ [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 425, }, },
+ [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 463, }, },
},
statSets = {
[1] = {
label = "Unearth",
baseEffectiveness = 1.2599999904633,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
statDescriptionScope = "bone_cone",
baseFlags = {
spell = true,
+ area = true,
minion = true,
},
constantStats = {
@@ -17027,56 +20173,64 @@ skills["UnearthPlayer"] = {
{ "base_skill_effect_duration", 15000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "minion_aggro_radius_+%", 300 },
+ { "skill_specific_stat_description_mode", 1 },
},
stats = {
"spell_minimum_base_physical_damage",
"spell_maximum_base_physical_damage",
"base_number_of_skeletal_constructs_allowed",
+ "minion_aggro_radius_+%",
"can_perform_skill_while_moving",
"quality_display_base_skill_effect_duration_is_gem",
+ "is_area_damage",
+ },
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
},
levels = {
- [1] = { 4, 6, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 5, 8, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 7, 11, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 10, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, 22, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, 27, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, 32, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 25, 38, 12, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 30, 44, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 34, 51, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 40, 59, 14, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 45, 68, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 52, 78, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 59, 89, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 67, 101, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 76, 114, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 86, 129, 18, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 97, 146, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 110, 164, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 123, 185, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 139, 208, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 156, 234, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 175, 263, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 197, 295, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 221, 332, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 278, 417, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 312, 468, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 350, 526, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 393, 590, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 442, 662, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 496, 744, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 557, 835, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 626, 939, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 704, 1056, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 792, 1188, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 891, 1337, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1004, 1506, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1131, 1697, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 4, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, 8, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 7, 11, 8, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, 14, 10, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 12, 18, 10, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 14, 22, 10, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 18, 26, 12, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 21, 31, 12, 40, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 25, 37, 12, 45, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 29, 44, 14, 50, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 34, 51, 14, 55, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 40, 59, 14, 60, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 46, 69, 16, 65, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 53, 79, 16, 70, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 60, 91, 16, 75, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 69, 104, 18, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 79, 119, 18, 85, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 90, 135, 18, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 103, 154, 20, 95, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 117, 176, 20, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 133, 200, 20, 105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 151, 227, 22, 110, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 172, 258, 22, 115, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 195, 293, 22, 120, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 222, 333, 24, 125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 252, 378, 24, 130, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 286, 429, 24, 135, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 325, 487, 26, 140, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 369, 554, 26, 145, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 420, 629, 26, 150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 477, 716, 28, 155, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 543, 814, 28, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 618, 927, 28, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 704, 1057, 30, 170, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 803, 1205, 30, 175, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 917, 1375, 30, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1047, 1571, 32, 185, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1197, 1796, 32, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1370, 2055, 32, 195, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1569, 2353, 34, 200, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -17086,53 +20240,53 @@ skills["UnleashPlayer"] = {
baseTypeName = "Unleash",
fromItem = true,
color = 3,
- description = "Infuse yourself with temporal magic for a short duration, Empowering the next Spell you cast to repeat multiple times. Cannot Empower Channelling Skills or Skills with a Cooldown.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Augment yourself with temporal magic for a short duration, Empowering the next Spell you cast to repeat multiple times. Cannot Empower Channelling Skills or Skills with a Cooldown.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.75,
qualityStats = {
{ "base_cooldown_speed_+%", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [2] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [3] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [4] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [5] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [6] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [7] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [8] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [9] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [10] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [11] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [12] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [13] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [14] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [15] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [16] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [17] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [18] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [19] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [20] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [21] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [22] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [23] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [24] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [25] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [26] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [27] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [28] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [29] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [30] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [31] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [32] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [33] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [34] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [35] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [36] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [37] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [38] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [39] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
- [40] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 20, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 1, cost = { Mana = 0, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 1, cost = { Mana = 0, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 1, cost = { Mana = 0, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 1, cost = { Mana = 0, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 1, cost = { Mana = 0, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 1, cost = { Mana = 0, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 1, cost = { Mana = 0, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 1, cost = { Mana = 0, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 1, cost = { Mana = 0, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 1, cost = { Mana = 0, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 1, cost = { Mana = 0, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 1, cost = { Mana = 0, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 1, cost = { Mana = 0, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 1, cost = { Mana = 0, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 1, cost = { Mana = 0, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 1, cost = { Mana = 0, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 1, cost = { Mana = 0, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 1, cost = { Mana = 0, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 1, cost = { Mana = 0, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 1, cost = { Mana = 0, }, },
},
statSets = {
[1] = {
@@ -17149,53 +20303,53 @@ skills["UnleashPlayer"] = {
{ "staff_unleash_number_of_seals_for_next_skill", 2 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"staff_unleash_cooldown_%_of_cast_time",
"can_perform_skill_while_moving",
},
levels = {
- [1] = { 900, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 890, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 880, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 870, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 860, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 850, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 840, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 830, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 820, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 810, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 800, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 790, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 780, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 770, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 760, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 750, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 740, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 730, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 720, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 710, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 700, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 690, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 680, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 670, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 660, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 650, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 640, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 630, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 620, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 610, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 605, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 600, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 595, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 590, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 585, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 580, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 575, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 570, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 565, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 560, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1200, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 1190, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1180, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1170, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1160, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1150, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 1140, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 1130, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 1120, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 1110, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 1100, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 1090, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 1080, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 1070, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 1060, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 1050, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 1040, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 1030, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 1020, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 1010, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 990, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 980, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 970, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 960, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 950, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 940, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 930, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 920, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 910, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 905, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 900, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 895, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 890, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 885, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 880, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 875, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 870, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 865, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 860, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -17204,62 +20358,62 @@ skills["VaultingImpactPlayer"] = {
name = "Vaulting Impact",
baseTypeName = "Vaulting Impact",
color = 3,
- description = "Leap forward and Slam the ground, sending out a Stunning shockwave that is especially potent against Dazed enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, },
+ description = "Leap forward and Slam the ground, sending out a shockwave. The shockwave applies Broken Stance to Dazed enemies, causing any Hits against those enemies to deal extra damage.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "slam_aftershock_chance_%", 1 },
+ { "base_skill_effect_duration", 100 },
},
levels = {
- [1] = { baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 12, }, },
- [2] = { baseMultiplier = 1.43, levelRequirement = 3, cost = { Mana = 14, }, },
- [3] = { baseMultiplier = 1.57, levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { baseMultiplier = 1.71, levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { baseMultiplier = 1.85, levelRequirement = 14, cost = { Mana = 19, }, },
- [6] = { baseMultiplier = 1.99, levelRequirement = 18, cost = { Mana = 21, }, },
- [7] = { baseMultiplier = 2.13, levelRequirement = 22, cost = { Mana = 23, }, },
- [8] = { baseMultiplier = 2.26, levelRequirement = 26, cost = { Mana = 26, }, },
- [9] = { baseMultiplier = 2.37, levelRequirement = 31, cost = { Mana = 28, }, },
- [10] = { baseMultiplier = 2.49, levelRequirement = 36, cost = { Mana = 32, }, },
- [11] = { baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 35, }, },
- [12] = { baseMultiplier = 2.74, levelRequirement = 46, cost = { Mana = 39, }, },
- [13] = { baseMultiplier = 2.88, levelRequirement = 52, cost = { Mana = 43, }, },
- [14] = { baseMultiplier = 3.03, levelRequirement = 58, cost = { Mana = 48, }, },
- [15] = { baseMultiplier = 3.18, levelRequirement = 64, cost = { Mana = 53, }, },
- [16] = { baseMultiplier = 3.34, levelRequirement = 66, cost = { Mana = 59, }, },
- [17] = { baseMultiplier = 3.5, levelRequirement = 72, cost = { Mana = 65, }, },
- [18] = { baseMultiplier = 3.68, levelRequirement = 78, cost = { Mana = 72, }, },
- [19] = { baseMultiplier = 3.86, levelRequirement = 84, cost = { Mana = 80, }, },
- [20] = { baseMultiplier = 4.05, levelRequirement = 90, cost = { Mana = 89, }, },
- [21] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 99, }, },
- [22] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 109, }, },
- [23] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 121, }, },
- [24] = { baseMultiplier = 4.93, levelRequirement = 90, cost = { Mana = 134, }, },
- [25] = { baseMultiplier = 5.17, levelRequirement = 90, cost = { Mana = 149, }, },
- [26] = { baseMultiplier = 5.43, levelRequirement = 90, cost = { Mana = 165, }, },
- [27] = { baseMultiplier = 5.71, levelRequirement = 90, cost = { Mana = 183, }, },
- [28] = { baseMultiplier = 5.99, levelRequirement = 90, cost = { Mana = 203, }, },
- [29] = { baseMultiplier = 6.29, levelRequirement = 90, cost = { Mana = 225, }, },
- [30] = { baseMultiplier = 6.6, levelRequirement = 90, cost = { Mana = 249, }, },
- [31] = { baseMultiplier = 6.93, levelRequirement = 90, cost = { Mana = 276, }, },
- [32] = { baseMultiplier = 7.28, levelRequirement = 90, cost = { Mana = 306, }, },
- [33] = { baseMultiplier = 7.65, levelRequirement = 90, cost = { Mana = 339, }, },
- [34] = { baseMultiplier = 8.03, levelRequirement = 90, cost = { Mana = 376, }, },
- [35] = { baseMultiplier = 8.43, levelRequirement = 90, cost = { Mana = 417, }, },
- [36] = { baseMultiplier = 8.85, levelRequirement = 90, cost = { Mana = 462, }, },
- [37] = { baseMultiplier = 9.29, levelRequirement = 90, cost = { Mana = 512, }, },
- [38] = { baseMultiplier = 9.76, levelRequirement = 90, cost = { Mana = 567, }, },
- [39] = { baseMultiplier = 10.25, levelRequirement = 90, cost = { Mana = 629, }, },
- [40] = { baseMultiplier = 10.76, levelRequirement = 90, cost = { Mana = 697, }, },
+ [1] = { baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 12, }, },
+ [2] = { baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 14, }, },
+ [3] = { baseMultiplier = 1.93, levelRequirement = 6, cost = { Mana = 16, }, },
+ [4] = { baseMultiplier = 2.1, levelRequirement = 10, cost = { Mana = 18, }, },
+ [5] = { baseMultiplier = 2.25, levelRequirement = 14, cost = { Mana = 20, }, },
+ [6] = { baseMultiplier = 2.41, levelRequirement = 18, cost = { Mana = 23, }, },
+ [7] = { baseMultiplier = 2.57, levelRequirement = 22, cost = { Mana = 26, }, },
+ [8] = { baseMultiplier = 2.7, levelRequirement = 26, cost = { Mana = 29, }, },
+ [9] = { baseMultiplier = 2.82, levelRequirement = 31, cost = { Mana = 32, }, },
+ [10] = { baseMultiplier = 2.93, levelRequirement = 36, cost = { Mana = 35, }, },
+ [11] = { baseMultiplier = 3.05, levelRequirement = 41, cost = { Mana = 39, }, },
+ [12] = { baseMultiplier = 3.18, levelRequirement = 46, cost = { Mana = 42, }, },
+ [13] = { baseMultiplier = 3.3, levelRequirement = 52, cost = { Mana = 46, }, },
+ [14] = { baseMultiplier = 3.43, levelRequirement = 58, cost = { Mana = 51, }, },
+ [15] = { baseMultiplier = 3.55, levelRequirement = 64, cost = { Mana = 55, }, },
+ [16] = { baseMultiplier = 3.68, levelRequirement = 66, cost = { Mana = 60, }, },
+ [17] = { baseMultiplier = 3.81, levelRequirement = 72, cost = { Mana = 65, }, },
+ [18] = { baseMultiplier = 3.95, levelRequirement = 78, cost = { Mana = 71, }, },
+ [19] = { baseMultiplier = 4.08, levelRequirement = 84, cost = { Mana = 77, }, },
+ [20] = { baseMultiplier = 4.22, levelRequirement = 90, cost = { Mana = 83, }, },
+ [21] = { baseMultiplier = 4.36, levelRequirement = 90, cost = { Mana = 89, }, },
+ [22] = { baseMultiplier = 4.5, levelRequirement = 90, cost = { Mana = 96, }, },
+ [23] = { baseMultiplier = 4.65, levelRequirement = 90, cost = { Mana = 104, }, },
+ [24] = { baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 112, }, },
+ [25] = { baseMultiplier = 4.97, levelRequirement = 90, cost = { Mana = 120, }, },
+ [26] = { baseMultiplier = 5.13, levelRequirement = 90, cost = { Mana = 129, }, },
+ [27] = { baseMultiplier = 5.3, levelRequirement = 90, cost = { Mana = 138, }, },
+ [28] = { baseMultiplier = 5.48, levelRequirement = 90, cost = { Mana = 148, }, },
+ [29] = { baseMultiplier = 5.66, levelRequirement = 90, cost = { Mana = 159, }, },
+ [30] = { baseMultiplier = 5.85, levelRequirement = 90, cost = { Mana = 170, }, },
+ [31] = { baseMultiplier = 6.04, levelRequirement = 90, cost = { Mana = 182, }, },
+ [32] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 194, }, },
+ [33] = { baseMultiplier = 6.45, levelRequirement = 90, cost = { Mana = 208, }, },
+ [34] = { baseMultiplier = 6.66, levelRequirement = 90, cost = { Mana = 222, }, },
+ [35] = { baseMultiplier = 6.88, levelRequirement = 90, cost = { Mana = 237, }, },
+ [36] = { baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 252, }, },
+ [37] = { baseMultiplier = 7.35, levelRequirement = 90, cost = { Mana = 269, }, },
+ [38] = { baseMultiplier = 7.59, levelRequirement = 90, cost = { Mana = 286, }, },
+ [39] = { baseMultiplier = 7.84, levelRequirement = 90, cost = { Mana = 305, }, },
+ [40] = { baseMultiplier = 8.1, levelRequirement = 90, cost = { Mana = 325, }, },
},
statSets = {
[1] = {
label = "Vaulting Impact",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "vaulting_impact",
+ statDescriptionScope = "vaulting_impact_statset_0",
baseFlags = {
attack = true,
area = true,
@@ -17269,55 +20423,81 @@ skills["VaultingImpactPlayer"] = {
{ "total_attack_time_+_ms", 1000 },
{ "attack_maximum_action_distance_+", 42 },
{ "active_skill_base_area_of_effect_radius", 24 },
- { "consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final", 300 },
- { "vaulting_impact_short_animation_maximum_range", 20 },
+ { "vaulting_impact_short_animation_maximum_range", 40 },
},
stats = {
- "active_skill_hit_damage_stun_multiplier_+%_final",
"is_area_damage",
"visual_hit_effect_physical_is_wind",
+ "cannot_daze",
},
levels = {
- [1] = { 50, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 52, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 54, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 56, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 58, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 62, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 64, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 66, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 68, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 72, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 74, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 78, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 80, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 84, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 86, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 88, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 90, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 92, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 94, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 96, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 98, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 100, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 102, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 104, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 106, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 108, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 109, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 110, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 111, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 112, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 113, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 114, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 115, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 116, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 117, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 118, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Vs Dazed",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "vaulting_impact_statset_1",
+ baseFlags = {
+ attack = true,
+ area = true,
+ melee = true,
+ },
+ constantStats = {
+ { "total_attack_time_+_ms", 1000 },
+ { "attack_maximum_action_distance_+", 42 },
+ { "active_skill_base_area_of_effect_radius", 24 },
+ { "vaulting_impact_short_animation_maximum_range", 40 },
+ { "exploit_debuff_attack_damage_to_convert_to_magnitude_%", 5 },
+ { "base_skill_effect_duration", 5000 },
+ },
+ stats = {
+ "is_area_damage",
+ "visual_hit_effect_physical_is_wind",
+ "cannot_daze",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { baseMultiplier = 1.6, actorLevel = 1, },
},
},
}
@@ -17327,120 +20507,199 @@ skills["VolatileDeadPlayer"] = {
baseTypeName = "Volatile Dead",
fromItem = true,
color = 3,
- description = "Consume a Corpse to create a fireball that seeks out enemies and explodes. ",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, },
+ description = "Consume a Corpse to create a volatile core that seeks out enemies and Ignites enemies near it. The core explodes at the end of its duration.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.8,
qualityStats = {
{ "base_chance_to_not_consume_corpse_%", 0.5 },
},
levels = {
- [1] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 7, PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [1] = { PvPDamageMultiplier = -80, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { PvPDamageMultiplier = -80, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { PvPDamageMultiplier = -80, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { PvPDamageMultiplier = -80, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { PvPDamageMultiplier = -80, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { PvPDamageMultiplier = -80, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { PvPDamageMultiplier = -80, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { PvPDamageMultiplier = -80, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { PvPDamageMultiplier = -80, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { PvPDamageMultiplier = -80, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { PvPDamageMultiplier = -80, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { PvPDamageMultiplier = -80, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { PvPDamageMultiplier = -80, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { PvPDamageMultiplier = -80, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { PvPDamageMultiplier = -80, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { PvPDamageMultiplier = -80, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { PvPDamageMultiplier = -80, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { PvPDamageMultiplier = -80, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { PvPDamageMultiplier = -80, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { PvPDamageMultiplier = -80, levelRequirement = 90, cost = { Mana = 0, }, },
},
statSets = {
[1] = {
- label = "Volatile Dead",
- baseEffectiveness = 3.75,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "volatile_dead",
+ label = "Explosion",
+ baseEffectiveness = 2.4000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "volatile_dead_statset_0",
+ baseFlags = {
+ spell = true,
+ area = true,
+ },
+ constantStats = {
+ { "volatile_dead_base_number_of_corpses_to_consume", 1 },
+ { "active_skill_base_area_of_effect_radius", 22 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 5000 },
+ },
+ stats = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 32, 49, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 58, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 80, 120, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 109, 163, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 193, 289, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 222, 333, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 255, 383, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 293, 440, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 337, 505, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 387, 580, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 444, 666, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 510, 765, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 586, 879, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 674, 1010, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 775, 1162, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 892, 1337, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1027, 1540, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1184, 1775, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1365, 2048, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1577, 2365, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1822, 2734, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2109, 3163, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2443, 3664, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2833, 4250, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 3290, 4934, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3825, 5737, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 4452, 6678, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Core",
+ baseEffectiveness = 1.3700000047684,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "volatile_dead_statset_1",
baseFlags = {
spell = true,
area = true,
},
constantStats = {
{ "volatile_dead_base_number_of_corpses_to_consume", 1 },
- { "active_skill_base_area_of_effect_radius", 14 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 5000 },
+ { "active_skill_base_area_of_effect_radius", 15 },
},
stats = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
"is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 79, 118, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 92, 139, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 108, 162, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 125, 188, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 192, 288, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 220, 330, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 288, 431, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 328, 492, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 373, 560, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 425, 637, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 483, 724, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 549, 823, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 623, 935, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 708, 1062, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 804, 1206, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 913, 1370, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1038, 1556, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1179, 1769, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1341, 2011, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1525, 2288, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1736, 2604, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1977, 2965, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 2252, 3379, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2569, 3853, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2932, 4398, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 3349, 5023, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3829, 5743, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 4382, 6573, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 5019, 7529, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, 5, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, 23, 34, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, 39, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, 46, 69, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, 72, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, 96, 143, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, 110, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, 127, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, 146, 218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, 221, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, 253, 380, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, 334, 502, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, 384, 577, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, 442, 663, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, 509, 763, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, 586, 879, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, 676, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, 779, 1169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, 900, 1350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, 1040, 1561, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, 1204, 1806, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, 1394, 2092, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, 1617, 2426, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, 1878, 2817, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, 2183, 3275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, 2541, 3812, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -17449,53 +20708,53 @@ skills["VulnerabilityPlayer"] = {
name = "Vulnerability",
baseTypeName = "Vulnerability",
color = 3,
- description = "Curse all targets in an area after a short delay, making Hits against them ignore a portion of their Armour.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Curse all targets in an area after a short delay. making Hits against them ignore a portion of their Armour.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.7,
qualityStats = {
{ "curse_effect_+%", 0.5 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 42, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
[2] = { levelRequirement = 3, cost = { Mana = 46, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 51, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 56, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 61, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 67, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 74, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 81, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
[9] = { levelRequirement = 31, cost = { Mana = 89, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 98, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 108, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 119, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 130, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 143, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 157, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 173, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 190, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 208, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 229, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 333, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 365, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 401, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 441, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 484, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 532, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 584, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 641, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 704, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 773, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 849, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 1024, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1125, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1235, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1356, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1489, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1635, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
},
statSets = {
[1] = {
@@ -17516,56 +20775,60 @@ skills["VulnerabilityPlayer"] = {
{ "curse_delay_duration_ms", 1500 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
"active_skill_base_area_of_effect_radius",
"base_skill_buff_total_armour_-_to_grant",
+ "skill_curses_cannot_apply_to_targets_above_level",
"base_deal_no_damage",
"can_perform_skill_while_moving",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
- [1] = { 6000, 15, 8, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6200, 16, 15, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6200, 17, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6200, 18, 54, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6400, 18, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6400, 19, 133, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6400, 20, 191, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6600, 21, 268, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6600, 22, 394, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6600, 23, 568, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6800, 23, 801, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6800, 24, 1118, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 25, 1640, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 7000, 26, 2376, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 7000, 27, 3409, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 7000, 28, 4573, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 7200, 28, 5441, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 7200, 29, 6465, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 7200, 30, 8114, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 7400, 31, 9605, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7400, 32, 10159, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7400, 33, 10741, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7600, 34, 11356, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7600, 34, 12005, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7600, 35, 12689, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7800, 36, 13410, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7800, 37, 14171, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7800, 38, 14973, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 8000, 39, 15819, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 8000, 39, 16710, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 8000, 40, 17649, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 8200, 40, 18639, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 8200, 41, 19683, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 8200, 41, 20781, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 8400, 42, 21940, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 8400, 42, 23161, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 8400, 42, 24448, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 8600, 43, 25803, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 8600, 43, 27151, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 8600, 44, 28550, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 6000, 15, 16, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, 30, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, 58, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, 108, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, 176, 32, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, 266, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, 382, 39, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, 536, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, 788, 47, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, 1136, 52, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, 1602, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, 2236, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, 3280, 66, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, 4752, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, 6818, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, 9146, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, 10882, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, 12930, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, 16228, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, 19210, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, 20318, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, 21482, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, 22712, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, 24010, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, 25378, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, 26820, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, 28342, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, 29946, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, 31638, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, 33420, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, 35298, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, 37278, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, 39366, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, 41562, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, 43880, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, 46322, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, 48896, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, 51606, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, 54302, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, 57100, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -17574,8 +20837,8 @@ skills["WaveOfFrostPlayer"] = {
name = "Wave of Frost",
baseTypeName = "Wave of Frost",
color = 3,
- description = "Flip backwards and send forth a Freezing wave in front of you.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, },
+ description = "Flip backwards and send forth a Freezing wave in front of you, immediately Freezing enemies which are Primed for Freeze.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
@@ -17584,46 +20847,46 @@ skills["WaveOfFrostPlayer"] = {
{ "base_reduce_enemy_cold_resistance_%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 15, }, },
- [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.71, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.86, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 14, cost = { Mana = 23, }, },
- [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 22, cost = { Mana = 28, }, },
- [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.15, levelRequirement = 26, cost = { Mana = 31, }, },
- [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.21, levelRequirement = 31, cost = { Mana = 34, }, },
- [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 38, }, },
- [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.36, levelRequirement = 41, cost = { Mana = 42, }, },
- [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.44, levelRequirement = 46, cost = { Mana = 47, }, },
- [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 52, cost = { Mana = 52, }, },
- [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.62, levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.72, levelRequirement = 64, cost = { Mana = 64, }, },
- [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.83, levelRequirement = 66, cost = { Mana = 71, }, },
+ [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.71, levelRequirement = 3, cost = { Mana = 17, }, },
+ [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.86, levelRequirement = 10, cost = { Mana = 22, }, },
+ [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 14, cost = { Mana = 25, }, },
+ [6] = { attackSpeedMultiplier = -45, levelRequirement = 18, cost = { Mana = 28, }, },
+ [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 22, cost = { Mana = 31, }, },
+ [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.15, levelRequirement = 26, cost = { Mana = 35, }, },
+ [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.21, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.36, levelRequirement = 41, cost = { Mana = 47, }, },
+ [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.44, levelRequirement = 46, cost = { Mana = 51, }, },
+ [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 52, cost = { Mana = 56, }, },
+ [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.62, levelRequirement = 58, cost = { Mana = 61, }, },
+ [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.72, levelRequirement = 64, cost = { Mana = 67, }, },
+ [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.83, levelRequirement = 66, cost = { Mana = 73, }, },
[17] = { attackSpeedMultiplier = -45, baseMultiplier = 1.95, levelRequirement = 72, cost = { Mana = 79, }, },
- [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.07, levelRequirement = 78, cost = { Mana = 87, }, },
- [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 97, }, },
- [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 107, }, },
- [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 119, }, },
- [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 132, }, },
- [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 146, }, },
- [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 162, }, },
- [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 180, }, },
- [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.47, levelRequirement = 90, cost = { Mana = 199, }, },
- [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 221, }, },
- [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 245, }, },
- [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.21, levelRequirement = 90, cost = { Mana = 271, }, },
- [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 301, }, },
- [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 333, }, },
- [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.1, levelRequirement = 90, cost = { Mana = 369, }, },
- [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.44, levelRequirement = 90, cost = { Mana = 409, }, },
- [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.81, levelRequirement = 90, cost = { Mana = 453, }, },
- [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.19, levelRequirement = 90, cost = { Mana = 502, }, },
- [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 557, }, },
- [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.05, levelRequirement = 90, cost = { Mana = 617, }, },
- [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.52, levelRequirement = 90, cost = { Mana = 684, }, },
- [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.02, levelRequirement = 90, cost = { Mana = 758, }, },
- [40] = { attackSpeedMultiplier = -45, baseMultiplier = 8.55, levelRequirement = 90, cost = { Mana = 840, }, },
+ [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.07, levelRequirement = 78, cost = { Mana = 86, }, },
+ [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.21, levelRequirement = 84, cost = { Mana = 93, }, },
+ [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 100, }, },
+ [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.51, levelRequirement = 90, cost = { Mana = 108, }, },
+ [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.68, levelRequirement = 90, cost = { Mana = 116, }, },
+ [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 125, }, },
+ [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.05, levelRequirement = 90, cost = { Mana = 135, }, },
+ [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 145, }, },
+ [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.47, levelRequirement = 90, cost = { Mana = 156, }, },
+ [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 167, }, },
+ [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 179, }, },
+ [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.21, levelRequirement = 90, cost = { Mana = 192, }, },
+ [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 205, }, },
+ [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.79, levelRequirement = 90, cost = { Mana = 219, }, },
+ [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.1, levelRequirement = 90, cost = { Mana = 235, }, },
+ [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.44, levelRequirement = 90, cost = { Mana = 251, }, },
+ [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.81, levelRequirement = 90, cost = { Mana = 267, }, },
+ [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.19, levelRequirement = 90, cost = { Mana = 285, }, },
+ [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.61, levelRequirement = 90, cost = { Mana = 304, }, },
+ [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.05, levelRequirement = 90, cost = { Mana = 324, }, },
+ [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.52, levelRequirement = 90, cost = { Mana = 345, }, },
+ [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.02, levelRequirement = 90, cost = { Mana = 368, }, },
+ [40] = { attackSpeedMultiplier = -45, baseMultiplier = 8.55, levelRequirement = 90, cost = { Mana = 391, }, },
},
statSets = {
[1] = {
@@ -17643,6 +20906,8 @@ skills["WaveOfFrostPlayer"] = {
stats = {
"active_skill_hit_damage_freeze_multiplier_+%_final",
"is_area_damage",
+ "has_freeze_cull",
+ "active_skill_show_freeze_range",
},
levels = {
[1] = { 300, statInterpolation = { 1, }, actorLevel = 1, },
@@ -17694,7 +20959,7 @@ skills["WhirlingAssaultPlayer"] = {
baseTypeName = "Whirling Assault",
color = 3,
description = "Advance while hitting enemies around you with a series of spinning Strikes.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
@@ -17703,46 +20968,46 @@ skills["WhirlingAssaultPlayer"] = {
{ "active_skill_attack_speed_+%_final", 0.75 },
},
levels = {
- [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 19, }, },
+ [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 18, }, },
[2] = { baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 21, }, },
- [3] = { baseMultiplier = 0.49, levelRequirement = 6, cost = { Mana = 23, }, },
- [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 26, }, },
- [5] = { baseMultiplier = 0.58, levelRequirement = 14, cost = { Mana = 29, }, },
- [6] = { baseMultiplier = 0.63, levelRequirement = 18, cost = { Mana = 32, }, },
- [7] = { baseMultiplier = 0.68, levelRequirement = 22, cost = { Mana = 35, }, },
- [8] = { baseMultiplier = 0.73, levelRequirement = 26, cost = { Mana = 39, }, },
- [9] = { baseMultiplier = 0.77, levelRequirement = 31, cost = { Mana = 43, }, },
- [10] = { baseMultiplier = 0.82, levelRequirement = 36, cost = { Mana = 48, }, },
- [11] = { baseMultiplier = 0.87, levelRequirement = 41, cost = { Mana = 53, }, },
- [12] = { baseMultiplier = 0.93, levelRequirement = 46, cost = { Mana = 59, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 66, }, },
- [14] = { baseMultiplier = 1.06, levelRequirement = 58, cost = { Mana = 73, }, },
- [15] = { baseMultiplier = 1.14, levelRequirement = 64, cost = { Mana = 81, }, },
- [16] = { baseMultiplier = 1.22, levelRequirement = 66, cost = { Mana = 89, }, },
+ [3] = { baseMultiplier = 0.49, levelRequirement = 6, cost = { Mana = 24, }, },
+ [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 28, }, },
+ [5] = { baseMultiplier = 0.58, levelRequirement = 14, cost = { Mana = 31, }, },
+ [6] = { baseMultiplier = 0.63, levelRequirement = 18, cost = { Mana = 35, }, },
+ [7] = { baseMultiplier = 0.68, levelRequirement = 22, cost = { Mana = 39, }, },
+ [8] = { baseMultiplier = 0.73, levelRequirement = 26, cost = { Mana = 44, }, },
+ [9] = { baseMultiplier = 0.77, levelRequirement = 31, cost = { Mana = 48, }, },
+ [10] = { baseMultiplier = 0.82, levelRequirement = 36, cost = { Mana = 53, }, },
+ [11] = { baseMultiplier = 0.87, levelRequirement = 41, cost = { Mana = 59, }, },
+ [12] = { baseMultiplier = 0.93, levelRequirement = 46, cost = { Mana = 64, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 71, }, },
+ [14] = { baseMultiplier = 1.06, levelRequirement = 58, cost = { Mana = 77, }, },
+ [15] = { baseMultiplier = 1.14, levelRequirement = 64, cost = { Mana = 84, }, },
+ [16] = { baseMultiplier = 1.22, levelRequirement = 66, cost = { Mana = 91, }, },
[17] = { baseMultiplier = 1.31, levelRequirement = 72, cost = { Mana = 99, }, },
- [18] = { baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 110, }, },
- [19] = { baseMultiplier = 1.52, levelRequirement = 84, cost = { Mana = 122, }, },
- [20] = { baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 135, }, },
- [21] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 150, }, },
- [22] = { baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 166, }, },
- [23] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 184, }, },
- [24] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 204, }, },
- [25] = { baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 226, }, },
- [26] = { baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 250, }, },
- [27] = { baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 277, }, },
- [28] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 307, }, },
- [29] = { baseMultiplier = 3.19, levelRequirement = 90, cost = { Mana = 341, }, },
- [30] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 378, }, },
- [31] = { baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 419, }, },
- [32] = { baseMultiplier = 3.99, levelRequirement = 90, cost = { Mana = 464, }, },
- [33] = { baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 514, }, },
- [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 570, }, },
- [35] = { baseMultiplier = 4.99, levelRequirement = 90, cost = { Mana = 631, }, },
- [36] = { baseMultiplier = 5.37, levelRequirement = 90, cost = { Mana = 700, }, },
- [37] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 775, }, },
- [38] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 859, }, },
- [39] = { baseMultiplier = 6.72, levelRequirement = 90, cost = { Mana = 952, }, },
- [40] = { baseMultiplier = 7.24, levelRequirement = 90, cost = { Mana = 1055, }, },
+ [18] = { baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 107, }, },
+ [19] = { baseMultiplier = 1.52, levelRequirement = 84, cost = { Mana = 116, }, },
+ [20] = { baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 126, }, },
+ [21] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 136, }, },
+ [22] = { baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 146, }, },
+ [23] = { baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 158, }, },
+ [24] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 169, }, },
+ [25] = { baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 182, }, },
+ [26] = { baseMultiplier = 2.55, levelRequirement = 90, cost = { Mana = 196, }, },
+ [27] = { baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 210, }, },
+ [28] = { baseMultiplier = 2.96, levelRequirement = 90, cost = { Mana = 225, }, },
+ [29] = { baseMultiplier = 3.19, levelRequirement = 90, cost = { Mana = 241, }, },
+ [30] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 258, }, },
+ [31] = { baseMultiplier = 3.7, levelRequirement = 90, cost = { Mana = 276, }, },
+ [32] = { baseMultiplier = 3.99, levelRequirement = 90, cost = { Mana = 295, }, },
+ [33] = { baseMultiplier = 4.3, levelRequirement = 90, cost = { Mana = 315, }, },
+ [34] = { baseMultiplier = 4.63, levelRequirement = 90, cost = { Mana = 336, }, },
+ [35] = { baseMultiplier = 4.99, levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { baseMultiplier = 5.37, levelRequirement = 90, cost = { Mana = 382, }, },
+ [37] = { baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 407, }, },
+ [38] = { baseMultiplier = 6.24, levelRequirement = 90, cost = { Mana = 434, }, },
+ [39] = { baseMultiplier = 6.72, levelRequirement = 90, cost = { Mana = 462, }, },
+ [40] = { baseMultiplier = 7.24, levelRequirement = 90, cost = { Mana = 491, }, },
},
statSets = {
[1] = {
@@ -17764,6 +21029,7 @@ skills["WhirlingAssaultPlayer"] = {
"visual_hit_effect_physical_is_wind",
"base_skill_show_average_damage_instead_of_dps",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -17814,56 +21080,56 @@ skills["GaleStrikePlayer"] = {
name = "Wind Blast",
baseTypeName = "Wind Blast",
color = 3,
- description = "Batter enemies at range by generating a gust of wind as you swing. Enemies will be Knocked Back based on how close they are to you.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, },
+ description = "Batter enemies at range by generating a gust of wind as you swing. Enemies will be Dazed and Knocked Back based on how close they are to you.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Staff"] = true,
},
castTime = 1,
qualityStats = {
- { "knockback_distance_+%", 1.5 },
+ { "wind_blast_damage_+%_final_from_distance", 1 },
},
levels = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 3, cost = { Mana = 10, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.12, levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.3, levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.48, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.63, levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.71, levelRequirement = 41, cost = { Mana = 26, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.79, levelRequirement = 46, cost = { Mana = 29, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 52, cost = { Mana = 33, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.98, levelRequirement = 58, cost = { Mana = 36, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.08, levelRequirement = 64, cost = { Mana = 40, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.18, levelRequirement = 66, cost = { Mana = 44, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 6, cost = { Mana = 12, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.12, levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.21, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.3, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.39, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.48, levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.63, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.71, levelRequirement = 41, cost = { Mana = 29, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.79, levelRequirement = 46, cost = { Mana = 32, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 52, cost = { Mana = 35, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.98, levelRequirement = 58, cost = { Mana = 38, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.08, levelRequirement = 64, cost = { Mana = 42, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.18, levelRequirement = 66, cost = { Mana = 45, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 72, cost = { Mana = 49, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.4, levelRequirement = 78, cost = { Mana = 55, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.52, levelRequirement = 84, cost = { Mana = 61, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 67, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 75, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 83, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 92, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 102, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 113, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 125, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 139, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 154, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.11, levelRequirement = 90, cost = { Mana = 170, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 189, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.53, levelRequirement = 90, cost = { Mana = 209, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 232, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 257, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 285, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.51, levelRequirement = 90, cost = { Mana = 316, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 350, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.08, levelRequirement = 90, cost = { Mana = 388, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 430, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.7, levelRequirement = 90, cost = { Mana = 476, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.03, levelRequirement = 90, cost = { Mana = 528, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.4, levelRequirement = 78, cost = { Mana = 54, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.52, levelRequirement = 84, cost = { Mana = 58, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 63, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 68, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 73, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.07, levelRequirement = 90, cost = { Mana = 79, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 85, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 91, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 98, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.73, levelRequirement = 90, cost = { Mana = 105, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 112, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.11, levelRequirement = 90, cost = { Mana = 120, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.32, levelRequirement = 90, cost = { Mana = 129, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.53, levelRequirement = 90, cost = { Mana = 138, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 147, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 157, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.25, levelRequirement = 90, cost = { Mana = 168, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.51, levelRequirement = 90, cost = { Mana = 179, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 5.79, levelRequirement = 90, cost = { Mana = 191, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.08, levelRequirement = 90, cost = { Mana = 204, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.38, levelRequirement = 90, cost = { Mana = 217, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 6.7, levelRequirement = 90, cost = { Mana = 231, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.03, levelRequirement = 90, cost = { Mana = 246, }, },
},
statSets = {
[1] = {
@@ -17884,56 +21150,57 @@ skills["GaleStrikePlayer"] = {
{ "active_skill_base_secondary_area_of_effect_radius", 7 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_chance_to_daze_%", 100 },
},
stats = {
- "support_physical_damage_%_to_gain_as_daze_build_up",
"global_knockback",
"visual_hit_effect_physical_is_wind",
"is_area_damage",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 500, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 508, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 516, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 524, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 532, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 540, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 548, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 556, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 564, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 572, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 580, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 588, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 596, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 604, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 612, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 620, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 628, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 636, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 644, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 652, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 660, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 668, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 676, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 684, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 692, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 700, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 708, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 716, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 724, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 732, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 740, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 748, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 756, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 764, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 772, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 780, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 788, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 796, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 804, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 812, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -17944,7 +21211,7 @@ skills["WitherPlayer"] = {
fromItem = true,
color = 3,
description = "Channel a debilitating hex that Withers enemies in the area.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Chaos] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Chaos] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.25,
qualityStats = {
},
@@ -18004,11 +21271,15 @@ skills["WitherPlayer"] = {
{ "chaos_damage_taken_+%", 6 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 25 },
+ { "wither_channeled_move_targeting_area_X_units_per_second", 18 },
},
stats = {
"active_skill_withered_base_duration_ms",
- "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "active_skill_withered_base_duration_ms",
},
levels = {
[1] = { 2000, statInterpolation = { 1, }, actorLevel = 1, },
diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua
index d9400662be..d96ec7e9cb 100644
--- a/src/Data/Skills/act_str.lua
+++ b/src/Data/Skills/act_str.lua
@@ -6,12 +6,384 @@
--
local skills, mod, flag, skill = ...
+skills["AncestralCryPlayer"] = {
+ name = "Ancestral Cry",
+ baseTypeName = "Ancestral Cry",
+ color = 1,
+ description = "Perform a Warcry using Glory gained by Igniting enemies to turn you into an embodiment of Kaom. While embodying Kaom, your footsteps Trigger Volcanic Steps, Melee Strikes and Slams are Ancestrally Boosted, and your Melee Strikes Trigger Volcanic Eruption.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.ConsumesCharges] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, [SkillType.Fire] = true, [SkillType.Triggers] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, },
+ weaponTypes = {
+ ["None"] = true,
+ ["One Handed Mace"] = true,
+ ["Flail"] = true,
+ ["Two Handed Sword"] = true,
+ ["Dagger"] = true,
+ ["Staff"] = true,
+ ["Spear"] = true,
+ ["Two Handed Axe"] = true,
+ ["Two Handed Mace"] = true,
+ ["One Handed Axe"] = true,
+ ["Claw"] = true,
+ ["One Handed Sword"] = true,
+ },
+ castTime = 0.8,
+ qualityStats = {
+ { "ancestral_cry_duration_+%_final_per_removable_endurance_charge", 1 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 10, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 11, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 12, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 18, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 20, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 22, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 23, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 27, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 29, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 31, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 33, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 35, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 37, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 39, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 41, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 44, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 46, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 49, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 51, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 57, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 59, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 62, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 65, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 68, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 71, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 75, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 78, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 81, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 96, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 100, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 108, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Warcry",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ancestral_cry_statset_0",
+ baseFlags = {
+ warcry = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "ancestral_cry_empowered_attacks_strike_X_additional_enemies", 2 },
+ { "skill_empower_limitation_specifier_for_stat_description", 1 },
+ { "ancestral_cry_duration_+%_final_per_removable_endurance_charge", 50 },
+ { "base_skill_effect_duration", 8000 },
+ { "active_skill_requires_X_glory", 100 },
+ { "active_skill_generates_mp_%_glory_per_ignite", 100 },
+ { "ancestral_cry_non_skill_physical_to_fire_convert_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 40 },
+ { "skill_specific_stat_description_mode", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "base_deal_no_damage",
+ "cannot_cancel_skill_before_contact_point",
+ "warcry_count_power_from_enemies",
+ "warcries_knock_back_enemies",
+ "can_perform_skill_while_moving",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["AncestralCryShockwavePlayer"] = {
+ name = "Volcanic Steps",
+ hidden = true,
+ description = "Each step you take Slams the ground around you, dealing damage to nearby enemies.",
+ skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Fire] = true, [SkillType.Slam] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Melee] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.6, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.66, levelRequirement = 0, },
+ [3] = { baseMultiplier = 0.73, levelRequirement = 0, },
+ [4] = { baseMultiplier = 0.8, levelRequirement = 0, },
+ [5] = { baseMultiplier = 0.87, levelRequirement = 0, },
+ [6] = { baseMultiplier = 0.94, levelRequirement = 0, },
+ [7] = { baseMultiplier = 1.02, levelRequirement = 0, },
+ [8] = { baseMultiplier = 1.09, levelRequirement = 0, },
+ [9] = { baseMultiplier = 1.16, levelRequirement = 0, },
+ [10] = { baseMultiplier = 1.23, levelRequirement = 0, },
+ [11] = { baseMultiplier = 1.31, levelRequirement = 0, },
+ [12] = { baseMultiplier = 1.4, levelRequirement = 0, },
+ [13] = { baseMultiplier = 1.49, levelRequirement = 0, },
+ [14] = { baseMultiplier = 1.6, levelRequirement = 0, },
+ [15] = { baseMultiplier = 1.71, levelRequirement = 0, },
+ [16] = { baseMultiplier = 1.83, levelRequirement = 0, },
+ [17] = { baseMultiplier = 1.97, levelRequirement = 0, },
+ [18] = { baseMultiplier = 2.11, levelRequirement = 0, },
+ [19] = { baseMultiplier = 2.27, levelRequirement = 0, },
+ [20] = { baseMultiplier = 2.45, levelRequirement = 0, },
+ [21] = { baseMultiplier = 2.64, levelRequirement = 0, },
+ [22] = { baseMultiplier = 2.84, levelRequirement = 0, },
+ [23] = { baseMultiplier = 3.06, levelRequirement = 0, },
+ [24] = { baseMultiplier = 3.3, levelRequirement = 0, },
+ [25] = { baseMultiplier = 3.55, levelRequirement = 0, },
+ [26] = { baseMultiplier = 3.83, levelRequirement = 0, },
+ [27] = { baseMultiplier = 4.13, levelRequirement = 0, },
+ [28] = { baseMultiplier = 4.44, levelRequirement = 0, },
+ [29] = { baseMultiplier = 4.79, levelRequirement = 0, },
+ [30] = { baseMultiplier = 5.16, levelRequirement = 0, },
+ [31] = { baseMultiplier = 5.56, levelRequirement = 0, },
+ [32] = { baseMultiplier = 5.99, levelRequirement = 0, },
+ [33] = { baseMultiplier = 6.45, levelRequirement = 0, },
+ [34] = { baseMultiplier = 6.95, levelRequirement = 0, },
+ [35] = { baseMultiplier = 7.48, levelRequirement = 0, },
+ [36] = { baseMultiplier = 8.06, levelRequirement = 0, },
+ [37] = { baseMultiplier = 8.69, levelRequirement = 0, },
+ [38] = { baseMultiplier = 9.36, levelRequirement = 0, },
+ [39] = { baseMultiplier = 10.08, levelRequirement = 0, },
+ [40] = { baseMultiplier = 10.86, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Volcanic Steps",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ancestral_cry_shockwave",
+ baseFlags = {
+ attack = true,
+ melee = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 12 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
+ },
+ stats = {
+ "is_area_damage",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["AncestralCryProjectilePlayer"] = {
+ name = "Volcanic Eruption",
+ hidden = true,
+ description = "Fire molten Projectiles from the struck enemy, which will land nearby dealing Attack damage in an area.",
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CannotChain] = true, [SkillType.Fire] = true, [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Cooldown] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.4, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [2] = { baseMultiplier = 0.44, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [3] = { baseMultiplier = 0.48, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [4] = { baseMultiplier = 0.52, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [5] = { baseMultiplier = 0.56, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [6] = { baseMultiplier = 0.6, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [7] = { baseMultiplier = 0.64, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [8] = { baseMultiplier = 0.68, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [9] = { baseMultiplier = 0.7, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [10] = { baseMultiplier = 0.73, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [11] = { baseMultiplier = 0.76, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [12] = { baseMultiplier = 0.79, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [13] = { baseMultiplier = 0.82, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [14] = { baseMultiplier = 0.86, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [15] = { baseMultiplier = 0.89, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [16] = { baseMultiplier = 0.92, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [17] = { baseMultiplier = 0.95, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [18] = { baseMultiplier = 0.99, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [19] = { baseMultiplier = 1.02, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [20] = { baseMultiplier = 1.05, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [21] = { baseMultiplier = 1.09, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [22] = { baseMultiplier = 1.13, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [23] = { baseMultiplier = 1.16, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [24] = { baseMultiplier = 1.2, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [25] = { baseMultiplier = 1.24, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [26] = { baseMultiplier = 1.28, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [27] = { baseMultiplier = 1.33, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [28] = { baseMultiplier = 1.37, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [29] = { baseMultiplier = 1.41, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [30] = { baseMultiplier = 1.46, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [31] = { baseMultiplier = 1.51, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [32] = { baseMultiplier = 1.56, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [33] = { baseMultiplier = 1.61, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [34] = { baseMultiplier = 1.67, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [35] = { baseMultiplier = 1.72, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [36] = { baseMultiplier = 1.78, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [37] = { baseMultiplier = 1.84, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [38] = { baseMultiplier = 1.9, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [39] = { baseMultiplier = 1.96, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ [40] = { baseMultiplier = 2.03, storedUses = 1, levelRequirement = 0, cooldown = 0.4, },
+ },
+ statSets = {
+ [1] = {
+ label = "Volcanic Eruption",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "ancestral_cry_projectile",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 8 },
+ { "skill_mortar_minimum_projectile_distance", 5 },
+ { "skill_mortar_maximum_projectile_distance", 15 },
+ { "base_number_of_projectiles", 3 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
+ },
+ stats = {
+ "base_is_projectile",
+ "ancestral_cry_projectile_triggered_by_empowered_skill_on_hit",
+ "triggerable_in_any_set",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["AncestralWarriorTotemPlayer"] = {
name = "Ancestral Warrior Totem",
baseTypeName = "Ancestral Warrior Totem",
color = 1,
- description = "Raise a Totem that uses socketed Mace Skills. Cannot use Channelling Skills or Skills with Cooldowns.",
- skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Limit] = true, },
+ description = "Consume 3 Endurance Charges to Raise a Totem that uses socketed Mace Skills. This Totem has no Limit. Cannot use Channelling Skills or Skills with Cooldowns.",
+ skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.UnlimitedTotems] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -25,49 +397,48 @@ skills["AncestralWarriorTotemPlayer"] = {
[1] = { manaMultiplier = 100, levelRequirement = 0, cost = { Mana = 13, }, },
[2] = { levelRequirement = 3, cost = { Mana = 15, }, },
[3] = { levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 21, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 23, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 28, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 31, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 35, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 38, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 43, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 47, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 53, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 58, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 65, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 20, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 25, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 28, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 31, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 35, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 39, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 42, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 47, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 51, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 61, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 66, }, },
[17] = { levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 79, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 88, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 98, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 108, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 120, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 133, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 148, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 164, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 181, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 201, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 223, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 247, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 274, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 336, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 373, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 413, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 458, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 507, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 562, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 623, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 690, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 765, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 78, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 84, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 91, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 106, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 114, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 132, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 163, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 174, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 200, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 213, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 228, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 243, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 260, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 295, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 314, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 335, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 356, }, },
},
statSets = {
[1] = {
label = "Ancestral Warrior Totem",
baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
statDescriptionScope = "summon_meta_totem_slams",
baseFlags = {
totem = true,
@@ -77,66 +448,59 @@ skills["AncestralWarriorTotemPlayer"] = {
{ "base_totem_duration", 8000 },
{ "base_totem_range", 60 },
{ "ancestral_spirit_base_lockout_time_ms", 600 },
- { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 },
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1000 },
- { "alt_attack_container_main_hand_base_maximum_attack_distance", 13 },
- { "base_number_of_totems_allowed", 1 },
+ { "active_skill_requires_X_endurance_charges", 3 },
},
stats = {
- "alt_attack_container_main_hand_weapon_minimum_physical_damage",
- "alt_attack_container_main_hand_weapon_maximum_physical_damage",
"totem_elemental_resistance_%",
"totem_chaos_resistance_%",
"base_skill_summons_totems",
"is_totem",
"skill_is_deploy_skill",
"totem_has_ancestral_warrior_spirit",
- "active_skill_has_alt_attack_container",
"display_statset_no_hit_damage",
- "alt_attack_container_main_hand_unarmed_overide_two_handed_mace_type",
"quality_display_base_totem_duration_is_gem",
},
levels = {
- [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -157,6 +521,8 @@ skills["SupportAncestralWarriorTotemPlayer"] = {
["One Handed Axe"] = true,
["One Handed Sword"] = true,
},
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -199,15 +565,27 @@ skills["SupportAncestralWarriorTotemPlayer"] = {
[39] = { levelRequirement = 0, },
[40] = { levelRequirement = 0, },
},
+ addFlags = {
+ totem = true,
+ },
statSets = {
[1] = {
label = "SupportAncestralWarriorTotemPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
+ statMap = {
+ ["support_ancestral_warrior_totem_attack_speed_+%_final"] = {
+ mod("Speed", "MORE", nil, ModFlag.Attack),
+ },
+ },
baseFlags = {
},
+ baseMods = {
+ mod("ActiveTotemLimit", "BASE", 1),
+ },
constantStats = {
{ "skill_disabled_unless_cloned", 2 },
+ { "support_ancestral_warrior_totem_attack_speed_+%_final", -25 },
},
stats = {
"base_skill_is_totemified",
@@ -275,43 +653,43 @@ skills["ArmourBreakerPlayer"] = {
[1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 5, }, },
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 7, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 8, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 9, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 10, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 11, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 13, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 14, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 16, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 18, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 19, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 22, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 24, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 8, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 9, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 10, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 13, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 14, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 16, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 17, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 19, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 21, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 23, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 25, }, },
[16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 27, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 30, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 33, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 36, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 40, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 45, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 50, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 55, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 61, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 68, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 75, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 83, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 93, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 103, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 114, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 126, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 140, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 155, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 172, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 190, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 211, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 234, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 259, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 287, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 318, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 32, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 35, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 38, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 41, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 44, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 47, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 51, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 55, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 59, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 63, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 68, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 72, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 78, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 83, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 89, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 95, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 101, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 108, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 115, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 123, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 131, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 139, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 148, }, },
},
statSets = {
[1] = {
@@ -333,6 +711,7 @@ skills["ArmourBreakerPlayer"] = {
"global_knockback",
"is_area_damage",
"melee_defer_damage_prediction",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 3, statInterpolation = { 1, }, actorLevel = 1, },
@@ -383,63 +762,60 @@ skills["ArtilleryBallistaPlayer"] = {
name = "Artillery Ballista",
baseTypeName = "Artillery Ballista",
color = 1,
- description = "Deploy a Ballista Totem that fires bolts skyward, to explode a short time after landing.",
- skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UseGlobalStats] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, },
+ description = "Deploy a Ballista Totem that rains down a salvo of Pinning, Maiming bolts.",
+ skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
- skillTotemId = 19,
+ skillTotemId = 22,
castTime = 1,
qualityStats = {
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", -20 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 22, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 25, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 27, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 31, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 34, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 42, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 46, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 51, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 57, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 63, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 70, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 78, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 86, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 95, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 106, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 117, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 130, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 144, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 160, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 177, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 196, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 218, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 267, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 296, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 328, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 364, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 403, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 447, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 495, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 549, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 608, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 674, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 747, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 827, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 917, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1016, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 18, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 26, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 33, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 36, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 40, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 44, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 49, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 53, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 63, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 69, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 75, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 81, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 88, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 95, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 119, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 128, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 137, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 148, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 158, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 170, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 182, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 195, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 222, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 238, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 254, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 271, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 308, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 328, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 349, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 371, }, },
},
statSets = {
[1] = {
label = "Ballista",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
totem = true,
@@ -447,18 +823,13 @@ skills["ArtilleryBallistaPlayer"] = {
},
constantStats = {
{ "base_totem_range", 80 },
- { "base_totem_duration", 16000 },
- { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 },
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 2500 },
- { "alt_attack_container_main_hand_base_maximum_attack_distance", 90 },
+ { "base_totem_duration", 12000 },
{ "base_number_of_totems_allowed", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "alt_attack_container_main_hand_weapon_minimum_physical_damage",
- "alt_attack_container_main_hand_weapon_maximum_physical_damage",
"totem_elemental_resistance_%",
"totem_chaos_resistance_%",
"skill_is_deploy_skill",
@@ -467,111 +838,111 @@ skills["ArtilleryBallistaPlayer"] = {
"can_perform_skill_while_moving",
"totem_targets_ignoring_action_distance",
"base_deal_no_damage",
- "active_skill_has_alt_attack_container",
- "alt_attack_container_main_hand_unarmed_overide_crossbow_type",
- },
- levels = {
- [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ "quality_display_base_totem_duration_is_gem",
+ },
+ levels = {
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
}
skills["ArtilleryBallistaProjectilePlayer"] = {
- name = "Artillery Shot",
+ name = "",
hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
+ { "active_skill_pins_as_though_dealt_damage_+%_final", 10 },
},
levels = {
- [1] = { baseMultiplier = 0.3, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.33, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.36, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.39, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.42, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.45, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.48, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.51, levelRequirement = 0, },
- [9] = { baseMultiplier = 0.53, levelRequirement = 0, },
- [10] = { baseMultiplier = 0.55, levelRequirement = 0, },
- [11] = { baseMultiplier = 0.57, levelRequirement = 0, },
- [12] = { baseMultiplier = 0.6, levelRequirement = 0, },
- [13] = { baseMultiplier = 0.62, levelRequirement = 0, },
- [14] = { baseMultiplier = 0.64, levelRequirement = 0, },
- [15] = { baseMultiplier = 0.67, levelRequirement = 0, },
- [16] = { baseMultiplier = 0.69, levelRequirement = 0, },
- [17] = { baseMultiplier = 0.72, levelRequirement = 0, },
- [18] = { baseMultiplier = 0.74, levelRequirement = 0, },
- [19] = { baseMultiplier = 0.77, levelRequirement = 0, },
- [20] = { baseMultiplier = 0.79, levelRequirement = 0, },
- [21] = { baseMultiplier = 0.82, levelRequirement = 0, },
- [22] = { baseMultiplier = 0.84, levelRequirement = 0, },
- [23] = { baseMultiplier = 0.87, levelRequirement = 0, },
- [24] = { baseMultiplier = 0.9, levelRequirement = 0, },
- [25] = { baseMultiplier = 0.93, levelRequirement = 0, },
- [26] = { baseMultiplier = 0.96, levelRequirement = 0, },
- [27] = { baseMultiplier = 0.99, levelRequirement = 0, },
- [28] = { baseMultiplier = 1.03, levelRequirement = 0, },
- [29] = { baseMultiplier = 1.06, levelRequirement = 0, },
- [30] = { baseMultiplier = 1.1, levelRequirement = 0, },
- [31] = { baseMultiplier = 1.13, levelRequirement = 0, },
- [32] = { baseMultiplier = 1.17, levelRequirement = 0, },
- [33] = { baseMultiplier = 1.21, levelRequirement = 0, },
- [34] = { baseMultiplier = 1.25, levelRequirement = 0, },
- [35] = { baseMultiplier = 1.29, levelRequirement = 0, },
- [36] = { baseMultiplier = 1.33, levelRequirement = 0, },
- [37] = { baseMultiplier = 1.38, levelRequirement = 0, },
- [38] = { baseMultiplier = 1.42, levelRequirement = 0, },
- [39] = { baseMultiplier = 1.47, levelRequirement = 0, },
- [40] = { baseMultiplier = 1.52, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = -75, baseMultiplier = 0.15, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = -75, baseMultiplier = 0.16, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = -75, baseMultiplier = 0.18, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = -75, baseMultiplier = 0.2, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = -75, baseMultiplier = 0.21, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = -75, baseMultiplier = 0.23, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = -75, baseMultiplier = 0.24, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = -75, baseMultiplier = 0.25, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = -75, baseMultiplier = 0.26, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = -75, baseMultiplier = 0.28, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = -75, baseMultiplier = 0.29, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = -75, baseMultiplier = 0.3, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = -75, baseMultiplier = 0.31, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = -75, baseMultiplier = 0.32, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = -75, baseMultiplier = 0.33, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = -75, baseMultiplier = 0.35, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = -75, baseMultiplier = 0.36, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = -75, baseMultiplier = 0.37, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = -75, baseMultiplier = 0.38, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = -75, baseMultiplier = 0.4, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = -75, baseMultiplier = 0.41, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = -75, baseMultiplier = 0.42, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = -75, baseMultiplier = 0.44, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = -75, baseMultiplier = 0.45, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = -75, baseMultiplier = 0.47, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = -75, baseMultiplier = 0.48, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = -75, baseMultiplier = 0.5, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = -75, baseMultiplier = 0.51, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = -75, baseMultiplier = 0.53, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = -75, baseMultiplier = 0.55, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = -75, baseMultiplier = 0.57, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = -75, baseMultiplier = 0.59, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = -75, baseMultiplier = 0.6, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = -75, baseMultiplier = 0.62, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = -75, baseMultiplier = 0.65, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = -75, baseMultiplier = 0.67, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = -75, baseMultiplier = 0.69, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = -75, baseMultiplier = 0.71, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = -75, baseMultiplier = 0.74, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = -75, baseMultiplier = 0.76, levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Artillery",
+ label = "Bolts",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "artillery_ballista_projectile",
+ statDescriptionScope = "ripwire_arrow",
baseFlags = {
attack = true,
area = true,
@@ -580,22 +951,22 @@ skills["ArtilleryBallistaProjectilePlayer"] = {
},
constantStats = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "base_number_of_projectiles", 3 },
- { "siege_cascade_fall_time_ms", 800 },
- { "active_skill_base_secondary_area_of_effect_radius", 5 },
- { "active_skill_base_tertiary_area_of_effect_radius", 45 },
- { "siege_cascade_visual_fall_time_delay_%", 70 },
+ { "active_skill_base_area_of_effect_radius", 25 },
+ { "base_pinned_art_variation", 2 },
{ "skill_disabled_unless_cloned", 1 },
+ { "base_number_of_projectiles", 4 },
+ { "active_skill_pins_as_though_dealt_damage_+%_final", 600 },
{ "projectile_minimum_range", 16 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
{ "main_hand_base_maximum_attack_distance", 90 },
},
stats = {
"base_is_projectile",
- "is_area_damage",
- "siege_cascade_is_artillery_ballista",
+ "base_all_damage_can_pin",
"base_skill_is_totemified",
- "active_skill_ignores_crossbow_manager",
+ "is_area_damage",
+ "quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem",
+ "base_skill_is_ballistified",
+ "global_maim_on_hit",
},
levels = {
[1] = { actorLevel = 1, },
@@ -640,80 +1011,6 @@ skills["ArtilleryBallistaProjectilePlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
- [2] = {
- label = "Explosion",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "artillery_ballista_projectile",
- baseFlags = {
- attack = true,
- area = true,
- projectile = true,
- totem = true,
- },
- constantStats = {
- { "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "base_number_of_projectiles", 3 },
- { "siege_cascade_fall_time_ms", 800 },
- { "active_skill_base_secondary_area_of_effect_radius", 5 },
- { "active_skill_base_tertiary_area_of_effect_radius", 45 },
- { "siege_cascade_visual_fall_time_delay_%", 70 },
- { "skill_disabled_unless_cloned", 1 },
- { "projectile_minimum_range", 16 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
- { "main_hand_base_maximum_attack_distance", 90 },
- { "active_skill_base_secondary_area_of_effect_radius", 13 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
- },
- stats = {
- "base_is_projectile",
- "is_area_damage",
- "siege_cascade_is_artillery_ballista",
- "base_skill_is_totemified",
- "active_skill_ignores_crossbow_manager",
- },
- levels = {
- [1] = { baseMultiplier = 0.7, actorLevel = 1, },
- [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.84, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.92, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.99, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.05, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.12, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.18, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 1.23, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 1.28, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.34, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.39, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.44, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.5, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.55, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 1.61, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.67, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.73, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.79, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.85, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.91, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 1.97, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 2.04, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 2.1, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 2.17, actorLevel = 136.875, },
- [26] = { baseMultiplier = 2.24, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 2.32, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 2.4, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 2.48, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 2.56, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 2.64, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 2.73, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 2.82, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 2.91, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 3.01, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 3.11, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 3.21, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 3.32, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 3.43, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 3.55, actorLevel = 288.29998779297, },
- },
- },
}
}
skills["AttritionPlayer"] = {
@@ -784,7 +1081,7 @@ skills["AttritionPlayer"] = {
{mod("Damage", "MORE", nil, 0, KeywordFlag.Hit, { type = "GlobalEffect", effectType = "Buff"}, { type = "Multiplier", var = "EnemyPresenceSeconds", actor = "enemy", limitVar = "AttritionMaxDamage", div = 2, limitTotal = true }, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" })},
{mod("CullPercent", "MAX", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff"}, { type = "MultiplierThreshold", var = "EnemyPresenceSeconds", actor = "enemy", thresholdVar = "AttritionCullSeconds"}, { type = "ActorCondition", actor = "enemy", var = "RareOrUnique" }),
value = 10,}
- },
+ },
},
baseFlags = {
},
@@ -845,7 +1142,7 @@ skills["BerserkPlayer"] = {
name = "Berserk",
baseTypeName = "Berserk",
color = 1,
- description = "While active, strengthens your Rage and grants you Life Leech based on your Rage, but causes you to lose Life while Raging.",
+ description = "While active, strengthens your Rage, but causes you to lose Life while not losing Rage.",
skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, },
castTime = 1,
qualityStats = {
@@ -915,53 +1212,291 @@ skills["BerserkPlayer"] = {
},
constantStats = {
{ "life_loss_%_per_minute_per_rage_while_not_losing_rage", 6 },
- { "life_leech_from_physical_attack_damage_permyriad_per_rage", 20 },
{ "rage_art_variation", 2 },
},
stats = {
"rage_effect_+%",
},
levels = {
- [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 31, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 33, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 34, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 35, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 36, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 37, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 38, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 39, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 41, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 42, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 43, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 44, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 46, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 47, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 48, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 49, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 51, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 52, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 53, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 54, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 55, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 56, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 57, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 58, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 59, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 61, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 62, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 63, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 64, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 65, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 66, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 67, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 68, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 69, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 40, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 41, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 42, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 43, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 44, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 45, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 46, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 47, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 48, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 49, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 50, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 51, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 52, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 53, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 54, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 55, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 56, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 57, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 58, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 59, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 61, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 62, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 63, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 64, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 65, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 66, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 67, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 68, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 69, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 69, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 70, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 70, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 71, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 71, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 72, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 72, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 73, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 73, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 74, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["BlackPowderBlitzReservationPlayer"] = {
+ name = "Black Powder Blitz",
+ baseTypeName = "Black Powder Blitz",
+ color = 1,
+ description = "Replaces your dodge roll with an explosive-assisted leap, firing off a round from your prosthetic cannon leg that Blinds and Ignites enemies in the area you escape from. The explosion will cause any Grenades in its area of effect to also explode.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.DodgeReplacement] = true, [SkillType.Detonator] = true, },
+ castTime = 0,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Buff",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ constantStats = {
+ { "skill_desired_amount_override", 1 },
+ },
+ stats = {
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["BlackPowderBlitzPlayer"] = {
+ name = "Black Powder Blitz",
+ hidden = true,
+ skillTypes = { [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Travel] = true, [SkillType.CanCancelActions] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Fire] = true, [SkillType.Jumping] = true, },
+ castTime = 0.7,
+ qualityStats = {
+ { "base_cooldown_speed_+%", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.5, },
+ [2] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.4, },
+ [3] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.4, },
+ [4] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.3, },
+ [5] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.3, },
+ [6] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.2, },
+ [7] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.2, },
+ [8] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.1, },
+ [9] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4.1, },
+ [10] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4, },
+ [11] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 4, },
+ [12] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, },
+ [13] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, },
+ [14] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.8, },
+ [15] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.8, },
+ [16] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.7, },
+ [17] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.7, },
+ [18] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.6, },
+ [19] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.6, },
+ [20] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.5, },
+ [21] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.5, },
+ [22] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.4, },
+ [23] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.4, },
+ [24] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.3, },
+ [25] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.3, },
+ [26] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.2, },
+ [27] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.2, },
+ [28] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.1, },
+ [29] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3.1, },
+ [30] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [31] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [32] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.9, },
+ [33] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.9, },
+ [34] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.8, },
+ [35] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.8, },
+ [36] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.7, },
+ [37] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.7, },
+ [38] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.6, },
+ [39] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.6, },
+ [40] = { critChance = 15, storedUses = 1, levelRequirement = 0, cooldown = 2.5, },
+ },
+ statSets = {
+ [1] = {
+ label = "Explosion",
+ baseEffectiveness = 5.5999999046326,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "black_powder_blitz",
+ baseFlags = {
+ hit = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 24 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
+ { "action_allowed_queue_time_override_ms", 100 },
+ { "black_powder_blitz_travel_distance", 75 },
+ { "black_powder_blitz_additional_pushiness_modifier", 5 },
+ { "active_skill_stun_threshold_+%_while_performing_action", 100 },
+ { "global_chance_to_blind_on_hit_%", 100 },
+ },
+ stats = {
+ "secondary_minimum_base_physical_damage",
+ "secondary_maximum_base_physical_damage",
+ "skill_cannot_be_knocked_back",
+ "spell_cast_time_cannot_be_modified",
+ "action_attack_or_cast_time_uses_animation_length",
+ "dynamic_target_updating_prioritises_movement_vector",
+ "base_skill_enabled_while_mounted",
+ "is_area_damage",
+ "always_ignite",
+ },
+ notMinionStat = {
+ "secondary_minimum_base_physical_damage",
+ "secondary_maximum_base_physical_damage",
+ },
+ levels = {
+ [1] = { 15, 28, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 21, 38, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 28, 52, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 37, 68, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 47, 87, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 58, 107, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 70, 131, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 85, 157, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 101, 187, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 119, 221, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 140, 260, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 164, 304, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 191, 355, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 222, 412, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 257, 477, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 296, 550, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 342, 635, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 394, 731, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 453, 841, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 521, 967, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 598, 1111, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 687, 1276, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 789, 1466, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 906, 1683, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1041, 1933, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1196, 2222, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1375, 2554, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1582, 2937, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1820, 3381, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 2096, 3893, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 2416, 4488, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 2788, 5177, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 3219, 5978, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 3721, 6910, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 4306, 7996, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 4988, 9263, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 5784, 10742, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 6716, 12473, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 7809, 14502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 9090, 16881, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -971,7 +1506,7 @@ skills["BoneshatterPlayer"] = {
baseTypeName = "Boneshatter",
color = 1,
description = "Attack enemies with a melee Strike. The Strike will cause a Heavy Stun on enemies that are Primed for Stun. Upon causing a Heavy Stun it will also create a Shockwave, dealing a large amount of damage in an area.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -984,43 +1519,43 @@ skills["BoneshatterPlayer"] = {
[1] = { attackSpeedMultiplier = -40, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { attackSpeedMultiplier = -40, baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 10, }, },
[3] = { attackSpeedMultiplier = -40, baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 12, }, },
- [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 23, }, },
- [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 25, }, },
- [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 28, }, },
- [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 31, }, },
- [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 35, }, },
- [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 39, }, },
- [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 43, }, },
+ [4] = { attackSpeedMultiplier = -40, baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 13, }, },
+ [5] = { attackSpeedMultiplier = -40, baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -40, baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -40, baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { attackSpeedMultiplier = -40, baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 23, }, },
+ [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { attackSpeedMultiplier = -40, baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 28, }, },
+ [12] = { attackSpeedMultiplier = -40, baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 31, }, },
+ [13] = { attackSpeedMultiplier = -40, baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 34, }, },
+ [14] = { attackSpeedMultiplier = -40, baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 37, }, },
+ [15] = { attackSpeedMultiplier = -40, baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 40, }, },
+ [16] = { attackSpeedMultiplier = -40, baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 44, }, },
[17] = { attackSpeedMultiplier = -40, baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 48, }, },
- [18] = { attackSpeedMultiplier = -40, baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 53, }, },
- [19] = { attackSpeedMultiplier = -40, baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 59, }, },
- [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 65, }, },
- [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 72, }, },
- [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 80, }, },
- [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 89, }, },
- [24] = { attackSpeedMultiplier = -40, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 98, }, },
- [25] = { attackSpeedMultiplier = -40, baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 109, }, },
- [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 121, }, },
- [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 134, }, },
- [28] = { attackSpeedMultiplier = -40, baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 148, }, },
- [29] = { attackSpeedMultiplier = -40, baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 164, }, },
- [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 182, }, },
- [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 202, }, },
- [32] = { attackSpeedMultiplier = -40, baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 224, }, },
- [33] = { attackSpeedMultiplier = -40, baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 248, }, },
- [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 275, }, },
- [35] = { attackSpeedMultiplier = -40, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 305, }, },
- [36] = { attackSpeedMultiplier = -40, baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 338, }, },
- [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 374, }, },
- [38] = { attackSpeedMultiplier = -40, baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 415, }, },
- [39] = { attackSpeedMultiplier = -40, baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 460, }, },
- [40] = { attackSpeedMultiplier = -40, baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 509, }, },
+ [18] = { attackSpeedMultiplier = -40, baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 52, }, },
+ [19] = { attackSpeedMultiplier = -40, baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 56, }, },
+ [20] = { attackSpeedMultiplier = -40, baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 60, }, },
+ [21] = { attackSpeedMultiplier = -40, baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 65, }, },
+ [22] = { attackSpeedMultiplier = -40, baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 70, }, },
+ [23] = { attackSpeedMultiplier = -40, baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { attackSpeedMultiplier = -40, baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 82, }, },
+ [25] = { attackSpeedMultiplier = -40, baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 88, }, },
+ [26] = { attackSpeedMultiplier = -40, baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 94, }, },
+ [27] = { attackSpeedMultiplier = -40, baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 101, }, },
+ [28] = { attackSpeedMultiplier = -40, baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 108, }, },
+ [29] = { attackSpeedMultiplier = -40, baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 116, }, },
+ [30] = { attackSpeedMultiplier = -40, baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 124, }, },
+ [31] = { attackSpeedMultiplier = -40, baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 133, }, },
+ [32] = { attackSpeedMultiplier = -40, baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 142, }, },
+ [33] = { attackSpeedMultiplier = -40, baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 152, }, },
+ [34] = { attackSpeedMultiplier = -40, baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 162, }, },
+ [35] = { attackSpeedMultiplier = -40, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 173, }, },
+ [36] = { attackSpeedMultiplier = -40, baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 184, }, },
+ [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 196, }, },
+ [38] = { attackSpeedMultiplier = -40, baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 209, }, },
+ [39] = { attackSpeedMultiplier = -40, baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 223, }, },
+ [40] = { attackSpeedMultiplier = -40, baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 237, }, },
},
statSets = {
[1] = {
@@ -1041,6 +1576,7 @@ skills["BoneshatterPlayer"] = {
stats = {
"active_skill_show_crush_range",
"crushing_blow",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1099,9 +1635,11 @@ skills["BoneshatterPlayer"] = {
{ "melee_conditional_step_distance", 17 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
{ "active_skill_base_area_of_effect_radius", 20 },
+ { "boneshatter_damage_+%_final_if_created_from_unique", 50 },
},
stats = {
"active_skill_show_crush_range",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
},
@@ -1274,6 +1812,8 @@ skills["SupportMetaCastOnBlockPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -1320,7 +1860,7 @@ skills["SupportMetaCastOnBlockPlayer"] = {
[1] = {
label = "SupportMetaCastOnBlockPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -1329,7 +1869,6 @@ skills["SupportMetaCastOnBlockPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1382,7 +1921,7 @@ skills["MetaCastOnMeleeKillPlayer"] = {
fromItem = true,
color = 1,
description = "While active, gains Energy when you kill enemies with Melee Attacks and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
},
@@ -1419,6 +1958,8 @@ skills["SupportMetaCastOnMeleeKillPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[8] = { storedUses = 1, levelRequirement = 0, cooldown = 0.2, },
},
@@ -1426,7 +1967,7 @@ skills["SupportMetaCastOnMeleeKillPlayer"] = {
[1] = {
label = "SupportMetaCastOnMeleeKillPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -1436,7 +1977,6 @@ skills["SupportMetaCastOnMeleeKillPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[8] = { actorLevel = 26.732000350952, },
@@ -1450,7 +1990,7 @@ skills["MetaCastOnMeleeStunPlayer"] = {
fromItem = true,
color = 1,
description = "While active, gains Energy when you Stun enemies with Melee Attacks and triggers socketed spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
},
@@ -1488,6 +2028,8 @@ skills["SupportMetaCastOnMeleeStunPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[8] = { storedUses = 1, levelRequirement = 0, cooldown = 0.2, },
},
@@ -1495,7 +2037,7 @@ skills["SupportMetaCastOnMeleeStunPlayer"] = {
[1] = {
label = "SupportMetaCastOnMeleeStunPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -1504,7 +2046,6 @@ skills["SupportMetaCastOnMeleeStunPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[8] = { actorLevel = 26.732000350952, },
@@ -1516,8 +2057,8 @@ skills["ClusterGrenadePlayer"] = {
name = "Cluster Grenade",
baseTypeName = "Cluster Grenade",
color = 1,
- description = "Fire a bouncing Grenade that explodes when its fuse expires, throwing out a nova of mini Grenades that explode when they come to a stop.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ description = "Fire a bouncing Grenade that explodes when its fuse expires, throwing out a ring of mini Grenades that explode when they come to a stop.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -1526,46 +2067,46 @@ skills["ClusterGrenadePlayer"] = {
{ "base_cooldown_speed_+%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.8, cooldown = 10, levelRequirement = 0, cost = { Mana = 15, }, },
- [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.88, cooldown = 10, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 0.97, cooldown = 10, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.07, cooldown = 10, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.16, cooldown = 10, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.26, cooldown = 10, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.36, cooldown = 10, levelRequirement = 22, cost = { Mana = 28, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 10, levelRequirement = 26, cost = { Mana = 31, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.54, cooldown = 10, levelRequirement = 31, cost = { Mana = 34, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.64, cooldown = 10, levelRequirement = 36, cost = { Mana = 38, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.75, cooldown = 10, levelRequirement = 41, cost = { Mana = 42, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.87, cooldown = 10, levelRequirement = 46, cost = { Mana = 46, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.99, cooldown = 10, levelRequirement = 52, cost = { Mana = 52, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.13, cooldown = 10, levelRequirement = 58, cost = { Mana = 57, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.28, cooldown = 10, levelRequirement = 64, cost = { Mana = 63, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.44, cooldown = 10, levelRequirement = 66, cost = { Mana = 70, }, },
- [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.62, cooldown = 10, levelRequirement = 72, cost = { Mana = 78, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.82, cooldown = 10, levelRequirement = 78, cost = { Mana = 86, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.03, cooldown = 10, levelRequirement = 84, cost = { Mana = 96, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.27, cooldown = 10, levelRequirement = 90, cost = { Mana = 106, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 10, levelRequirement = 90, cost = { Mana = 118, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 10, levelRequirement = 90, cost = { Mana = 131, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 10, levelRequirement = 90, cost = { Mana = 145, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 10, levelRequirement = 90, cost = { Mana = 161, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 10, levelRequirement = 90, cost = { Mana = 178, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 197, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 10, levelRequirement = 90, cost = { Mana = 219, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.93, cooldown = 10, levelRequirement = 90, cost = { Mana = 242, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 10, levelRequirement = 90, cost = { Mana = 269, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 10, levelRequirement = 90, cost = { Mana = 298, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 10, levelRequirement = 90, cost = { Mana = 330, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 10, levelRequirement = 90, cost = { Mana = 366, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 10, levelRequirement = 90, cost = { Mana = 405, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 10, levelRequirement = 90, cost = { Mana = 449, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 10, levelRequirement = 90, cost = { Mana = 498, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 10, levelRequirement = 90, cost = { Mana = 551, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 10, levelRequirement = 90, cost = { Mana = 611, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.48, cooldown = 10, levelRequirement = 90, cost = { Mana = 677, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 10, levelRequirement = 90, cost = { Mana = 750, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 10, levelRequirement = 90, cost = { Mana = 832, }, },
+ [1] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.2, cooldown = 10, levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.32, cooldown = 10, levelRequirement = 3, cost = { Mana = 17, }, },
+ [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.46, cooldown = 10, levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.6, cooldown = 10, levelRequirement = 10, cost = { Mana = 22, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.74, cooldown = 10, levelRequirement = 14, cost = { Mana = 25, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.89, cooldown = 10, levelRequirement = 18, cost = { Mana = 28, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.04, cooldown = 10, levelRequirement = 22, cost = { Mana = 31, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.18, cooldown = 10, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.32, cooldown = 10, levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.46, cooldown = 10, levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.62, cooldown = 10, levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.8, cooldown = 10, levelRequirement = 46, cost = { Mana = 51, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.99, cooldown = 10, levelRequirement = 52, cost = { Mana = 56, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.19, cooldown = 10, levelRequirement = 58, cost = { Mana = 61, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.42, cooldown = 10, levelRequirement = 64, cost = { Mana = 66, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.67, cooldown = 10, levelRequirement = 66, cost = { Mana = 72, }, },
+ [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.93, cooldown = 10, levelRequirement = 72, cost = { Mana = 78, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.23, cooldown = 10, levelRequirement = 78, cost = { Mana = 85, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.55, cooldown = 10, levelRequirement = 84, cost = { Mana = 92, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.9, cooldown = 10, levelRequirement = 90, cost = { Mana = 99, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.28, cooldown = 10, levelRequirement = 90, cost = { Mana = 107, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.69, cooldown = 10, levelRequirement = 90, cost = { Mana = 115, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.13, cooldown = 10, levelRequirement = 90, cost = { Mana = 124, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.6, cooldown = 10, levelRequirement = 90, cost = { Mana = 134, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 144, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.66, cooldown = 10, levelRequirement = 90, cost = { Mana = 154, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.25, cooldown = 10, levelRequirement = 90, cost = { Mana = 165, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.89, cooldown = 10, levelRequirement = 90, cost = { Mana = 177, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.58, cooldown = 10, levelRequirement = 90, cost = { Mana = 190, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.32, cooldown = 10, levelRequirement = 90, cost = { Mana = 203, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.11, cooldown = 10, levelRequirement = 90, cost = { Mana = 217, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.97, cooldown = 10, levelRequirement = 90, cost = { Mana = 232, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.9, cooldown = 10, levelRequirement = 90, cost = { Mana = 248, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.89, cooldown = 10, levelRequirement = 90, cost = { Mana = 265, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.97, cooldown = 10, levelRequirement = 90, cost = { Mana = 282, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.12, cooldown = 10, levelRequirement = 90, cost = { Mana = 301, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 17.37, cooldown = 10, levelRequirement = 90, cost = { Mana = 321, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.71, cooldown = 10, levelRequirement = 90, cost = { Mana = 342, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 20.16, cooldown = 10, levelRequirement = 90, cost = { Mana = 364, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 21.72, cooldown = 10, levelRequirement = 90, cost = { Mana = 387, }, },
},
statSets = {
[1] = {
@@ -1585,11 +2126,13 @@ skills["ClusterGrenadePlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_base_area_of_effect_radius", 25 },
{ "active_skill_base_secondary_area_of_effect_radius", 24 },
{ "fixed_projectile_spread", 50 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "consume_X_heat_on_skill_use", 15 },
+ { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 },
},
stats = {
"base_is_projectile",
@@ -1646,92 +2189,303 @@ skills["ClusterGrenadePlayer"] = {
[40] = { actorLevel = 288.29998779297, },
},
},
- }
-}
-skills["ClusterGrenadeMiniPlayer"] = {
- name = "",
- hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
- weaponTypes = {
- ["Crossbow"] = true,
- },
- castTime = 1,
- qualityStats = {
- { "base_cooldown_speed_+%", 1 },
- },
- levels = {
- [1] = { baseMultiplier = 0.55, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.61, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.67, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.73, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.8, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.86, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.93, levelRequirement = 0, },
- [8] = { levelRequirement = 0, },
- [9] = { baseMultiplier = 1.06, levelRequirement = 0, },
- [10] = { baseMultiplier = 1.13, levelRequirement = 0, },
- [11] = { baseMultiplier = 1.2, levelRequirement = 0, },
- [12] = { baseMultiplier = 1.28, levelRequirement = 0, },
- [13] = { baseMultiplier = 1.37, levelRequirement = 0, },
- [14] = { baseMultiplier = 1.46, levelRequirement = 0, },
- [15] = { baseMultiplier = 1.57, levelRequirement = 0, },
- [16] = { baseMultiplier = 1.68, levelRequirement = 0, },
- [17] = { baseMultiplier = 1.8, levelRequirement = 0, },
- [18] = { baseMultiplier = 1.94, levelRequirement = 0, },
- [19] = { baseMultiplier = 2.08, levelRequirement = 0, },
- [20] = { baseMultiplier = 2.25, levelRequirement = 0, },
- [21] = { baseMultiplier = 2.42, levelRequirement = 0, },
- [22] = { baseMultiplier = 2.61, levelRequirement = 0, },
- [23] = { baseMultiplier = 2.81, levelRequirement = 0, },
- [24] = { baseMultiplier = 3.02, levelRequirement = 0, },
- [25] = { baseMultiplier = 3.26, levelRequirement = 0, },
- [26] = { baseMultiplier = 3.51, levelRequirement = 0, },
- [27] = { baseMultiplier = 3.78, levelRequirement = 0, },
- [28] = { baseMultiplier = 4.07, levelRequirement = 0, },
- [29] = { baseMultiplier = 4.39, levelRequirement = 0, },
- [30] = { baseMultiplier = 4.73, levelRequirement = 0, },
- [31] = { baseMultiplier = 5.09, levelRequirement = 0, },
- [32] = { baseMultiplier = 5.49, levelRequirement = 0, },
- [33] = { baseMultiplier = 5.91, levelRequirement = 0, },
- [34] = { baseMultiplier = 6.37, levelRequirement = 0, },
- [35] = { baseMultiplier = 6.86, levelRequirement = 0, },
- [36] = { baseMultiplier = 7.39, levelRequirement = 0, },
- [37] = { baseMultiplier = 7.96, levelRequirement = 0, },
- [38] = { baseMultiplier = 8.58, levelRequirement = 0, },
- [39] = { baseMultiplier = 9.24, levelRequirement = 0, },
- [40] = { baseMultiplier = 9.95, levelRequirement = 0, },
- },
- statSets = {
- [1] = {
+ [2] = {
label = "Mini Grenades",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "cluster_grenade_mini",
+ statDescriptionScope = "cluster_grenade",
baseFlags = {
attack = true,
area = true,
projectile = true,
},
constantStats = {
+ { "action_allowed_queue_time_override_ms", 1000 },
+ { "action_required_target_facing_angle_tolerance_degrees", 90 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_secondary_area_of_effect_radius", 24 },
+ { "fixed_projectile_spread", 50 },
+ { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "consume_X_heat_on_skill_use", 15 },
+ { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 },
{ "action_allowed_queue_time_override_ms", 1000 },
{ "base_skill_detonation_time", 3000 },
{ "active_skill_base_area_of_effect_radius", 14 },
- { "base_number_of_projectiles", 14 },
- { "projectile_angle_variance", 60 },
+ { "base_number_of_projectiles", 18 },
+ { "projectile_angle_variance", 70 },
{ "projectile_distance_variance", 300 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
},
stats = {
"base_is_projectile",
+ "projectile_ballistic_angle_from_reference_event",
+ "projectile_uses_contact_position",
"is_area_damage",
+ "action_can_be_used_in_aiming_stance",
"ballistic_projectiles_always_bounce",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_direction",
+ "base_skill_show_average_damage_instead_of_dps",
+ "projectiles_cannot_fork",
"projectile_ballistic_angle_from_target_distance",
"no_additional_projectiles",
"projectiles_nova",
"projectiles_not_offset",
- "base_skill_show_average_damage_instead_of_dps",
"display_statset_hide_usage_stats",
- "projectiles_cannot_fork",
"area_of_effect_radius_modifiers_apply_to_projectile_speed",
+ "is_cluster_grenade_bomblet",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.7, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.77, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.85, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.93, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.02, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.1, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.19, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.35, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.44, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.53, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.63, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.74, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.86, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.99, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 2.14, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 2.29, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 2.47, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.65, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.86, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 3.08, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 3.32, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 3.57, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 3.85, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 4.15, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 4.47, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 4.81, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 5.18, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 5.59, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 6.02, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 6.48, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 6.98, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 7.52, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 8.1, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 8.73, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 9.41, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 10.13, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 10.92, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 11.76, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 12.67, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["CrossbowRequiemAmmoPlayer"] = {
+ name = "Compose Requiem",
+ baseTypeName = "Compose Requiem",
+ fromItem = true,
+ color = 1,
+ description = "Your weapon passively accumulates anguish from the tormented souls within. When fully charged, use this skill to compose the Requiem, transforming your Crossbow shot into a torrent of anguish for a short, fixed amount of time. Does not use Ammunition.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 22, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 25, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 29, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 33, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 37, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 42, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 47, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 52, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 58, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 64, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 70, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 77, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 84, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 92, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 100, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 109, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 118, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 128, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 139, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 150, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 162, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 175, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 202, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 217, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 234, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 250, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 268, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 288, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 308, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 352, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 376, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 401, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 428, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 456, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 486, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 518, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 551, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 587, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Compose Requiem",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "rapid_shot_requiem_ammo",
+ baseFlags = {
+ },
+ constantStats = {
+ { "action_allowed_queue_time_override_ms", 1000 },
+ { "rapidshot_requiem_number_of_stacks_per_minute", 200 },
+ { "rapidshot_requiem_base_buff_count_requirement", 100 },
+ { "rapidshot_requiem_active_duration_ms", 12000 },
+ },
+ stats = {
+ "action_can_be_used_in_aiming_stance",
+ "can_perform_skill_while_moving",
+ "base_deal_no_damage",
+ "display_statset_hide_usage_stats",
+ "crossbow_ammo_skill_does_not_transition",
+ "crossbow_ammo_has_no_ammo",
+ "skill_is_instant_while_sprinting",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["CrossbowRequiemPlayer"] = {
+ name = "Requiem",
+ hidden = true,
+ fromItem = true,
+ description = "Unleashes a torrent of anguish that bombard the target area, dealing damage in an area on impact. Does not use Ammunition and can be fired freely until the Requiem ends.",
+ skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CrossbowSkill] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.1 },
+ },
+ levels = {
+ [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Requiem",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "rapid_shot_requiem",
+ baseFlags = {
+ projectile = true,
+ area = true,
+ },
+ constantStats = {
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "active_skill_base_secondary_area_of_effect_radius", 24 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
+ },
+ stats = {
+ "base_is_projectile",
+ "action_requires_aiming_stance",
+ "should_use_additive_aiming_animation",
+ "projectile_uses_contact_position",
+ "projectiles_crossbow_barrage",
+ "can_perform_skill_while_moving",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
+ "is_area_damage",
+ "crossbow_skill_has_no_ammo",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1784,7 +2538,7 @@ skills["StaffConsecratePlayer"] = {
fromItem = true,
color = 1,
description = "Create an area of Consecrated Ground around you.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.25,
qualityStats = {
{ "base_cast_speed_+%", 0.5 },
@@ -1838,59 +2592,60 @@ skills["StaffConsecratePlayer"] = {
statDescriptionScope = "consecrate",
baseFlags = {
spell = true,
+ duration = true,
},
constantStats = {
{ "base_skill_effect_duration", 8000 },
{ "active_skill_base_area_of_effect_radius", 22 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "life_regeneration_rate_per_minute_%",
+ "consecrated_ground_effect_+%",
"can_perform_skill_while_moving",
},
levels = {
- [1] = { 240, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 250, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 260, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 270, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 280, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 290, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 300, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 310, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 320, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 330, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 340, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 350, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 360, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 370, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 380, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 390, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 400, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 410, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 430, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 450, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 460, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 470, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 480, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 490, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 500, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 510, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 520, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 530, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 540, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 550, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 560, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 570, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 580, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 590, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 600, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 610, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 620, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 630, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 640, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 650, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 8, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 10, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 12, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 14, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 16, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 18, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 24, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 26, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 28, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 30, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 34, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 36, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 38, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 40, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 42, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 44, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 46, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 48, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 50, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 52, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 54, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 56, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 58, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 62, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 64, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 66, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 68, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 70, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 72, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 74, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 76, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 78, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1899,8 +2654,8 @@ skills["DefianceBannerReservationPlayer"] = {
name = "Defiance Banner",
baseTypeName = "Defiance Banner",
color = 1,
- description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Armour, Evasion and movement speed while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, },
+ description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Armour, Evasion and movement speed.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -1946,14 +2701,68 @@ skills["DefianceBannerReservationPlayer"] = {
[39] = { spiritReservationFlat = 30, levelRequirement = 90, },
[40] = { spiritReservationFlat = 30, levelRequirement = 90, },
},
+ statSets = {
+ [1] = {
+ label = "Defiance Banner",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ stats = {
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
}
skills["DefianceBannerPlayer"] = {
name = "Defiance Banner",
hidden = true,
- skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, },
- castTime = 1,
+ skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, },
+ castTime = 0.5,
qualityStats = {
- { "banner_aura_magnitude_+%_final_per_resource", 0.1 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -2016,10 +2825,11 @@ skills["DefianceBannerPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 45 },
- { "banner_aura_magnitude_+%_final_per_resource", 10 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_requires_X_glory", 200 },
+ { "active_skill_generates_mp_%_glory_per_attack_hit", 100 },
},
stats = {
"base_skill_effect_duration",
@@ -2027,49 +2837,52 @@ skills["DefianceBannerPlayer"] = {
"base_skill_buff_movement_speed_+%_to_apply",
"can_perform_skill_while_moving",
"base_deal_no_damage",
- "quality_display_banner_buff_effect_+%_final_per_resource_is_gem",
- },
- levels = {
- [1] = { 6000, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6050, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6100, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6150, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6200, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6250, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6300, 6, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6350, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6400, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6450, 7, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6500, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6550, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6600, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 6650, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 6700, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6750, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 6800, 8, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 6850, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 6900, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 6950, 9, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7000, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7050, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7100, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7150, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7200, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7250, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7300, 10, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7350, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 7400, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 7450, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 7500, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 7550, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 7600, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 7650, 11, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 7700, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 7750, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 7800, 12, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 7850, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 7900, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 7950, 13, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 8000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 8200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 8400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 8600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 8800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 9000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 9200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 9600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 9800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 10000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 10200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 10400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 10600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 10800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 11000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 11200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 11400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 11600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 11800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 11900, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 12000, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 12100, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 12200, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 12300, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 12400, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 12500, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 12600, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 12700, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 12800, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2078,8 +2891,8 @@ skills["DreadBannerReservationPlayer"] = {
name = "Dread Banner",
baseTypeName = "Dread Banner",
color = 1,
- description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Stun Threshold, Elemental Ailment Threshold and Flask charges while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, },
+ description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Elemental Ailment Threshold, Maximum Elemental Resistances and Flask charges.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -2125,14 +2938,68 @@ skills["DreadBannerReservationPlayer"] = {
[39] = { spiritReservationFlat = 30, levelRequirement = 90, },
[40] = { spiritReservationFlat = 30, levelRequirement = 90, },
},
+ statSets = {
+ [1] = {
+ label = "Dread Banner",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ stats = {
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
}
skills["DreadBannerPlayer"] = {
name = "Dread Banner",
hidden = true,
- skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, },
- castTime = 1,
+ skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, },
+ castTime = 0.5,
qualityStats = {
- { "banner_aura_magnitude_+%_final_per_resource", 0.1 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -2196,60 +3063,65 @@ skills["DreadBannerPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 45 },
- { "banner_aura_magnitude_+%_final_per_resource", 10 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_requires_X_glory", 200 },
+ { "active_skill_generates_mp_%_glory_per_attack_hit", 100 },
},
stats = {
"base_skill_effect_duration",
- "base_skill_buff_stun_and_ailment_threshold_+%_final_to_apply",
+ "base_skill_buff_ailment_threshold_+%_final_to_apply",
"base_skill_buff_flask_charge_per_min_to_apply",
+ "base_skill_buff_additional_maximum_all_elemental_resistances_%_to_apply",
"can_perform_skill_while_moving",
"base_deal_no_damage",
- "quality_display_banner_buff_effect_+%_final_per_resource_is_gem",
- },
- levels = {
- [1] = { 6000, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6050, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6100, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6150, 12, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6200, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6250, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6300, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6350, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6400, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6450, 13, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6500, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6550, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6600, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 6650, 14, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 6700, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6750, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 6800, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 6850, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 6900, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 6950, 15, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7000, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7050, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7100, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7150, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7200, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7250, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7300, 16, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7350, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 7400, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 7450, 17, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 7500, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 7550, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 7600, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 7650, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 7700, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 7750, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 7800, 18, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 7850, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 7900, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 7950, 19, 10, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 8000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 8200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 8400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 8600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 8800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 9000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 9200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 9600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 9800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 10000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 10200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 10400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 10600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 10800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 11000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 11200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 11400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 11600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 11800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 11900, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 12000, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 12100, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 12200, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 12300, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 12400, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 12500, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 12600, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 12700, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 12800, 60, 30, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2271,44 +3143,44 @@ skills["EarthquakePlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 8, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 13, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 14, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 16, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 17, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 24, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 26, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 29, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 33, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 36, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 40, }, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 11, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 12, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 14, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 17, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 19, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 22, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 24, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 26, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 29, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 32, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 34, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 38, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 41, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 44, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 49, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 55, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 61, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 67, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 75, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 83, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 92, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 102, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 113, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 125, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 138, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 153, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 170, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 188, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 209, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 232, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 257, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 284, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 315, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 349, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 387, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 429, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 475, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 48, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 52, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 56, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 61, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 66, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 71, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 76, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 82, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 88, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 94, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 101, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 108, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 116, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 124, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 133, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 142, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 151, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 161, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 172, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 183, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 195, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 208, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 221, }, },
},
statSets = {
[1] = {
@@ -2335,7 +3207,7 @@ skills["EarthquakePlayer"] = {
{ "skill_jagged_ground_base_duration_ms", 4000 },
{ "jagged_ground_effect_+%", 100 },
{ "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_tertiary_area_of_effect_radius", 22 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 18 },
{ "melee_conditional_step_distance", 10 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
},
@@ -2412,13 +3284,13 @@ skills["EarthquakePlayer"] = {
constantStats = {
{ "jagged_ground_effect_+%", 100 },
{ "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_tertiary_area_of_effect_radius", 22 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 18 },
{ "melee_conditional_step_distance", 10 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
- { "active_skill_base_area_of_effect_radius", 16 },
},
stats = {
"base_number_of_earthquakes_allowed",
+ "active_skill_base_area_of_effect_radius",
"is_area_damage",
"is_player_earthquake",
"can_create_jagged_ground",
@@ -2426,46 +3298,46 @@ skills["EarthquakePlayer"] = {
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { 2, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 2, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 2, baseMultiplier = 1.82, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 2, baseMultiplier = 1.98, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 2, baseMultiplier = 2.14, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 2, baseMultiplier = 2.3, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 2, baseMultiplier = 2.46, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 2, baseMultiplier = 2.61, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 3, baseMultiplier = 2.74, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 3, baseMultiplier = 2.87, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 3, baseMultiplier = 3.02, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 3, baseMultiplier = 3.17, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 3, baseMultiplier = 3.32, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 3, baseMultiplier = 3.49, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 3, baseMultiplier = 3.67, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 4, baseMultiplier = 3.85, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 4, baseMultiplier = 4.04, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 4, baseMultiplier = 4.24, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 4, baseMultiplier = 4.46, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 4, baseMultiplier = 4.68, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 5, baseMultiplier = 4.91, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 5, baseMultiplier = 5.16, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 5, baseMultiplier = 5.42, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 5, baseMultiplier = 5.69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 5, baseMultiplier = 5.97, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 6, baseMultiplier = 6.27, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 6, baseMultiplier = 6.58, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 6, baseMultiplier = 6.91, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 6, baseMultiplier = 7.26, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 6, baseMultiplier = 7.62, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 7, baseMultiplier = 8, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 7, baseMultiplier = 8.4, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 7, baseMultiplier = 8.82, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 7, baseMultiplier = 9.26, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 7, baseMultiplier = 9.73, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 8, baseMultiplier = 10.21, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 8, baseMultiplier = 10.72, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 8, baseMultiplier = 11.26, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 8, baseMultiplier = 11.82, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 8, baseMultiplier = 12.41, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, 6, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 6, baseMultiplier = 1.76, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 2, 6, baseMultiplier = 1.94, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 2, 7, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 2, 7, baseMultiplier = 2.29, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 2, 7, baseMultiplier = 2.47, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 2, 8, baseMultiplier = 2.66, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 2, 8, baseMultiplier = 2.83, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 3, 8, baseMultiplier = 2.99, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 3, 9, baseMultiplier = 3.16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 3, 9, baseMultiplier = 3.35, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3, 9, baseMultiplier = 3.54, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 3, 10, baseMultiplier = 3.76, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 3, 10, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 3, 10, baseMultiplier = 4.23, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 4, 11, baseMultiplier = 4.5, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 4, 11, baseMultiplier = 4.79, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 4, 11, baseMultiplier = 5.1, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 4, 12, baseMultiplier = 5.43, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 4, 12, baseMultiplier = 5.8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 5, 12, baseMultiplier = 6.18, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 5, 13, baseMultiplier = 6.59, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 5, 13, baseMultiplier = 7.03, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 5, 13, baseMultiplier = 7.5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 5, 14, baseMultiplier = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 6, 14, baseMultiplier = 8.53, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 6, 14, baseMultiplier = 9.1, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 6, 15, baseMultiplier = 9.71, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 6, 15, baseMultiplier = 10.36, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 6, 15, baseMultiplier = 11.04, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 7, 15, baseMultiplier = 11.78, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 7, 16, baseMultiplier = 12.57, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 7, 16, baseMultiplier = 13.4, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 7, 16, baseMultiplier = 14.3, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 7, 16, baseMultiplier = 15.25, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8, 16, baseMultiplier = 16.26, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8, 16, baseMultiplier = 17.35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8, 17, baseMultiplier = 18.5, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8, 17, baseMultiplier = 19.74, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8, 17, baseMultiplier = 21.05, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2475,56 +3347,56 @@ skills["EarthshatterPlayer"] = {
baseTypeName = "Earthshatter",
color = 1,
description = "Slam the ground, sending out a fissure that deals area damage to enemies it passes under and thrusts a spike from the ground when it ends. Warcries performed near the spike will cause it to shatter, damaging surrounding enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.SupportedByFountains] = true, [SkillType.CreatesFissure] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.SupportedByFountains] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CanCreateStoneElementals] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
},
castTime = 1,
qualityStats = {
- { "spike_slam_max_spikes", 0.15 },
+ { "earthshatter_damage_+%_final_per_spike", 0.3 },
},
levels = {
[1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 8, }, },
- [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 9, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 10, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 11, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 14, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 16, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 17, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 19, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 21, }, },
- [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 24, }, },
- [13] = { attackSpeedMultiplier = -20, levelRequirement = 52, cost = { Mana = 26, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 29, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 33, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 36, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 10, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.59, levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 12, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.69, levelRequirement = 18, cost = { Mana = 14, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.74, levelRequirement = 22, cost = { Mana = 16, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.78, levelRequirement = 26, cost = { Mana = 17, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.82, levelRequirement = 31, cost = { Mana = 19, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.86, levelRequirement = 36, cost = { Mana = 21, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.9, levelRequirement = 41, cost = { Mana = 24, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 0.95, levelRequirement = 46, cost = { Mana = 26, }, },
+ [13] = { attackSpeedMultiplier = -20, levelRequirement = 52, cost = { Mana = 28, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 58, cost = { Mana = 31, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.1, levelRequirement = 64, cost = { Mana = 34, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.15, levelRequirement = 66, cost = { Mana = 37, }, },
[17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.21, levelRequirement = 72, cost = { Mana = 40, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 45, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 49, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 55, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 61, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 67, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 75, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 83, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 92, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 102, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 113, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 125, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 139, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 154, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 170, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 189, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 209, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 232, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 257, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 285, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 316, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 350, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 388, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 430, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 78, cost = { Mana = 44, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.34, levelRequirement = 84, cost = { Mana = 47, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 90, cost = { Mana = 51, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.47, levelRequirement = 90, cost = { Mana = 55, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 59, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.62, levelRequirement = 90, cost = { Mana = 64, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 69, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.79, levelRequirement = 90, cost = { Mana = 74, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 79, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 85, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.07, levelRequirement = 90, cost = { Mana = 91, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.18, levelRequirement = 90, cost = { Mana = 98, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 105, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 112, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.52, levelRequirement = 90, cost = { Mana = 120, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 128, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.78, levelRequirement = 90, cost = { Mana = 137, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.92, levelRequirement = 90, cost = { Mana = 146, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 3.06, levelRequirement = 90, cost = { Mana = 155, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 3.22, levelRequirement = 90, cost = { Mana = 166, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 3.38, levelRequirement = 90, cost = { Mana = 177, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 188, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 3.72, levelRequirement = 90, cost = { Mana = 200, }, },
},
statSets = {
[1] = {
@@ -2659,8 +3531,8 @@ skills["EmergencyReloadPlayer"] = {
name = "Emergency Reload",
baseTypeName = "Emergency Reload",
color = 1,
- description = "Instantly reload your active Crossbow Ammunition and Empowers the loaded bolts to deal more damage.",
- skillTypes = { [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, },
+ description = "Instantly reload all your Crossbow Ammunition clips and Empower each clip's Ammunition to deal more damage for a duration.",
+ skillTypes = { [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -2671,44 +3543,44 @@ skills["EmergencyReloadPlayer"] = {
levels = {
[1] = { storedUses = 1, levelRequirement = 0, cooldown = 45, cost = { Mana = 12, }, },
[2] = { storedUses = 1, levelRequirement = 3, cooldown = 45, cost = { Mana = 14, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 45, cost = { Mana = 15, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 45, cost = { Mana = 17, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 45, cost = { Mana = 19, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 45, cost = { Mana = 21, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 45, cost = { Mana = 24, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 45, cost = { Mana = 27, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 45, cost = { Mana = 30, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 45, cost = { Mana = 33, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 45, cost = { Mana = 37, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 45, cost = { Mana = 41, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 45, cost = { Mana = 16, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 45, cost = { Mana = 18, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 45, cost = { Mana = 20, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 45, cost = { Mana = 23, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 45, cost = { Mana = 26, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 45, cost = { Mana = 28, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 45, cost = { Mana = 32, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 45, cost = { Mana = 35, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 45, cost = { Mana = 38, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 45, cost = { Mana = 42, }, },
[13] = { storedUses = 1, levelRequirement = 52, cooldown = 45, cost = { Mana = 46, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 45, cost = { Mana = 52, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 45, cost = { Mana = 58, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 45, cost = { Mana = 64, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 45, cost = { Mana = 72, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 45, cost = { Mana = 80, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 45, cost = { Mana = 89, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 100, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 111, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 124, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 138, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 154, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 172, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 192, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 214, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 239, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 266, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 297, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 331, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 369, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 412, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 459, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 512, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 571, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 637, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 710, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 792, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 883, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 45, cost = { Mana = 50, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 45, cost = { Mana = 55, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 45, cost = { Mana = 60, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 45, cost = { Mana = 65, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 45, cost = { Mana = 70, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 45, cost = { Mana = 76, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 82, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 89, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 96, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 103, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 111, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 119, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 128, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 138, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 148, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 158, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 169, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 181, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 193, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 207, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 221, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 235, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 251, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 267, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 285, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 303, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 45, cost = { Mana = 323, }, },
},
statSets = {
[1] = {
@@ -2720,6 +3592,7 @@ skills["EmergencyReloadPlayer"] = {
},
constantStats = {
{ "base_skill_effect_duration", 6000 },
+ { "skill_specific_stat_description_mode", 1 },
},
stats = {
"emergency_reload_damage_+%_final",
@@ -2779,7 +3652,7 @@ skills["ExplosiveGrenadePlayer"] = {
baseTypeName = "Explosive Grenade",
color = 1,
description = "Fire a bouncing Grenade that unleashes a devastating fiery blast when its fuse expires.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -2790,50 +3663,54 @@ skills["ExplosiveGrenadePlayer"] = {
levels = {
[1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.15, cooldown = 5, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 3, cost = { Mana = 11, }, },
- [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.87, cooldown = 5, levelRequirement = 10, cost = { Mana = 14, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.12, cooldown = 5, levelRequirement = 14, cost = { Mana = 15, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 18, cost = { Mana = 17, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.65, cooldown = 5, levelRequirement = 22, cost = { Mana = 19, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.91, cooldown = 5, levelRequirement = 26, cost = { Mana = 21, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.15, cooldown = 5, levelRequirement = 31, cost = { Mana = 23, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.41, cooldown = 5, levelRequirement = 36, cost = { Mana = 26, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.7, cooldown = 5, levelRequirement = 41, cost = { Mana = 29, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.01, cooldown = 5, levelRequirement = 46, cost = { Mana = 32, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 52, cost = { Mana = 35, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.72, cooldown = 5, levelRequirement = 58, cost = { Mana = 39, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.13, cooldown = 5, levelRequirement = 64, cost = { Mana = 43, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.57, cooldown = 5, levelRequirement = 66, cost = { Mana = 48, }, },
+ [3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 6, cost = { Mana = 13, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.87, cooldown = 5, levelRequirement = 10, cost = { Mana = 15, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.12, cooldown = 5, levelRequirement = 14, cost = { Mana = 17, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 18, cost = { Mana = 19, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.65, cooldown = 5, levelRequirement = 22, cost = { Mana = 21, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.91, cooldown = 5, levelRequirement = 26, cost = { Mana = 23, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.15, cooldown = 5, levelRequirement = 31, cost = { Mana = 26, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.41, cooldown = 5, levelRequirement = 36, cost = { Mana = 29, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.7, cooldown = 5, levelRequirement = 41, cost = { Mana = 32, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.01, cooldown = 5, levelRequirement = 46, cost = { Mana = 35, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 52, cost = { Mana = 38, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.72, cooldown = 5, levelRequirement = 58, cost = { Mana = 41, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.13, cooldown = 5, levelRequirement = 64, cost = { Mana = 45, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.57, cooldown = 5, levelRequirement = 66, cost = { Mana = 49, }, },
[17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.05, cooldown = 5, levelRequirement = 72, cost = { Mana = 53, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.57, cooldown = 5, levelRequirement = 78, cost = { Mana = 59, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.15, cooldown = 5, levelRequirement = 84, cost = { Mana = 66, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 9.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 81, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 89, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.97, cooldown = 5, levelRequirement = 90, cost = { Mana = 99, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 11.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 110, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 12.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 122, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 13.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 135, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 14.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 150, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 15.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 166, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 17.16, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 18.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 204, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 19.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 226, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 21.45, cooldown = 5, levelRequirement = 90, cost = { Mana = 250, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 23.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 277, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 24.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 308, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 26.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 341, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 28.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 378, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 31.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 419, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 33.53, cooldown = 5, levelRequirement = 90, cost = { Mana = 464, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 36.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 514, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 38.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 570, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.57, cooldown = 5, levelRequirement = 78, cost = { Mana = 58, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.15, cooldown = 5, levelRequirement = 84, cost = { Mana = 63, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 8.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 68, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 9.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 10.97, cooldown = 5, levelRequirement = 90, cost = { Mana = 85, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 11.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 91, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 12.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 98, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 13.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 105, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 14.78, cooldown = 5, levelRequirement = 90, cost = { Mana = 113, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 15.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 121, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 17.16, cooldown = 5, levelRequirement = 90, cost = { Mana = 130, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 18.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 139, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 19.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 149, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 21.45, cooldown = 5, levelRequirement = 90, cost = { Mana = 159, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 23.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 170, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 24.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 181, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 26.82, cooldown = 5, levelRequirement = 90, cost = { Mana = 193, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 28.89, cooldown = 5, levelRequirement = 90, cost = { Mana = 206, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 31.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 220, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 33.53, cooldown = 5, levelRequirement = 90, cost = { Mana = 234, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 36.12, cooldown = 5, levelRequirement = 90, cost = { Mana = 249, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 38.91, cooldown = 5, levelRequirement = 90, cost = { Mana = 265, }, },
},
statSets = {
[1] = {
label = "Explosive Grenade",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "explosive_grenade",
+ statMap = {
+ ["base_skill_show_average_damage_instead_of_dps"] = {
+ },
+ },
baseFlags = {
attack = true,
area = true,
@@ -2846,9 +3723,11 @@ skills["ExplosiveGrenadePlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "fixed_projectile_spread", 30 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "consume_X_heat_on_skill_use", 15 },
+ { "active_skill_all_damage_%_as_fire_if_heat_is_consumed", 50 },
},
stats = {
"active_skill_base_area_of_effect_radius",
@@ -2908,330 +3787,595 @@ skills["ExplosiveGrenadePlayer"] = {
},
}
}
-skills["ExsanguinatePlayer"] = {
- name = "Exsanguinate",
- baseTypeName = "Exsanguinate",
- fromItem = true,
+skills["FlashGrenadePlayer"] = {
+ name = "Flash Grenade",
+ baseTypeName = "Flash Grenade",
color = 1,
- description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies hit by the tendrils take Physical damage and are inflicted with a Debuff that deals Physical damage over time.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Fire a bouncing Grenade that unleashes a Blinding, Stunning explosion when its fuse expires.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
castTime = 1,
qualityStats = {
- { "blood_tendrils_beam_count", 0.05 },
+ { "base_cooldown_speed_+%", 1 },
},
levels = {
- [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, },
+ [1] = { attackSpeedMultiplier = -25, storedUses = 1, cooldown = 5, levelRequirement = 0, cost = { Mana = 7, }, },
+ [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.1, cooldown = 5, levelRequirement = 3, cost = { Mana = 9, }, },
+ [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 6, cost = { Mana = 10, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.33, cooldown = 5, levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.57, cooldown = 5, levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.7, cooldown = 5, levelRequirement = 22, cost = { Mana = 16, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.82, cooldown = 5, levelRequirement = 26, cost = { Mana = 18, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 31, cost = { Mana = 20, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.05, cooldown = 5, levelRequirement = 36, cost = { Mana = 22, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.19, cooldown = 5, levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.33, cooldown = 5, levelRequirement = 46, cost = { Mana = 27, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.49, cooldown = 5, levelRequirement = 52, cost = { Mana = 30, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 32, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.85, cooldown = 5, levelRequirement = 64, cost = { Mana = 35, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.05, cooldown = 5, levelRequirement = 66, cost = { Mana = 38, }, },
+ [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.28, cooldown = 5, levelRequirement = 72, cost = { Mana = 42, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 78, cost = { Mana = 45, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 84, cost = { Mana = 49, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 53, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 57, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 62, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 66, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 71, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 77, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 82, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 88, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 95, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 102, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 109, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 116, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 124, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 133, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 142, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.47, cooldown = 5, levelRequirement = 90, cost = { Mana = 151, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 15.59, cooldown = 5, levelRequirement = 90, cost = { Mana = 183, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.8, cooldown = 5, levelRequirement = 90, cost = { Mana = 195, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 208, }, },
},
statSets = {
[1] = {
- label = "Tendrils",
- baseEffectiveness = 0.81000000238419,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "exsanguinate",
+ label = "Flash Grenade",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "flash_grenade",
baseFlags = {
- spell = true,
+ attack = true,
+ area = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "action_allowed_queue_time_override_ms", 1000 },
+ { "action_required_target_facing_angle_tolerance_degrees", 90 },
+ { "base_skill_detonation_time", 850 },
+ { "attacks_chance_to_blind_on_hit_%", 100 },
+ { "active_skill_hit_damage_stun_multiplier_+%_final", 500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "fixed_projectile_spread", 30 },
+ { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ },
+ stats = {
+ "active_skill_base_area_of_effect_radius",
+ "base_is_projectile",
+ "projectile_ballistic_angle_from_reference_event",
+ "projectile_uses_contact_position",
+ "is_area_damage",
+ "action_can_be_used_in_aiming_stance",
+ "disable_visual_hit_effect",
+ "ballistic_projectiles_always_bounce",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_direction",
+ "base_skill_show_average_damage_instead_of_dps",
+ "projectiles_cannot_fork",
+ },
+ levels = {
+ [1] = { 26, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 26, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 27, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 27, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 27, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 28, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 29, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 29, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 30, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 30, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 31, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 31, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 32, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 32, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 33, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 33, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 33, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 34, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 34, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 34, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 35, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 36, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 36, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 37, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 37, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 37, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 37, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 37, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 38, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 38, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 38, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 38, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 38, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 39, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ForgeHammerPlayer"] = {
+ name = "Forge Hammer",
+ baseTypeName = "Forge Hammer",
+ color = 1,
+ description = "Hurl a fiery hammer that Slams into the ground and lodges there. While the hammer is lodged in the ground, reusing this Skill recalls the hammer and resets the Skill's cooldown. Alternatively, using a Warcry near the lodged hammer causes it to shatter, releasing a number of Molten Fissures in a spiral.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Cooldown] = true, [SkillType.CanCreateStoneElementals] = true, },
+ weaponTypes = {
+ ["One Handed Mace"] = true,
+ ["Two Handed Mace"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "base_cooldown_speed_+%", 0.5 },
+ },
+ levels = {
+ [1] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 1.85, cooldown = 8, levelRequirement = 0, cost = { Mana = 9, }, },
+ [2] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.04, cooldown = 8, levelRequirement = 3, cost = { Mana = 10, }, },
+ [3] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.24, cooldown = 8, levelRequirement = 6, cost = { Mana = 11, }, },
+ [4] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.44, cooldown = 8, levelRequirement = 10, cost = { Mana = 13, }, },
+ [5] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.64, cooldown = 8, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 2.83, cooldown = 8, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.03, cooldown = 8, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.21, cooldown = 8, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.37, cooldown = 8, levelRequirement = 31, cost = { Mana = 23, }, },
+ [10] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.54, cooldown = 8, levelRequirement = 36, cost = { Mana = 26, }, },
+ [11] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.72, cooldown = 8, levelRequirement = 41, cost = { Mana = 28, }, },
+ [12] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 3.91, cooldown = 8, levelRequirement = 46, cost = { Mana = 31, }, },
+ [13] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.1, cooldown = 8, levelRequirement = 52, cost = { Mana = 34, }, },
+ [14] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.31, cooldown = 8, levelRequirement = 58, cost = { Mana = 37, }, },
+ [15] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.52, cooldown = 8, levelRequirement = 64, cost = { Mana = 40, }, },
+ [16] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.75, cooldown = 8, levelRequirement = 66, cost = { Mana = 44, }, },
+ [17] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 4.98, cooldown = 8, levelRequirement = 72, cost = { Mana = 48, }, },
+ [18] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.23, cooldown = 8, levelRequirement = 78, cost = { Mana = 52, }, },
+ [19] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.5, cooldown = 8, levelRequirement = 84, cost = { Mana = 56, }, },
+ [20] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 5.77, cooldown = 8, levelRequirement = 90, cost = { Mana = 60, }, },
+ [21] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.06, cooldown = 8, levelRequirement = 90, cost = { Mana = 65, }, },
+ [22] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 70, }, },
+ [23] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 6.68, cooldown = 8, levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.01, cooldown = 8, levelRequirement = 90, cost = { Mana = 82, }, },
+ [25] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 88, }, },
+ [26] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 7.73, cooldown = 8, levelRequirement = 90, cost = { Mana = 94, }, },
+ [27] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.12, cooldown = 8, levelRequirement = 90, cost = { Mana = 101, }, },
+ [28] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.52, cooldown = 8, levelRequirement = 90, cost = { Mana = 108, }, },
+ [29] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 8.95, cooldown = 8, levelRequirement = 90, cost = { Mana = 116, }, },
+ [30] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 9.4, cooldown = 8, levelRequirement = 90, cost = { Mana = 124, }, },
+ [31] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 9.87, cooldown = 8, levelRequirement = 90, cost = { Mana = 133, }, },
+ [32] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 10.36, cooldown = 8, levelRequirement = 90, cost = { Mana = 142, }, },
+ [33] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 10.88, cooldown = 8, levelRequirement = 90, cost = { Mana = 152, }, },
+ [34] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 11.42, cooldown = 8, levelRequirement = 90, cost = { Mana = 162, }, },
+ [35] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 12, cooldown = 8, levelRequirement = 90, cost = { Mana = 173, }, },
+ [36] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 12.6, cooldown = 8, levelRequirement = 90, cost = { Mana = 184, }, },
+ [37] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 13.22, cooldown = 8, levelRequirement = 90, cost = { Mana = 196, }, },
+ [38] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 13.89, cooldown = 8, levelRequirement = 90, cost = { Mana = 209, }, },
+ [39] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 14.58, cooldown = 8, levelRequirement = 90, cost = { Mana = 223, }, },
+ [40] = { attackSpeedMultiplier = -30, storedUses = 1, baseMultiplier = 15.31, cooldown = 8, levelRequirement = 90, cost = { Mana = 237, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Impact",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "forge_hammer_statset_0",
+ baseFlags = {
+ attack = true,
+ area = true,
+ melee = true,
duration = true,
- chaining = true,
},
constantStats = {
- { "number_of_chains", 2 },
+ { "attack_maximum_action_distance_+", 40 },
+ { "base_skill_effect_duration", 12000 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "forge_hammer_maximum_hammers", 1 },
+ { "forge_hammer_base_maximum_number_of_fissures", 10 },
+ { "forge_hammer_base_number_of_fissures", 5 },
+ { "forge_hammer_hammer_speed", 300 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "blood_tendrils_beam_count", 3 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_damage_+%_final_while_dual_wielding", -30 },
},
stats = {
- "spell_minimum_base_physical_damage",
- "spell_maximum_base_physical_damage",
- "quality_display_exsanguinate_beam_targets_is_gem",
+ "is_area_damage",
"can_perform_skill_while_moving",
+ "display_this_skill_cooldown_does_not_recover_during_buff",
},
levels = {
- [1] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 70, 106, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 100, 151, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 127, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 142, 213, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 159, 239, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 179, 268, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 201, 301, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 225, 338, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 253, 379, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 284, 426, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 358, 537, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 402, 604, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 452, 679, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 509, 763, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 573, 859, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 645, 968, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 727, 1091, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
[2] = {
- label = "Damage over Time",
- baseEffectiveness = 0.81000000238419,
- incrementalEffectiveness = 0.18000000715256,
- damageIncrementalEffectiveness = 0.0092000002041459,
- statDescriptionScope = "exsanguinate",
+ label = "Fissures",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "forge_hammer_statset_1",
baseFlags = {
- spell = true,
+ attack = true,
+ area = true,
+ melee = true,
+ duration = true,
+ },
+ constantStats = {
+ { "attack_maximum_action_distance_+", 40 },
+ { "forge_hammer_maximum_hammers", 1 },
+ { "forge_hammer_base_maximum_number_of_fissures", 10 },
+ { "forge_hammer_base_number_of_fissures", 5 },
+ { "forge_hammer_hammer_speed", 300 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_damage_+%_final_while_dual_wielding", -30 },
+ { "active_skill_base_area_of_effect_radius", 10 },
+ { "base_skill_effect_duration", 8000 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 70 },
+ },
+ stats = {
+ "is_area_damage",
+ "can_perform_skill_while_moving",
+ "display_this_skill_cooldown_does_not_recover_during_buff",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.75, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.9, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.98, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.06, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.13, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.2, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.27, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.32, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.38, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.43, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.49, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.55, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.61, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.67, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.73, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.79, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.85, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.91, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.98, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 2.04, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.11, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.18, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.25, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.33, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 2.41, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 2.48, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 2.57, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 2.65, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 2.74, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 2.83, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 2.93, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 3.02, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 3.12, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 3.23, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 3.33, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 3.44, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 3.56, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 3.68, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 3.8, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["FortifyingCryPlayer"] = {
+ name = "Fortifying Cry",
+ baseTypeName = "Fortifying Cry",
+ color = 1,
+ description = "Perform a Warcry that grants Guard and Triggers Shield Wave when subsequent Shield Attacks deal damage. This Skill's cooldown can be bypassed by expending an Endurance Charge.",
+ skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.Cooldown] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, },
+ castTime = 0.8,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Fortifying Cry",
+ baseEffectiveness = 0.5,
+ incrementalEffectiveness = 0.47999998927116,
+ statDescriptionScope = "shielding_cry",
+ baseFlags = {
+ warcry = true,
+ area = true,
duration = true,
- chaining = true,
},
constantStats = {
+ { "base_skill_effect_duration", 8000 },
+ { "active_skill_base_area_of_effect_radius", 40 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "base_skill_effect_duration", 1000 },
- { "pvp_skill_dot_attack_time_override_ms", 2000 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "shielding_cry_an_additional_empowered_attack_per_X_mp", 5 },
+ { "shielding_cry_an_additional_empowered_attack_per_X_mp_mp_cap", 50 },
+ { "base_secondary_skill_effect_duration", 4000 },
+ { "shielding_cry_grant_X_guard_per_5_mp_mp_cap", 20 },
},
stats = {
- "spell_minimum_base_physical_damage",
- "spell_maximum_base_physical_damage",
- "base_physical_damage_to_deal_per_minute",
+ "shielding_cry_grant_X_guard_per_5_mp",
+ "display_statset_no_hit_damage",
+ "warcry_count_power_from_enemies",
"can_perform_skill_while_moving",
- "spell_damage_modifiers_apply_to_skill_dot",
- "display_statset_hide_usage_stats",
+ "warcry_minimum_benefit_if_monster_power_present",
+ "cannot_cancel_skill_before_contact_point",
},
levels = {
- [1] = { 0, 0, 142, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 0, 0, 209, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 0, 0, 304, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 0, 0, 413, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 0, 0, 535, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 0, 0, 674, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 0, 0, 832, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 0, 0, 1009, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 0, 0, 1211, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 0, 0, 1439, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 0, 0, 1697, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 0, 0, 1990, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 0, 0, 2321, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 0, 0, 2698, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 0, 0, 3125, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 0, 0, 3610, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 0, 0, 4161, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 0, 0, 4789, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 0, 0, 5504, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 0, 0, 6319, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 0, 0, 7250, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 0, 0, 8312, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 0, 0, 9527, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 0, 0, 10918, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 0, 0, 12512, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 0, 0, 14341, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 0, 0, 16441, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 0, 0, 18856, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 0, 0, 21637, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 0, 0, 24842, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 0, 0, 28540, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 0, 0, 32814, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 0, 0, 37758, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 0, 0, 43485, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 0, 0, 50128, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 0, 0, 57843, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 0, 0, 66816, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 0, 0, 77266, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 0, 0, 89451, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 0, 0, 103681, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 4, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 7, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 22, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 26, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 30, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 35, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 45, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 50, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 55, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 61, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 67, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 73, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 79, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 85, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 92, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 99, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 106, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 113, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 121, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 129, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 137, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 145, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 153, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 162, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 170, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 179, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 189, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 198, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 208, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 218, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 228, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 238, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 248, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 259, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 270, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
}
-skills["FlashGrenadePlayer"] = {
- name = "Flash Grenade",
- baseTypeName = "Flash Grenade",
- color = 1,
- description = "Fire a bouncing Grenade that unleashes a Blinding, Stunning explosion when its fuse expires.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
- weaponTypes = {
- ["Crossbow"] = true,
- },
- castTime = 1,
+skills["FortifyingCryShockwavePlayer"] = {
+ name = "Shield Wave",
+ hidden = true,
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
+ castTime = 0,
qualityStats = {
- { "base_cooldown_speed_+%", 1 },
+ { "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, storedUses = 1, cooldown = 5, levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.1, cooldown = 5, levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.33, cooldown = 5, levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.57, cooldown = 5, levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.7, cooldown = 5, levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.82, cooldown = 5, levelRequirement = 26, cost = { Mana = 16, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 31, cost = { Mana = 18, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.05, cooldown = 5, levelRequirement = 36, cost = { Mana = 20, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.19, cooldown = 5, levelRequirement = 41, cost = { Mana = 22, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.33, cooldown = 5, levelRequirement = 46, cost = { Mana = 25, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.49, cooldown = 5, levelRequirement = 52, cost = { Mana = 27, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 30, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 2.85, cooldown = 5, levelRequirement = 64, cost = { Mana = 34, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.05, cooldown = 5, levelRequirement = 66, cost = { Mana = 38, }, },
- [17] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.28, cooldown = 5, levelRequirement = 72, cost = { Mana = 42, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 78, cost = { Mana = 46, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 84, cost = { Mana = 51, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 57, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 63, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 70, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 78, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 86, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 5.92, cooldown = 5, levelRequirement = 90, cost = { Mana = 95, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 106, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 117, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 130, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 144, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 160, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 177, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 217, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 241, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 12.47, cooldown = 5, levelRequirement = 90, cost = { Mana = 267, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 296, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 328, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 15.59, cooldown = 5, levelRequirement = 90, cost = { Mana = 364, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 16.8, cooldown = 5, levelRequirement = 90, cost = { Mana = 403, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 1, baseMultiplier = 18.1, cooldown = 5, levelRequirement = 90, cost = { Mana = 446, }, },
+ [1] = { critChance = 5, baseMultiplier = 0.5, levelRequirement = 0, },
+ [2] = { critChance = 5, baseMultiplier = 0.55, levelRequirement = 0, },
+ [3] = { critChance = 5, baseMultiplier = 0.61, levelRequirement = 0, },
+ [4] = { critChance = 5, baseMultiplier = 0.67, levelRequirement = 0, },
+ [5] = { critChance = 5, baseMultiplier = 0.73, levelRequirement = 0, },
+ [6] = { critChance = 5, baseMultiplier = 0.79, levelRequirement = 0, },
+ [7] = { critChance = 5, baseMultiplier = 0.85, levelRequirement = 0, },
+ [8] = { critChance = 5, baseMultiplier = 0.91, levelRequirement = 0, },
+ [9] = { critChance = 5, baseMultiplier = 0.97, levelRequirement = 0, },
+ [10] = { critChance = 5, baseMultiplier = 1.03, levelRequirement = 0, },
+ [11] = { critChance = 5, baseMultiplier = 1.09, levelRequirement = 0, },
+ [12] = { critChance = 5, baseMultiplier = 1.17, levelRequirement = 0, },
+ [13] = { critChance = 5, baseMultiplier = 1.25, levelRequirement = 0, },
+ [14] = { critChance = 5, baseMultiplier = 1.33, levelRequirement = 0, },
+ [15] = { critChance = 5, baseMultiplier = 1.42, levelRequirement = 0, },
+ [16] = { critChance = 5, baseMultiplier = 1.53, levelRequirement = 0, },
+ [17] = { critChance = 5, baseMultiplier = 1.64, levelRequirement = 0, },
+ [18] = { critChance = 5, baseMultiplier = 1.76, levelRequirement = 0, },
+ [19] = { critChance = 5, baseMultiplier = 1.89, levelRequirement = 0, },
+ [20] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 0, },
+ [21] = { critChance = 5, baseMultiplier = 2.2, levelRequirement = 0, },
+ [22] = { critChance = 5, baseMultiplier = 2.37, levelRequirement = 0, },
+ [23] = { critChance = 5, baseMultiplier = 2.55, levelRequirement = 0, },
+ [24] = { critChance = 5, baseMultiplier = 2.75, levelRequirement = 0, },
+ [25] = { critChance = 5, baseMultiplier = 2.96, levelRequirement = 0, },
+ [26] = { critChance = 5, baseMultiplier = 3.19, levelRequirement = 0, },
+ [27] = { critChance = 5, baseMultiplier = 3.44, levelRequirement = 0, },
+ [28] = { critChance = 5, baseMultiplier = 3.7, levelRequirement = 0, },
+ [29] = { critChance = 5, baseMultiplier = 3.99, levelRequirement = 0, },
+ [30] = { critChance = 5, baseMultiplier = 4.3, levelRequirement = 0, },
+ [31] = { critChance = 5, baseMultiplier = 4.63, levelRequirement = 0, },
+ [32] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 0, },
+ [33] = { critChance = 5, baseMultiplier = 5.37, levelRequirement = 0, },
+ [34] = { critChance = 5, baseMultiplier = 5.79, levelRequirement = 0, },
+ [35] = { critChance = 5, baseMultiplier = 6.24, levelRequirement = 0, },
+ [36] = { critChance = 5, baseMultiplier = 6.72, levelRequirement = 0, },
+ [37] = { critChance = 5, baseMultiplier = 7.24, levelRequirement = 0, },
+ [38] = { critChance = 5, baseMultiplier = 7.8, levelRequirement = 0, },
+ [39] = { critChance = 5, baseMultiplier = 8.4, levelRequirement = 0, },
+ [40] = { critChance = 5, baseMultiplier = 9.05, levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Flash Grenade",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "flash_grenade",
+ label = "Shield Wave",
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "shielding_cry_shockwave",
baseFlags = {
attack = true,
+ melee = true,
area = true,
- projectile = true,
+ shieldAttack = true,
},
constantStats = {
- { "action_allowed_queue_time_override_ms", 1000 },
- { "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "base_skill_detonation_time", 850 },
- { "attacks_chance_to_blind_on_hit_%", 100 },
- { "active_skill_hit_damage_stun_multiplier_+%_final", 500 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "fixed_projectile_spread", 30 },
- { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "active_skill_base_area_of_effect_radius", 20 },
},
stats = {
- "active_skill_base_area_of_effect_radius",
- "base_is_projectile",
- "projectile_ballistic_angle_from_reference_event",
- "projectile_uses_contact_position",
- "is_area_damage",
- "action_can_be_used_in_aiming_stance",
- "disable_visual_hit_effect",
- "ballistic_projectiles_always_bounce",
- "can_perform_skill_while_moving",
- "projectile_uses_contact_direction",
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ "off_hand_minimum_added_physical_damage_per_15_shield_armour",
+ "off_hand_maximum_added_physical_damage_per_15_shield_armour",
"base_skill_show_average_damage_instead_of_dps",
- "projectiles_cannot_fork",
+ "display_statset_hide_usage_stats",
+ "modifiers_to_warcry_damage_also_apply_to_this",
+ "replace_off_hand_unarmed_attack_stats_with_shield_type",
+ "attack_is_melee_override",
+ "skill_triggered_manually_by_other_skill",
+ "triggerable_in_any_set",
+ },
+ notMinionStat = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
},
levels = {
- [1] = { 26, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 26, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 27, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 27, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 27, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 28, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 29, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 29, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 29, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 30, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 30, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 31, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 31, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 32, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 32, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 33, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 33, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 33, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 34, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 34, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 34, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 35, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 36, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 36, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 37, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 37, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 37, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 37, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 37, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 38, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 38, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 38, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 38, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 38, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 39, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 5, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 8, 12, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 17, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, 26, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 32, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 25, 37, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, 43, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 33, 50, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 37, 56, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 42, 63, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 47, 70, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 52, 78, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 57, 85, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 62, 93, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 68, 101, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 73, 110, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 79, 119, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 85, 128, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 92, 137, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 98, 147, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 105, 157, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 112, 167, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 119, 178, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 126, 189, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 133, 200, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 141, 211, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 149, 223, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 157, 235, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 165, 247, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 173, 260, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 182, 273, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 191, 286, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 200, 299, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 209, 313, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 218, 327, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 228, 342, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 237, 356, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 247, 371, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -3241,7 +4385,7 @@ skills["ToxicGrenadePlayer"] = {
baseTypeName = "Gas Grenade",
color = 1,
description = "Fire a bouncing Grenade that causes a burst of Poison gas when its fuse expires, damaging enemies and leaving behind a growing Poison cloud. Burning effects or Detonator skills will cause the cloud to explode in a fiery blast.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -3250,46 +4394,46 @@ skills["ToxicGrenadePlayer"] = {
{ "base_cooldown_speed_+%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 3, levelRequirement = 0, cost = { Mana = 13, }, },
+ [1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 3, levelRequirement = 0, cost = { Mana = 12, }, },
[2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.44, cooldown = 3, levelRequirement = 3, cost = { Mana = 14, }, },
[3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.49, cooldown = 3, levelRequirement = 6, cost = { Mana = 16, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 3, levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 3, levelRequirement = 14, cost = { Mana = 19, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 3, levelRequirement = 18, cost = { Mana = 22, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 3, levelRequirement = 22, cost = { Mana = 24, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 3, levelRequirement = 26, cost = { Mana = 27, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 3, levelRequirement = 31, cost = { Mana = 30, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 3, levelRequirement = 36, cost = { Mana = 33, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 3, levelRequirement = 41, cost = { Mana = 36, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 3, levelRequirement = 46, cost = { Mana = 40, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 3, levelRequirement = 52, cost = { Mana = 45, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 3, levelRequirement = 58, cost = { Mana = 50, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 3, levelRequirement = 64, cost = { Mana = 55, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 3, levelRequirement = 66, cost = { Mana = 61, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 3, levelRequirement = 10, cost = { Mana = 19, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 3, levelRequirement = 14, cost = { Mana = 21, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 3, levelRequirement = 18, cost = { Mana = 24, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 3, levelRequirement = 22, cost = { Mana = 27, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 3, levelRequirement = 26, cost = { Mana = 30, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 3, levelRequirement = 31, cost = { Mana = 33, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 3, levelRequirement = 36, cost = { Mana = 36, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 3, levelRequirement = 41, cost = { Mana = 40, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 3, levelRequirement = 46, cost = { Mana = 44, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 3, levelRequirement = 52, cost = { Mana = 48, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 3, levelRequirement = 58, cost = { Mana = 53, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 3, levelRequirement = 64, cost = { Mana = 57, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 3, levelRequirement = 66, cost = { Mana = 63, }, },
[17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.31, cooldown = 3, levelRequirement = 72, cost = { Mana = 68, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 3, levelRequirement = 78, cost = { Mana = 75, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 3, levelRequirement = 84, cost = { Mana = 83, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 92, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 3, levelRequirement = 90, cost = { Mana = 102, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 3, levelRequirement = 90, cost = { Mana = 114, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 3, levelRequirement = 90, cost = { Mana = 126, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 3, levelRequirement = 90, cost = { Mana = 140, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 155, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 3, levelRequirement = 90, cost = { Mana = 172, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 3, levelRequirement = 90, cost = { Mana = 190, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 3, levelRequirement = 90, cost = { Mana = 211, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 3, levelRequirement = 90, cost = { Mana = 234, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 3, levelRequirement = 90, cost = { Mana = 259, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 3, levelRequirement = 90, cost = { Mana = 287, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 318, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 3, levelRequirement = 90, cost = { Mana = 352, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 391, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 433, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 480, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 3, levelRequirement = 90, cost = { Mana = 532, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 589, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 3, levelRequirement = 90, cost = { Mana = 653, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 724, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 3, levelRequirement = 78, cost = { Mana = 74, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 3, levelRequirement = 84, cost = { Mana = 80, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 86, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 3, levelRequirement = 90, cost = { Mana = 93, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 3, levelRequirement = 90, cost = { Mana = 100, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 3, levelRequirement = 90, cost = { Mana = 108, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 3, levelRequirement = 90, cost = { Mana = 116, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 125, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 3, levelRequirement = 90, cost = { Mana = 134, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 3, levelRequirement = 90, cost = { Mana = 144, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 3, levelRequirement = 90, cost = { Mana = 154, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 3, levelRequirement = 90, cost = { Mana = 165, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 3, levelRequirement = 90, cost = { Mana = 177, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 3, levelRequirement = 90, cost = { Mana = 189, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 202, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 3, levelRequirement = 90, cost = { Mana = 216, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 3, levelRequirement = 90, cost = { Mana = 230, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 3, levelRequirement = 90, cost = { Mana = 246, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 3, levelRequirement = 90, cost = { Mana = 262, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 3, levelRequirement = 90, cost = { Mana = 279, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 298, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 3, levelRequirement = 90, cost = { Mana = 317, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 3, levelRequirement = 90, cost = { Mana = 337, }, },
},
statSets = {
[1] = {
@@ -3308,7 +4452,7 @@ skills["ToxicGrenadePlayer"] = {
{ "base_skill_detonation_time", 2000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "fixed_projectile_spread", 30 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
},
@@ -3385,7 +4529,7 @@ skills["ToxicGrenadePlayer"] = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "fixed_projectile_spread", 30 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
{ "action_allowed_queue_time_override_ms", 1000 },
@@ -3463,75 +4607,258 @@ skills["ToxicGrenadePlayer"] = {
baseFlags = {
attack = true,
area = true,
- projectile = true,
+ projectile = true,
+ },
+ constantStats = {
+ { "action_allowed_queue_time_override_ms", 1000 },
+ { "action_required_target_facing_angle_tolerance_degrees", 90 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "fixed_projectile_spread", 30 },
+ { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
+ },
+ stats = {
+ "active_skill_base_area_of_effect_radius",
+ "base_is_projectile",
+ "projectile_ballistic_angle_from_reference_event",
+ "projectile_uses_contact_position",
+ "is_area_damage",
+ "action_can_be_used_in_aiming_stance",
+ "ballistic_projectiles_always_bounce",
+ "can_perform_skill_while_moving",
+ "projectile_uses_contact_direction",
+ "base_skill_show_average_damage_instead_of_dps",
+ "visual_hit_effect_physical_is_green",
+ "projectiles_cannot_fork",
+ "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { 14, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 14, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 14, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 15, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 15, baseMultiplier = 2.18, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 15, baseMultiplier = 2.36, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 16, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 16, baseMultiplier = 2.73, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 16, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 17, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 17, baseMultiplier = 3.28, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 17, baseMultiplier = 3.5, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 18, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 18, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 18, baseMultiplier = 4.27, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 19, baseMultiplier = 4.58, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 19, baseMultiplier = 4.92, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 19, baseMultiplier = 5.28, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 20, baseMultiplier = 5.68, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 20, baseMultiplier = 6.12, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 20, baseMultiplier = 6.6, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 21, baseMultiplier = 7.11, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 21, baseMultiplier = 7.66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 21, baseMultiplier = 8.25, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 22, baseMultiplier = 8.89, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 22, baseMultiplier = 9.57, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 22, baseMultiplier = 10.31, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 23, baseMultiplier = 11.11, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 23, baseMultiplier = 11.97, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 23, baseMultiplier = 12.89, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 24, baseMultiplier = 13.89, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 24, baseMultiplier = 14.96, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 24, baseMultiplier = 16.12, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 25, baseMultiplier = 17.37, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 25, baseMultiplier = 18.71, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 25, baseMultiplier = 20.16, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 26, baseMultiplier = 21.71, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 26, baseMultiplier = 23.39, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 26, baseMultiplier = 25.2, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 27, baseMultiplier = 27.15, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["GeminiSurgePlayer"] = {
+ name = "Gemini Surge",
+ baseTypeName = "Gemini Surge",
+ color = 1,
+ description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.15 },
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.5, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.55, levelRequirement = 3, },
+ [3] = { baseMultiplier = 0.61, levelRequirement = 6, },
+ [4] = { baseMultiplier = 0.66, levelRequirement = 10, },
+ [5] = { baseMultiplier = 0.72, levelRequirement = 14, },
+ [6] = { baseMultiplier = 0.77, levelRequirement = 18, },
+ [7] = { baseMultiplier = 0.83, levelRequirement = 22, },
+ [8] = { baseMultiplier = 0.88, levelRequirement = 26, },
+ [9] = { baseMultiplier = 0.93, levelRequirement = 31, },
+ [10] = { baseMultiplier = 0.99, levelRequirement = 36, },
+ [11] = { baseMultiplier = 1.05, levelRequirement = 41, },
+ [12] = { baseMultiplier = 1.11, levelRequirement = 46, },
+ [13] = { baseMultiplier = 1.17, levelRequirement = 52, },
+ [14] = { baseMultiplier = 1.25, levelRequirement = 58, },
+ [15] = { baseMultiplier = 1.32, levelRequirement = 64, },
+ [16] = { baseMultiplier = 1.41, levelRequirement = 66, },
+ [17] = { baseMultiplier = 1.5, levelRequirement = 72, },
+ [18] = { baseMultiplier = 1.59, levelRequirement = 78, },
+ [19] = { baseMultiplier = 1.7, levelRequirement = 84, },
+ [20] = { baseMultiplier = 1.81, levelRequirement = 90, },
+ [21] = { baseMultiplier = 1.93, levelRequirement = 90, },
+ [22] = { baseMultiplier = 2.06, levelRequirement = 90, },
+ [23] = { baseMultiplier = 2.2, levelRequirement = 90, },
+ [24] = { baseMultiplier = 2.34, levelRequirement = 90, },
+ [25] = { baseMultiplier = 2.5, levelRequirement = 90, },
+ [26] = { baseMultiplier = 2.67, levelRequirement = 90, },
+ [27] = { baseMultiplier = 2.84, levelRequirement = 90, },
+ [28] = { baseMultiplier = 3.03, levelRequirement = 90, },
+ [29] = { baseMultiplier = 3.24, levelRequirement = 90, },
+ [30] = { baseMultiplier = 3.45, levelRequirement = 90, },
+ [31] = { baseMultiplier = 3.68, levelRequirement = 90, },
+ [32] = { baseMultiplier = 3.93, levelRequirement = 90, },
+ [33] = { baseMultiplier = 4.19, levelRequirement = 90, },
+ [34] = { baseMultiplier = 4.47, levelRequirement = 90, },
+ [35] = { baseMultiplier = 4.76, levelRequirement = 90, },
+ [36] = { baseMultiplier = 5.08, levelRequirement = 90, },
+ [37] = { baseMultiplier = 5.42, levelRequirement = 90, },
+ [38] = { baseMultiplier = 5.78, levelRequirement = 90, },
+ [39] = { baseMultiplier = 6.17, levelRequirement = 90, },
+ [40] = { baseMultiplier = 6.58, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Cold Surge",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "trigger_elemental_infusion",
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "chance_to_be_triggered_by_reload_infusion_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "base_skill_effect_duration", 15000 },
+ { "maximum_number_of_instilling_stacks", 10 },
+ { "surge_can_apply_to_X_number_of_projectiles_per_skill_use", 1 },
+ },
+ stats = {
+ "is_area_damage",
+ "cannot_consume_power_frenzy_endurance_charges",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Fire Surge",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "trigger_elemental_infusion",
+ baseFlags = {
+ attack = true,
+ area = true,
},
constantStats = {
- { "action_allowed_queue_time_override_ms", 1000 },
- { "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "fixed_projectile_spread", 30 },
- { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "chance_to_be_triggered_by_reload_infusion_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "base_skill_effect_duration", 15000 },
+ { "maximum_number_of_instilling_stacks", 10 },
+ { "surge_can_apply_to_X_number_of_projectiles_per_skill_use", 1 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
},
stats = {
- "active_skill_base_area_of_effect_radius",
- "base_is_projectile",
- "projectile_ballistic_angle_from_reference_event",
- "projectile_uses_contact_position",
"is_area_damage",
- "action_can_be_used_in_aiming_stance",
- "ballistic_projectiles_always_bounce",
- "can_perform_skill_while_moving",
- "projectile_uses_contact_direction",
+ "cannot_consume_power_frenzy_endurance_charges",
"base_skill_show_average_damage_instead_of_dps",
- "visual_hit_effect_physical_is_green",
- "projectiles_cannot_fork",
- "quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem",
- "display_statset_hide_usage_stats",
},
levels = {
- [1] = { 14, baseMultiplier = 1.5, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 14, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 14, baseMultiplier = 1.83, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 15, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 15, baseMultiplier = 2.18, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, baseMultiplier = 2.36, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 16, baseMultiplier = 2.55, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 16, baseMultiplier = 2.73, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 16, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 17, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 17, baseMultiplier = 3.28, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 17, baseMultiplier = 3.5, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 18, baseMultiplier = 3.74, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 18, baseMultiplier = 3.99, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 18, baseMultiplier = 4.27, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 19, baseMultiplier = 4.58, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 19, baseMultiplier = 4.92, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 19, baseMultiplier = 5.28, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 20, baseMultiplier = 5.68, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 20, baseMultiplier = 6.12, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 20, baseMultiplier = 6.6, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 21, baseMultiplier = 7.11, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 21, baseMultiplier = 7.66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 21, baseMultiplier = 8.25, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 22, baseMultiplier = 8.89, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 22, baseMultiplier = 9.57, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 22, baseMultiplier = 10.31, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 23, baseMultiplier = 11.11, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 23, baseMultiplier = 11.97, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 23, baseMultiplier = 12.89, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 24, baseMultiplier = 13.89, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 24, baseMultiplier = 14.96, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 24, baseMultiplier = 16.12, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 25, baseMultiplier = 17.37, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 25, baseMultiplier = 18.71, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 25, baseMultiplier = 20.16, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 26, baseMultiplier = 21.71, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 26, baseMultiplier = 23.39, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 26, baseMultiplier = 25.2, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 27, baseMultiplier = 27.15, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
},
},
}
@@ -3541,7 +4868,7 @@ skills["HammerOfTheGodsPlayer"] = {
baseTypeName = "Hammer of the Gods",
color = 1,
description = "Build Glory by Heavy Stunning enemies. When you have maximum Glory you may entreat the Ancestors to crush your enemies, manifesting a massive hammer that falls from the sky onto your target, Slamming into the ground after a short duration and dealing immense damage based on your weapon.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -3551,46 +4878,46 @@ skills["HammerOfTheGodsPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
- [1] = { attackSpeedMultiplier = -50, baseMultiplier = 5.8, levelRequirement = 0, cost = { Mana = 11, }, },
+ [1] = { attackSpeedMultiplier = -50, baseMultiplier = 5.8, levelRequirement = 0, cost = { Mana = 10, }, },
[2] = { attackSpeedMultiplier = -50, baseMultiplier = 6.37, levelRequirement = 3, cost = { Mana = 12, }, },
- [3] = { attackSpeedMultiplier = -50, baseMultiplier = 6.99, levelRequirement = 6, cost = { Mana = 13, }, },
- [4] = { attackSpeedMultiplier = -50, baseMultiplier = 7.59, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { attackSpeedMultiplier = -50, baseMultiplier = 8.17, levelRequirement = 14, cost = { Mana = 16, }, },
- [6] = { attackSpeedMultiplier = -50, baseMultiplier = 8.74, levelRequirement = 18, cost = { Mana = 18, }, },
- [7] = { attackSpeedMultiplier = -50, baseMultiplier = 9.3, levelRequirement = 22, cost = { Mana = 20, }, },
- [8] = { attackSpeedMultiplier = -50, baseMultiplier = 9.79, levelRequirement = 26, cost = { Mana = 22, }, },
- [9] = { attackSpeedMultiplier = -50, baseMultiplier = 10.21, levelRequirement = 31, cost = { Mana = 25, }, },
- [10] = { attackSpeedMultiplier = -50, baseMultiplier = 10.63, levelRequirement = 36, cost = { Mana = 28, }, },
- [11] = { attackSpeedMultiplier = -50, baseMultiplier = 11.07, levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { attackSpeedMultiplier = -50, baseMultiplier = 11.51, levelRequirement = 46, cost = { Mana = 34, }, },
- [13] = { attackSpeedMultiplier = -50, baseMultiplier = 11.96, levelRequirement = 52, cost = { Mana = 38, }, },
- [14] = { attackSpeedMultiplier = -50, baseMultiplier = 12.42, levelRequirement = 58, cost = { Mana = 42, }, },
- [15] = { attackSpeedMultiplier = -50, baseMultiplier = 12.88, levelRequirement = 64, cost = { Mana = 47, }, },
- [16] = { attackSpeedMultiplier = -50, baseMultiplier = 13.35, levelRequirement = 66, cost = { Mana = 52, }, },
+ [3] = { attackSpeedMultiplier = -50, baseMultiplier = 6.99, levelRequirement = 6, cost = { Mana = 14, }, },
+ [4] = { attackSpeedMultiplier = -50, baseMultiplier = 7.59, levelRequirement = 10, cost = { Mana = 16, }, },
+ [5] = { attackSpeedMultiplier = -50, baseMultiplier = 8.17, levelRequirement = 14, cost = { Mana = 18, }, },
+ [6] = { attackSpeedMultiplier = -50, baseMultiplier = 8.74, levelRequirement = 18, cost = { Mana = 20, }, },
+ [7] = { attackSpeedMultiplier = -50, baseMultiplier = 9.3, levelRequirement = 22, cost = { Mana = 23, }, },
+ [8] = { attackSpeedMultiplier = -50, baseMultiplier = 9.79, levelRequirement = 26, cost = { Mana = 25, }, },
+ [9] = { attackSpeedMultiplier = -50, baseMultiplier = 10.21, levelRequirement = 31, cost = { Mana = 28, }, },
+ [10] = { attackSpeedMultiplier = -50, baseMultiplier = 10.63, levelRequirement = 36, cost = { Mana = 31, }, },
+ [11] = { attackSpeedMultiplier = -50, baseMultiplier = 11.07, levelRequirement = 41, cost = { Mana = 34, }, },
+ [12] = { attackSpeedMultiplier = -50, baseMultiplier = 11.51, levelRequirement = 46, cost = { Mana = 37, }, },
+ [13] = { attackSpeedMultiplier = -50, baseMultiplier = 11.96, levelRequirement = 52, cost = { Mana = 41, }, },
+ [14] = { attackSpeedMultiplier = -50, baseMultiplier = 12.42, levelRequirement = 58, cost = { Mana = 44, }, },
+ [15] = { attackSpeedMultiplier = -50, baseMultiplier = 12.88, levelRequirement = 64, cost = { Mana = 48, }, },
+ [16] = { attackSpeedMultiplier = -50, baseMultiplier = 13.35, levelRequirement = 66, cost = { Mana = 53, }, },
[17] = { attackSpeedMultiplier = -50, baseMultiplier = 13.83, levelRequirement = 72, cost = { Mana = 57, }, },
- [18] = { attackSpeedMultiplier = -50, baseMultiplier = 14.31, levelRequirement = 78, cost = { Mana = 63, }, },
- [19] = { attackSpeedMultiplier = -50, baseMultiplier = 14.8, levelRequirement = 84, cost = { Mana = 70, }, },
- [20] = { attackSpeedMultiplier = -50, baseMultiplier = 15.29, levelRequirement = 90, cost = { Mana = 78, }, },
- [21] = { attackSpeedMultiplier = -50, baseMultiplier = 15.8, levelRequirement = 90, cost = { Mana = 87, }, },
- [22] = { attackSpeedMultiplier = -50, baseMultiplier = 16.32, levelRequirement = 90, cost = { Mana = 96, }, },
- [23] = { attackSpeedMultiplier = -50, baseMultiplier = 16.86, levelRequirement = 90, cost = { Mana = 106, }, },
- [24] = { attackSpeedMultiplier = -50, baseMultiplier = 17.42, levelRequirement = 90, cost = { Mana = 118, }, },
- [25] = { attackSpeedMultiplier = -50, baseMultiplier = 18, levelRequirement = 90, cost = { Mana = 131, }, },
- [26] = { attackSpeedMultiplier = -50, baseMultiplier = 18.6, levelRequirement = 90, cost = { Mana = 145, }, },
- [27] = { attackSpeedMultiplier = -50, baseMultiplier = 19.22, levelRequirement = 90, cost = { Mana = 161, }, },
- [28] = { attackSpeedMultiplier = -50, baseMultiplier = 19.85, levelRequirement = 90, cost = { Mana = 178, }, },
- [29] = { attackSpeedMultiplier = -50, baseMultiplier = 20.51, levelRequirement = 90, cost = { Mana = 197, }, },
- [30] = { attackSpeedMultiplier = -50, baseMultiplier = 21.19, levelRequirement = 90, cost = { Mana = 219, }, },
- [31] = { attackSpeedMultiplier = -50, baseMultiplier = 21.9, levelRequirement = 90, cost = { Mana = 242, }, },
- [32] = { attackSpeedMultiplier = -50, baseMultiplier = 22.63, levelRequirement = 90, cost = { Mana = 269, }, },
- [33] = { attackSpeedMultiplier = -50, baseMultiplier = 23.38, levelRequirement = 90, cost = { Mana = 298, }, },
- [34] = { attackSpeedMultiplier = -50, baseMultiplier = 24.15, levelRequirement = 90, cost = { Mana = 330, }, },
- [35] = { attackSpeedMultiplier = -50, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 366, }, },
- [36] = { attackSpeedMultiplier = -50, baseMultiplier = 25.78, levelRequirement = 90, cost = { Mana = 405, }, },
- [37] = { attackSpeedMultiplier = -50, baseMultiplier = 26.64, levelRequirement = 90, cost = { Mana = 449, }, },
- [38] = { attackSpeedMultiplier = -50, baseMultiplier = 27.52, levelRequirement = 90, cost = { Mana = 498, }, },
- [39] = { attackSpeedMultiplier = -50, baseMultiplier = 28.44, levelRequirement = 90, cost = { Mana = 552, }, },
- [40] = { attackSpeedMultiplier = -50, baseMultiplier = 29.38, levelRequirement = 90, cost = { Mana = 611, }, },
+ [18] = { attackSpeedMultiplier = -50, baseMultiplier = 14.31, levelRequirement = 78, cost = { Mana = 62, }, },
+ [19] = { attackSpeedMultiplier = -50, baseMultiplier = 14.8, levelRequirement = 84, cost = { Mana = 67, }, },
+ [20] = { attackSpeedMultiplier = -50, baseMultiplier = 15.29, levelRequirement = 90, cost = { Mana = 73, }, },
+ [21] = { attackSpeedMultiplier = -50, baseMultiplier = 15.8, levelRequirement = 90, cost = { Mana = 78, }, },
+ [22] = { attackSpeedMultiplier = -50, baseMultiplier = 16.32, levelRequirement = 90, cost = { Mana = 85, }, },
+ [23] = { attackSpeedMultiplier = -50, baseMultiplier = 16.86, levelRequirement = 90, cost = { Mana = 91, }, },
+ [24] = { attackSpeedMultiplier = -50, baseMultiplier = 17.42, levelRequirement = 90, cost = { Mana = 98, }, },
+ [25] = { attackSpeedMultiplier = -50, baseMultiplier = 18, levelRequirement = 90, cost = { Mana = 105, }, },
+ [26] = { attackSpeedMultiplier = -50, baseMultiplier = 18.6, levelRequirement = 90, cost = { Mana = 113, }, },
+ [27] = { attackSpeedMultiplier = -50, baseMultiplier = 19.22, levelRequirement = 90, cost = { Mana = 121, }, },
+ [28] = { attackSpeedMultiplier = -50, baseMultiplier = 19.85, levelRequirement = 90, cost = { Mana = 130, }, },
+ [29] = { attackSpeedMultiplier = -50, baseMultiplier = 20.51, levelRequirement = 90, cost = { Mana = 139, }, },
+ [30] = { attackSpeedMultiplier = -50, baseMultiplier = 21.19, levelRequirement = 90, cost = { Mana = 149, }, },
+ [31] = { attackSpeedMultiplier = -50, baseMultiplier = 21.9, levelRequirement = 90, cost = { Mana = 160, }, },
+ [32] = { attackSpeedMultiplier = -50, baseMultiplier = 22.63, levelRequirement = 90, cost = { Mana = 170, }, },
+ [33] = { attackSpeedMultiplier = -50, baseMultiplier = 23.38, levelRequirement = 90, cost = { Mana = 182, }, },
+ [34] = { attackSpeedMultiplier = -50, baseMultiplier = 24.15, levelRequirement = 90, cost = { Mana = 194, }, },
+ [35] = { attackSpeedMultiplier = -50, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 207, }, },
+ [36] = { attackSpeedMultiplier = -50, baseMultiplier = 25.78, levelRequirement = 90, cost = { Mana = 221, }, },
+ [37] = { attackSpeedMultiplier = -50, baseMultiplier = 26.64, levelRequirement = 90, cost = { Mana = 236, }, },
+ [38] = { attackSpeedMultiplier = -50, baseMultiplier = 27.52, levelRequirement = 90, cost = { Mana = 251, }, },
+ [39] = { attackSpeedMultiplier = -50, baseMultiplier = 28.44, levelRequirement = 90, cost = { Mana = 267, }, },
+ [40] = { attackSpeedMultiplier = -50, baseMultiplier = 29.38, levelRequirement = 90, cost = { Mana = 285, }, },
},
statSets = {
[1] = {
@@ -3608,9 +4935,10 @@ skills["HammerOfTheGodsPlayer"] = {
{ "active_skill_base_area_of_effect_radius", 24 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
- { "skill_requires_X_ultimate_charge", 20 },
+ { "active_skill_requires_X_glory", 20 },
+ { "active_skill_generates_mp_%_glory_per_heavy_stun", 100 },
},
stats = {
"is_area_damage",
@@ -3924,6 +5252,11 @@ skills["HeraldOfBloodPlayer"] = {
label = "Buff",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "herald_of_blood",
+ statMap = {
+ ["display_herald_of_blood_behaviour"] = {
+ flag("Condition:EnemiesExplode", { type = "GlobalEffect", effectType = "Buff", effectName = "Herald of Blood" } ),
+ },
+ },
baseFlags = {
},
stats = {
@@ -4000,6 +5333,10 @@ skills["HeraldOfBloodPlayer"] = {
"display_statset_hide_usage_stats",
"global_always_hit",
},
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ },
levels = {
[1] = { 4, 6, 15, 40, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
[2] = { 6, 10, 15, 41, critChance = 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
@@ -4049,54 +5386,53 @@ skills["InfernalCryPlayer"] = {
name = "Infernal Cry",
baseTypeName = "Infernal Cry",
color = 1,
- description = "Perform a warcry, Empowering subsequent Attacks. Consumes all Endurance Charges to Empower additional attacks. Enemies in the warcry's area are destabilised and will Combust on death.",
- skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, },
+ description = "Perform a Warcry, Empowering subsequent Attacks if there are enemies nearby. Enemies in the warcry's area are destabilised and will Combust on death. This Skill's cooldown can be bypassed by expending an Endurance Charge.",
+ skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, },
castTime = 0.8,
qualityStats = {
- { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%", 0.5 },
- { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%", 2.5 },
+ { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 27, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 29, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 33, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 36, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 40, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 45, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 49, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 55, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 61, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 68, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 75, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 83, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 92, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 102, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 113, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 125, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 139, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 154, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 171, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 189, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 210, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 233, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 258, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 286, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 317, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 351, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 389, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 431, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 478, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 529, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 587, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 650, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 720, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 798, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 885, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 980, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1086, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1204, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1334, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 1478, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, },
},
statSets = {
[1] = {
@@ -4109,65 +5445,64 @@ skills["InfernalCryPlayer"] = {
duration = true,
},
constantStats = {
- { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%", 25 },
- { "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%", 100 },
- { "skill_empowers_next_x_melee_attacks", 1 },
{ "base_skill_effect_duration", 8000 },
{ "active_skill_base_area_of_effect_radius", 40 },
{ "infernal_cry_explosion_delay_ms", 200 },
- { "warcry_exerts_x_additional_attacks_per_endurance_charge_consumed", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "warcry_empowers_per_X_monster_power", 10 },
+ { "warcry_empowers_per_X_monster_power_mp_cap", 50 },
},
stats = {
- "warcry_speed_+%",
+ "infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_%",
"warcry_count_power_from_enemies",
"can_perform_skill_while_moving",
"display_statset_no_hit_damage",
- "quality_display_infernal_cry_is_gem",
+ "warcry_minimum_benefit_if_monster_power_present",
+ "cannot_cancel_skill_before_contact_point",
},
levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 2, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 8, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 10, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 12, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 14, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 16, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 18, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 24, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 26, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 28, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 30, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 32, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 34, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 36, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 38, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 40, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 41, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 42, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 43, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 44, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 45, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 46, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 47, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 48, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 49, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 49, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 50, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 50, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 51, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 51, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 52, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 52, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 53, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 53, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 54, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 31, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 33, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 34, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 35, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 36, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 37, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 38, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 39, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 41, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 42, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 43, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 44, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 46, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 47, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 48, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 49, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 50, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 51, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 52, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 53, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 54, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 55, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 56, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 57, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 58, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 59, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 60, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 61, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 62, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 63, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 64, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 65, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 66, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 67, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 68, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 69, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -4176,117 +5511,348 @@ skills["InfernalCryCorpseExplosionPlayer"] = {
name = "Combust",
hidden = true,
description = "The enemy's Corpse violently explodes, dealing Fire damage in an area around it.",
- skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NoAttackOrCastTime] = true, },
+ skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.Damage] = true, },
castTime = 1,
qualityStats = {
},
levels = {
[1] = { critChance = 7, levelRequirement = 0, },
- [2] = { critChance = 7, baseMultiplier = 1.1, levelRequirement = 0, },
- [3] = { critChance = 7, baseMultiplier = 1.21, levelRequirement = 0, },
- [4] = { critChance = 7, baseMultiplier = 1.32, levelRequirement = 0, },
- [5] = { critChance = 7, baseMultiplier = 1.42, levelRequirement = 0, },
- [6] = { critChance = 7, baseMultiplier = 1.53, levelRequirement = 0, },
- [7] = { critChance = 7, baseMultiplier = 1.64, levelRequirement = 0, },
- [8] = { critChance = 7, baseMultiplier = 1.74, levelRequirement = 0, },
- [9] = { critChance = 7, baseMultiplier = 1.82, levelRequirement = 0, },
- [10] = { critChance = 7, baseMultiplier = 1.91, levelRequirement = 0, },
- [11] = { critChance = 7, baseMultiplier = 2.01, levelRequirement = 0, },
- [12] = { critChance = 7, baseMultiplier = 2.11, levelRequirement = 0, },
- [13] = { critChance = 7, baseMultiplier = 2.22, levelRequirement = 0, },
- [14] = { critChance = 7, baseMultiplier = 2.33, levelRequirement = 0, },
- [15] = { critChance = 7, baseMultiplier = 2.44, levelRequirement = 0, },
- [16] = { critChance = 7, baseMultiplier = 2.57, levelRequirement = 0, },
- [17] = { critChance = 7, baseMultiplier = 2.69, levelRequirement = 0, },
- [18] = { critChance = 7, baseMultiplier = 2.83, levelRequirement = 0, },
- [19] = { critChance = 7, baseMultiplier = 2.97, levelRequirement = 0, },
- [20] = { critChance = 7, baseMultiplier = 3.12, levelRequirement = 0, },
- [21] = { critChance = 7, baseMultiplier = 3.27, levelRequirement = 0, },
- [22] = { critChance = 7, baseMultiplier = 3.44, levelRequirement = 0, },
- [23] = { critChance = 7, baseMultiplier = 3.61, levelRequirement = 0, },
- [24] = { critChance = 7, baseMultiplier = 3.79, levelRequirement = 0, },
- [25] = { critChance = 7, baseMultiplier = 3.98, levelRequirement = 0, },
- [26] = { critChance = 7, baseMultiplier = 4.18, levelRequirement = 0, },
- [27] = { critChance = 7, baseMultiplier = 4.39, levelRequirement = 0, },
- [28] = { critChance = 7, baseMultiplier = 4.61, levelRequirement = 0, },
- [29] = { critChance = 7, baseMultiplier = 4.84, levelRequirement = 0, },
- [30] = { critChance = 7, baseMultiplier = 5.08, levelRequirement = 0, },
- [31] = { critChance = 7, baseMultiplier = 5.33, levelRequirement = 0, },
- [32] = { critChance = 7, baseMultiplier = 5.6, levelRequirement = 0, },
- [33] = { critChance = 7, baseMultiplier = 5.88, levelRequirement = 0, },
- [34] = { critChance = 7, baseMultiplier = 6.18, levelRequirement = 0, },
- [35] = { critChance = 7, baseMultiplier = 6.48, levelRequirement = 0, },
- [36] = { critChance = 7, baseMultiplier = 6.81, levelRequirement = 0, },
- [37] = { critChance = 7, baseMultiplier = 7.15, levelRequirement = 0, },
- [38] = { critChance = 7, baseMultiplier = 7.51, levelRequirement = 0, },
- [39] = { critChance = 7, baseMultiplier = 7.88, levelRequirement = 0, },
- [40] = { critChance = 7, baseMultiplier = 8.28, levelRequirement = 0, },
+ [2] = { critChance = 7, levelRequirement = 0, },
+ [3] = { critChance = 7, levelRequirement = 0, },
+ [4] = { critChance = 7, levelRequirement = 0, },
+ [5] = { critChance = 7, levelRequirement = 0, },
+ [6] = { critChance = 7, levelRequirement = 0, },
+ [7] = { critChance = 7, levelRequirement = 0, },
+ [8] = { critChance = 7, levelRequirement = 0, },
+ [9] = { critChance = 7, levelRequirement = 0, },
+ [10] = { critChance = 7, levelRequirement = 0, },
+ [11] = { critChance = 7, levelRequirement = 0, },
+ [12] = { critChance = 7, levelRequirement = 0, },
+ [13] = { critChance = 7, levelRequirement = 0, },
+ [14] = { critChance = 7, levelRequirement = 0, },
+ [15] = { critChance = 7, levelRequirement = 0, },
+ [16] = { critChance = 7, levelRequirement = 0, },
+ [17] = { critChance = 7, levelRequirement = 0, },
+ [18] = { critChance = 7, levelRequirement = 0, },
+ [19] = { critChance = 7, levelRequirement = 0, },
+ [20] = { critChance = 7, levelRequirement = 0, },
+ [21] = { critChance = 7, levelRequirement = 0, },
+ [22] = { critChance = 7, levelRequirement = 0, },
+ [23] = { critChance = 7, levelRequirement = 0, },
+ [24] = { critChance = 7, levelRequirement = 0, },
+ [25] = { critChance = 7, levelRequirement = 0, },
+ [26] = { critChance = 7, levelRequirement = 0, },
+ [27] = { critChance = 7, levelRequirement = 0, },
+ [28] = { critChance = 7, levelRequirement = 0, },
+ [29] = { critChance = 7, levelRequirement = 0, },
+ [30] = { critChance = 7, levelRequirement = 0, },
+ [31] = { critChance = 7, levelRequirement = 0, },
+ [32] = { critChance = 7, levelRequirement = 0, },
+ [33] = { critChance = 7, levelRequirement = 0, },
+ [34] = { critChance = 7, levelRequirement = 0, },
+ [35] = { critChance = 7, levelRequirement = 0, },
+ [36] = { critChance = 7, levelRequirement = 0, },
+ [37] = { critChance = 7, levelRequirement = 0, },
+ [38] = { critChance = 7, levelRequirement = 0, },
+ [39] = { critChance = 7, levelRequirement = 0, },
+ [40] = { critChance = 7, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Combust",
+ baseEffectiveness = 1.0499999523163,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "infernal_cry_corpse_explosion",
+ baseFlags = {
+ area = true,
+ hit = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "infernal_cry_explosion_fire_damage_+%_final_per_corpse_power", 10 },
+ },
+ stats = {
+ "secondary_minimum_base_fire_damage",
+ "secondary_maximum_base_fire_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "damage_cannot_be_reflected",
+ "is_area_damage",
+ "triggered_by_infernal_cry",
+ "display_statset_hide_usage_stats",
+ "display_skill_deals_secondary_damage",
+ },
+ notMinionStat = {
+ "secondary_minimum_base_fire_damage",
+ "secondary_maximum_base_fire_damage",
+ },
+ levels = {
+ [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 18, 27, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 22, 32, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 26, 38, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 64, 95, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 73, 110, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 84, 127, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 112, 167, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 169, 254, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 194, 291, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 295, 442, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 339, 508, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 390, 585, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 449, 674, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 518, 777, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 597, 896, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 690, 1035, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 797, 1196, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 923, 1384, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1069, 1603, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1239, 1859, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1439, 2159, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1673, 2510, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1948, 2922, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["IronWardPlayer"] = {
+ name = "Iron Ward",
+ baseTypeName = "Iron Ward",
+ color = 1,
+ description = "While active, stores a percentage of the Physical damage that is prevented by your Armour or other sources of damage reduction. Using this Skill releases the stored damage as a nova of spikes.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { spiritReservationFlat = 30, levelRequirement = 0, },
+ [2] = { spiritReservationFlat = 30, levelRequirement = 3, },
+ [3] = { spiritReservationFlat = 30, levelRequirement = 6, },
+ [4] = { spiritReservationFlat = 30, levelRequirement = 10, },
+ [5] = { spiritReservationFlat = 30, levelRequirement = 14, },
+ [6] = { spiritReservationFlat = 30, levelRequirement = 18, },
+ [7] = { spiritReservationFlat = 30, levelRequirement = 22, },
+ [8] = { spiritReservationFlat = 30, levelRequirement = 26, },
+ [9] = { spiritReservationFlat = 30, levelRequirement = 31, },
+ [10] = { spiritReservationFlat = 30, levelRequirement = 36, },
+ [11] = { spiritReservationFlat = 30, levelRequirement = 41, },
+ [12] = { spiritReservationFlat = 30, levelRequirement = 46, },
+ [13] = { spiritReservationFlat = 30, levelRequirement = 52, },
+ [14] = { spiritReservationFlat = 30, levelRequirement = 58, },
+ [15] = { spiritReservationFlat = 30, levelRequirement = 64, },
+ [16] = { spiritReservationFlat = 30, levelRequirement = 66, },
+ [17] = { spiritReservationFlat = 30, levelRequirement = 72, },
+ [18] = { spiritReservationFlat = 30, levelRequirement = 78, },
+ [19] = { spiritReservationFlat = 30, levelRequirement = 84, },
+ [20] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [21] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [22] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [23] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [24] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [25] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [26] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [27] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [28] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [29] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [30] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [31] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [32] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [33] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [34] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [35] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [36] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [37] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [38] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [39] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ [40] = { spiritReservationFlat = 30, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Iron Ward",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ stats = {
+ "warding_steel_maximum_stored_mitigated_physical_damage",
+ "warding_steel_gains_%_of_damage_from_mitigated_physical_damage",
+ "base_deal_no_damage",
+ "quality_display_warding_steel_is_gem",
+ },
+ levels = {
+ [1] = { 65, 50, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 116, 55, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 195, 60, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 296, 65, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 432, 70, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 602, 75, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 828, 80, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 1124, 85, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 1497, 90, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 1980, 95, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 2589, 100, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 3359, 105, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 4335, 110, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 5555, 115, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7092, 120, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 9029, 125, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 11451, 130, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 14457, 135, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 18213, 140, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 22886, 145, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 23858, 150, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 25868, 155, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 29481, 160, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 33951, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 39480, 170, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 41454, 175, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 43526, 180, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 45702, 185, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 47988, 190, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 50388, 195, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 52905, 197, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 55551, 200, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 58329, 202, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 61245, 205, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 64308, 207, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 67524, 210, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 70901, 212, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 74445, 215, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 78167, 217, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 82074, 220, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["IronWardNovaPlayer"] = {
+ name = "Iron Ward",
+ hidden = true,
+ skillTypes = { [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Nova] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Damage] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_hit_damage_stun_multiplier_+%_final", 2.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Combust",
- baseEffectiveness = 1.4099999666214,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "infernal_cry_corpse_explosion",
+ label = "Iron Ward",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "warding_steel_nova",
baseFlags = {
- area = true,
hit = true,
+ area = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "infernal_cry_explosion_fire_damage_+%_final_per_corpse_power", 10 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "warding_steel_area_of_effect_+%_final_per_charge_%", 2 },
+ { "active_skill_hit_damage_stun_multiplier_+%_final", 200 },
},
stats = {
- "secondary_minimum_base_fire_damage",
- "secondary_maximum_base_fire_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "damage_cannot_be_reflected",
"is_area_damage",
- "triggered_by_infernal_cry",
"display_statset_hide_usage_stats",
- "display_skill_deals_secondary_damage",
+ "can_perform_skill_while_moving",
},
levels = {
- [1] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 16, 23, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 53, 79, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 73, 109, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 80, 120, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 88, 131, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 120, 180, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 138, 207, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 148, 221, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 177, 266, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 188, 282, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 199, 298, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 210, 315, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 244, 367, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 269, 403, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 281, 422, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 294, 442, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 308, 461, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 321, 482, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 335, 502, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 349, 523, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -4296,7 +5862,7 @@ skills["LeapSlamPlayer"] = {
baseTypeName = "Leap Slam",
color = 1,
description = "Jump into the air, damaging and Knocking Back enemies with your mace where you land. Enemies you would land on are\npushed out of the way.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Travel] = true, [SkillType.Jumping] = true, [SkillType.ConsumesFullyBrokenArmour] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Travel] = true, [SkillType.Jumping] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -4308,44 +5874,44 @@ skills["LeapSlamPlayer"] = {
levels = {
[1] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 14, }, },
[2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 24, }, },
- [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 27, }, },
- [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 30, }, },
- [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 33, }, },
- [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 37, }, },
- [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 41, }, },
- [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 45, }, },
- [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 50, }, },
- [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 56, }, },
- [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 69, }, },
+ [3] = { baseMultiplier = 1.34, levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { baseMultiplier = 1.47, levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { baseMultiplier = 1.6, levelRequirement = 14, cost = { Mana = 24, }, },
+ [6] = { baseMultiplier = 1.73, levelRequirement = 18, cost = { Mana = 27, }, },
+ [7] = { baseMultiplier = 1.87, levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { baseMultiplier = 2, levelRequirement = 26, cost = { Mana = 34, }, },
+ [9] = { baseMultiplier = 2.12, levelRequirement = 31, cost = { Mana = 37, }, },
+ [10] = { baseMultiplier = 2.26, levelRequirement = 36, cost = { Mana = 41, }, },
+ [11] = { baseMultiplier = 2.41, levelRequirement = 41, cost = { Mana = 45, }, },
+ [12] = { baseMultiplier = 2.57, levelRequirement = 46, cost = { Mana = 50, }, },
+ [13] = { baseMultiplier = 2.74, levelRequirement = 52, cost = { Mana = 54, }, },
+ [14] = { baseMultiplier = 2.93, levelRequirement = 58, cost = { Mana = 59, }, },
+ [15] = { baseMultiplier = 3.13, levelRequirement = 64, cost = { Mana = 65, }, },
+ [16] = { baseMultiplier = 3.36, levelRequirement = 66, cost = { Mana = 70, }, },
[17] = { baseMultiplier = 3.61, levelRequirement = 72, cost = { Mana = 76, }, },
- [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 85, }, },
- [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 94, }, },
- [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 104, }, },
- [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 115, }, },
- [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 128, }, },
- [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 142, }, },
- [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 157, }, },
- [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 174, }, },
- [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 193, }, },
- [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 214, }, },
- [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 237, }, },
- [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 263, }, },
- [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 291, }, },
- [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 323, }, },
- [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 358, }, },
- [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 396, }, },
- [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 439, }, },
- [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 487, }, },
- [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 539, }, },
- [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 598, }, },
- [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 662, }, },
- [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 734, }, },
- [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 813, }, },
+ [18] = { baseMultiplier = 3.87, levelRequirement = 78, cost = { Mana = 83, }, },
+ [19] = { baseMultiplier = 4.17, levelRequirement = 84, cost = { Mana = 90, }, },
+ [20] = { baseMultiplier = 4.49, levelRequirement = 90, cost = { Mana = 97, }, },
+ [21] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 104, }, },
+ [22] = { baseMultiplier = 5.21, levelRequirement = 90, cost = { Mana = 113, }, },
+ [23] = { baseMultiplier = 5.62, levelRequirement = 90, cost = { Mana = 121, }, },
+ [24] = { baseMultiplier = 6.05, levelRequirement = 90, cost = { Mana = 131, }, },
+ [25] = { baseMultiplier = 6.52, levelRequirement = 90, cost = { Mana = 140, }, },
+ [26] = { baseMultiplier = 7.02, levelRequirement = 90, cost = { Mana = 151, }, },
+ [27] = { baseMultiplier = 7.56, levelRequirement = 90, cost = { Mana = 162, }, },
+ [28] = { baseMultiplier = 8.15, levelRequirement = 90, cost = { Mana = 173, }, },
+ [29] = { baseMultiplier = 8.78, levelRequirement = 90, cost = { Mana = 186, }, },
+ [30] = { baseMultiplier = 9.46, levelRequirement = 90, cost = { Mana = 199, }, },
+ [31] = { baseMultiplier = 10.19, levelRequirement = 90, cost = { Mana = 212, }, },
+ [32] = { baseMultiplier = 10.97, levelRequirement = 90, cost = { Mana = 227, }, },
+ [33] = { baseMultiplier = 11.82, levelRequirement = 90, cost = { Mana = 242, }, },
+ [34] = { baseMultiplier = 12.74, levelRequirement = 90, cost = { Mana = 259, }, },
+ [35] = { baseMultiplier = 13.72, levelRequirement = 90, cost = { Mana = 276, }, },
+ [36] = { baseMultiplier = 14.78, levelRequirement = 90, cost = { Mana = 294, }, },
+ [37] = { baseMultiplier = 15.92, levelRequirement = 90, cost = { Mana = 314, }, },
+ [38] = { baseMultiplier = 17.15, levelRequirement = 90, cost = { Mana = 334, }, },
+ [39] = { baseMultiplier = 18.48, levelRequirement = 90, cost = { Mana = 356, }, },
+ [40] = { baseMultiplier = 19.91, levelRequirement = 90, cost = { Mana = 379, }, },
},
statSets = {
[1] = {
@@ -4421,190 +5987,12 @@ skills["LeapSlamPlayer"] = {
},
}
}
-skills["MetaCastLightningSpellOnHitPlayer"] = {
- name = "Thundergod's Wrath",
- baseTypeName = "Thundergod's Wrath",
- color = 1,
- description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Lightning spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
- castTime = 0,
- qualityStats = {
- { "energy_generated_+%", 0.75 },
- },
- levels = {
- [1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 3, },
- [3] = { levelRequirement = 6, },
- [4] = { levelRequirement = 10, },
- [5] = { levelRequirement = 14, },
- [6] = { levelRequirement = 18, },
- [7] = { levelRequirement = 22, },
- [8] = { levelRequirement = 26, },
- [9] = { levelRequirement = 31, },
- [10] = { levelRequirement = 36, },
- [11] = { levelRequirement = 41, },
- [12] = { levelRequirement = 46, },
- [13] = { levelRequirement = 52, },
- [14] = { levelRequirement = 58, },
- [15] = { levelRequirement = 64, },
- [16] = { levelRequirement = 66, },
- [17] = { levelRequirement = 72, },
- [18] = { levelRequirement = 78, },
- [19] = { levelRequirement = 84, },
- [20] = { levelRequirement = 90, },
- [21] = { levelRequirement = 90, },
- [22] = { levelRequirement = 90, },
- [23] = { levelRequirement = 90, },
- [24] = { levelRequirement = 90, },
- [25] = { levelRequirement = 90, },
- [26] = { levelRequirement = 90, },
- [27] = { levelRequirement = 90, },
- [28] = { levelRequirement = 90, },
- [29] = { levelRequirement = 90, },
- [30] = { levelRequirement = 90, },
- [31] = { levelRequirement = 90, },
- [32] = { levelRequirement = 90, },
- [33] = { levelRequirement = 90, },
- [34] = { levelRequirement = 90, },
- [35] = { levelRequirement = 90, },
- [36] = { levelRequirement = 90, },
- [37] = { levelRequirement = 90, },
- [38] = { levelRequirement = 90, },
- [39] = { levelRequirement = 90, },
- [40] = { levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Thundergod's Wrath",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "cast_lightning_spell_on_hit",
- baseFlags = {
- spell = true,
- },
- constantStats = {
- { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 },
- { "skill_desired_amount_override", 1 },
- },
- stats = {
- "energy_generated_+%",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
- "base_deal_no_damage",
- },
- levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
- },
- },
- [2] = {
- label = "Thundergod's Wrath",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "cast_lightning_spell_on_hit",
- baseFlags = {
- },
- constantStats = {
- { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 },
- { "skill_desired_amount_override", 1 },
- { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
- },
- stats = {
- "energy_generated_+%",
- "damage_+%",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
- "base_deal_no_damage",
- "triggered_by_generic_ongoing_trigger",
- "no_cost",
- },
- levels = {
- [1] = { 0, 10, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 20, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, 30, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, 40, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, 50, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, 60, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, 70, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, 80, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 24, 90, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, 100, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, 110, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, 120, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, 130, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, 140, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 42, 150, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, 160, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 48, 170, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, 180, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 54, 190, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 57, 200, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, 210, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 63, 220, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 66, 230, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 69, 240, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 72, 250, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 75, 260, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 78, 270, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, 280, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 84, 290, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 87, 300, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, 310, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 93, 320, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 96, 330, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 99, 340, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 102, 350, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 105, 360, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 108, 370, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 111, 380, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 114, 390, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 117, 400, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
skills["ArmourPiercingBoltsAmmoPlayer"] = {
name = "Load Armour Piercing Rounds",
baseTypeName = "Load Armour Piercing Rounds",
color = 1,
- description = "Load your Crossbow with a clip of bolts that can be fired rapidly and Break enemy Armour. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with a clip of bolts that can be fired rapidly and Break enemy Armour. Using this Skill again reloads the clip.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -4615,43 +6003,43 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = {
[1] = { levelRequirement = 0, cost = { Mana = 8, }, },
[2] = { levelRequirement = 3, cost = { Mana = 9, }, },
[3] = { levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 14, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 17, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 23, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 26, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 28, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 32, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 35, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 39, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 12, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 17, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 19, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 21, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 23, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 28, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 31, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 33, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 37, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 40, }, },
[17] = { levelRequirement = 72, cost = { Mana = 43, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 48, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 53, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 59, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 65, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 72, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 80, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 89, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 99, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 121, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 134, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 149, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 165, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 183, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 203, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 225, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 249, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 306, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 339, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 376, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 417, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 462, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 47, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 51, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 55, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 59, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 64, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 69, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 74, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 105, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 113, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 120, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 129, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 138, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 147, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 157, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 167, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 190, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 202, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 215, }, },
},
statSets = {
[1] = {
@@ -4662,9 +6050,6 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = {
},
constantStats = {
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"base_number_of_crossbow_bolts",
@@ -4672,6 +6057,7 @@ skills["ArmourPiercingBoltsAmmoPlayer"] = {
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { 12, statInterpolation = { 1, }, actorLevel = 1, },
@@ -4722,13 +6108,13 @@ skills["ArmourPiercingBoltsPlayer"] = {
name = "Armour Piercing Rounds",
hidden = true,
description = "Rapidly fire bolts that Break enemy Armour. Can fire a limited number of bolts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Physical] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
- { "armour_break_amount_+%", 1.5 },
+ { "armour_break_amount_+%", 1 },
},
levels = {
[1] = { attackSpeedMultiplier = 325, baseMultiplier = 0.25, levelRequirement = 0, },
@@ -4806,6 +6192,7 @@ skills["ArmourPiercingBoltsPlayer"] = {
"disable_visual_hit_effect",
"action_do_not_face_target",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 1, statInterpolation = { 1, }, actorLevel = 1, },
@@ -4857,7 +6244,7 @@ skills["ExplosiveShotAmmoPlayer"] = {
baseTypeName = "Load Explosive Shot",
color = 1,
description = "Load your Crossbow with flaming bolts that explode on impact. The explosion will cause any Grenades in its area of effect to also explode.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -4868,43 +6255,43 @@ skills["ExplosiveShotAmmoPlayer"] = {
[1] = { levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { levelRequirement = 3, cost = { Mana = 10, }, },
[3] = { levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 18, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 20, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 22, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 27, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 30, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 33, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 37, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 41, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 45, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 16, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 18, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 20, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 27, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 30, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 33, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 36, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 39, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 42, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 46, }, },
[17] = { levelRequirement = 72, cost = { Mana = 50, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 56, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 62, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 68, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 76, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 84, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 93, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 103, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 114, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 127, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 141, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 156, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 173, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 192, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 212, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 235, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 261, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 289, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 320, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 355, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 394, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 436, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 483, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 536, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 54, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 59, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 64, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 69, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 74, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 86, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 99, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 106, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 114, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 122, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 131, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 160, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 170, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 182, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 194, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 207, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 220, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 234, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 250, }, },
},
statSets = {
[1] = {
@@ -4916,9 +6303,6 @@ skills["ExplosiveShotAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
{ "active_skill_reload_speed_+%_final", -30 },
},
stats = {
@@ -4926,6 +6310,7 @@ skills["ExplosiveShotAmmoPlayer"] = {
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4976,7 +6361,7 @@ skills["ExplosiveShotPlayer"] = {
name = "Explosive Shot",
hidden = true,
description = "Fire a flaming bolt that explodes on impact. The explosion will cause any Grenades in its area of effect to also explode.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -5194,55 +6579,55 @@ skills["FragmentationRoundsAmmoPlayer"] = {
name = "Load Fragmentation Rounds",
baseTypeName = "Load Fragmentation Rounds",
color = 1,
- description = "Load your Crossbow with Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode. These fragments can Merge.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
- ["Crossbow"] = true,
- },
- castTime = 0.8,
- qualityStats = {
- },
- levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 12, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 13, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 15, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 16, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 18, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 20, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 22, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 25, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 28, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 31, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 34, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 38, }, },
+ ["Crossbow"] = true,
+ },
+ castTime = 0.8,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 7, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 9, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 10, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 12, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 13, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 15, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 16, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 18, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 20, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 23, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 25, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 27, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 30, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 33, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 36, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 39, }, },
[17] = { levelRequirement = 72, cost = { Mana = 42, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 47, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 52, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 57, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 64, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 71, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 78, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 87, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 96, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 107, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 118, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 131, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 145, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 161, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 178, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 198, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 243, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 269, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 298, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 331, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 367, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 406, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 450, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 46, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 49, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 53, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 58, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 62, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 67, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 72, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 78, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 83, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 89, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 96, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 103, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 118, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 126, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 143, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 153, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 163, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 174, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 185, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 197, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 210, }, },
},
statSets = {
[1] = {
@@ -5254,15 +6639,13 @@ skills["FragmentationRoundsAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5312,8 +6695,8 @@ skills["FragmentationRoundsAmmoPlayer"] = {
skills["FragmentationRoundsPlayer"] = {
name = "Fragmentation Rounds",
hidden = true,
- description = "Fire Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of shrapnel. Bolts that hit an Ice Crystal cause it to explode.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFreeze] = true, },
+ description = "Fire Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of ice shards. These fragments can Merge.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Area] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -5367,7 +6750,7 @@ skills["FragmentationRoundsPlayer"] = {
[1] = {
label = "Projectile",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "burst_shot_piercing",
+ statDescriptionScope = "burst_shot_piercing_statset_0",
baseFlags = {
attack = true,
projectile = true,
@@ -5404,6 +6787,7 @@ skills["FragmentationRoundsPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
"base_consume_enemy_freeze_on_hit",
"never_freeze",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5451,7 +6835,7 @@ skills["FragmentationRoundsPlayer"] = {
[2] = {
label = "Vs Frozen",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "burst_shot_piercing",
+ statDescriptionScope = "burst_shot_piercing_statset_1",
baseFlags = {
attack = true,
projectile = true,
@@ -5469,7 +6853,10 @@ skills["FragmentationRoundsPlayer"] = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
- { "active_skill_base_area_of_effect_radius", 18 },
+ { "active_skill_base_area_of_effect_radius", 20 },
+ { "skill_specific_stat_description_mode", 1 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "frag_rounds_damage_+%_final_if_created_from_unique", 50 },
},
stats = {
"base_is_projectile",
@@ -5484,6 +6871,7 @@ skills["FragmentationRoundsPlayer"] = {
"can_perform_skill_while_moving",
"base_skill_show_average_damage_instead_of_dps",
"never_freeze",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
"projectiles_are_not_fired",
@@ -5537,56 +6925,55 @@ skills["GalvanicShardsAmmoPlayer"] = {
name = "Load Galvanic Shards",
baseTypeName = "Load Galvanic Shards",
color = 1,
- description = "Load your Crossbow with a clip of charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. These fragments can Merge.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 0.6,
qualityStats = {
- { "base_number_of_crossbow_bolts", 0.1 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 8, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 9, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 10, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 11, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 13, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 14, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 16, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 17, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 19, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 21, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 24, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 26, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 29, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 33, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 36, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 40, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 44, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 49, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 55, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 61, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 67, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 75, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 83, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 92, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 113, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 139, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 154, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 170, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 189, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 209, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 232, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 257, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 285, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 316, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 350, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 388, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 430, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 476, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 15, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 27, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 32, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 35, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 38, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 41, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 44, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 48, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 52, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 56, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 60, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 64, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 69, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 74, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 91, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 119, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 127, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 136, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 145, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 154, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 164, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 175, }, },
},
statSets = {
[1] = {
@@ -5596,12 +6983,8 @@ skills["GalvanicShardsAmmoPlayer"] = {
baseFlags = {
},
constantStats = {
- { "base_number_of_crossbow_bolts", 5 },
+ { "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_reload_speed_+%_final", -50 },
},
stats = {
"action_can_be_used_in_aiming_stance",
@@ -5609,6 +6992,7 @@ skills["GalvanicShardsAmmoPlayer"] = {
"base_deal_no_damage",
"display_statset_hide_usage_stats",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5658,55 +7042,56 @@ skills["GalvanicShardsAmmoPlayer"] = {
skills["GalvanicShardsPlayer"] = {
name = "Galvanic Shards",
hidden = true,
- description = "Rapidly fire charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Can fire a limited number of bursts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Rapidly fire charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Can fire a limited number of bursts before needing to reload. These fragments can Merge.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
+ { "base_number_of_projectiles", 0.1 },
},
levels = {
- [1] = { attackSpeedMultiplier = 100, baseMultiplier = 0.1, levelRequirement = 0, },
- [2] = { attackSpeedMultiplier = 100, baseMultiplier = 0.11, levelRequirement = 0, },
- [3] = { attackSpeedMultiplier = 100, baseMultiplier = 0.12, levelRequirement = 0, },
- [4] = { attackSpeedMultiplier = 100, baseMultiplier = 0.13, levelRequirement = 0, },
- [5] = { attackSpeedMultiplier = 100, baseMultiplier = 0.14, levelRequirement = 0, },
- [6] = { attackSpeedMultiplier = 100, baseMultiplier = 0.15, levelRequirement = 0, },
- [7] = { attackSpeedMultiplier = 100, baseMultiplier = 0.16, levelRequirement = 0, },
- [8] = { attackSpeedMultiplier = 100, baseMultiplier = 0.17, levelRequirement = 0, },
- [9] = { attackSpeedMultiplier = 100, baseMultiplier = 0.18, levelRequirement = 0, },
- [10] = { attackSpeedMultiplier = 100, baseMultiplier = 0.19, levelRequirement = 0, },
- [11] = { attackSpeedMultiplier = 100, baseMultiplier = 0.2, levelRequirement = 0, },
- [12] = { attackSpeedMultiplier = 100, baseMultiplier = 0.21, levelRequirement = 0, },
- [13] = { attackSpeedMultiplier = 100, baseMultiplier = 0.22, levelRequirement = 0, },
- [14] = { attackSpeedMultiplier = 100, baseMultiplier = 0.23, levelRequirement = 0, },
- [15] = { attackSpeedMultiplier = 100, baseMultiplier = 0.24, levelRequirement = 0, },
- [16] = { attackSpeedMultiplier = 100, baseMultiplier = 0.26, levelRequirement = 0, },
- [17] = { attackSpeedMultiplier = 100, baseMultiplier = 0.27, levelRequirement = 0, },
- [18] = { attackSpeedMultiplier = 100, baseMultiplier = 0.28, levelRequirement = 0, },
- [19] = { attackSpeedMultiplier = 100, baseMultiplier = 0.3, levelRequirement = 0, },
- [20] = { attackSpeedMultiplier = 100, baseMultiplier = 0.31, levelRequirement = 0, },
- [21] = { attackSpeedMultiplier = 100, baseMultiplier = 0.33, levelRequirement = 0, },
- [22] = { attackSpeedMultiplier = 100, baseMultiplier = 0.34, levelRequirement = 0, },
- [23] = { attackSpeedMultiplier = 100, baseMultiplier = 0.36, levelRequirement = 0, },
- [24] = { attackSpeedMultiplier = 100, baseMultiplier = 0.38, levelRequirement = 0, },
- [25] = { attackSpeedMultiplier = 100, baseMultiplier = 0.4, levelRequirement = 0, },
- [26] = { attackSpeedMultiplier = 100, baseMultiplier = 0.42, levelRequirement = 0, },
- [27] = { attackSpeedMultiplier = 100, baseMultiplier = 0.44, levelRequirement = 0, },
- [28] = { attackSpeedMultiplier = 100, baseMultiplier = 0.46, levelRequirement = 0, },
- [29] = { attackSpeedMultiplier = 100, baseMultiplier = 0.48, levelRequirement = 0, },
- [30] = { attackSpeedMultiplier = 100, baseMultiplier = 0.51, levelRequirement = 0, },
- [31] = { attackSpeedMultiplier = 100, baseMultiplier = 0.53, levelRequirement = 0, },
- [32] = { attackSpeedMultiplier = 100, baseMultiplier = 0.56, levelRequirement = 0, },
- [33] = { attackSpeedMultiplier = 100, baseMultiplier = 0.59, levelRequirement = 0, },
- [34] = { attackSpeedMultiplier = 100, baseMultiplier = 0.62, levelRequirement = 0, },
- [35] = { attackSpeedMultiplier = 100, baseMultiplier = 0.65, levelRequirement = 0, },
- [36] = { attackSpeedMultiplier = 100, baseMultiplier = 0.68, levelRequirement = 0, },
- [37] = { attackSpeedMultiplier = 100, baseMultiplier = 0.71, levelRequirement = 0, },
- [38] = { attackSpeedMultiplier = 100, baseMultiplier = 0.75, levelRequirement = 0, },
- [39] = { attackSpeedMultiplier = 100, baseMultiplier = 0.79, levelRequirement = 0, },
- [40] = { attackSpeedMultiplier = 100, baseMultiplier = 0.83, levelRequirement = 0, },
+ [1] = { baseMultiplier = 0.15, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.16, levelRequirement = 0, },
+ [3] = { baseMultiplier = 0.18, levelRequirement = 0, },
+ [4] = { baseMultiplier = 0.2, levelRequirement = 0, },
+ [5] = { baseMultiplier = 0.21, levelRequirement = 0, },
+ [6] = { baseMultiplier = 0.23, levelRequirement = 0, },
+ [7] = { baseMultiplier = 0.25, levelRequirement = 0, },
+ [8] = { baseMultiplier = 0.27, levelRequirement = 0, },
+ [9] = { baseMultiplier = 0.28, levelRequirement = 0, },
+ [10] = { baseMultiplier = 0.3, levelRequirement = 0, },
+ [11] = { baseMultiplier = 0.31, levelRequirement = 0, },
+ [12] = { baseMultiplier = 0.33, levelRequirement = 0, },
+ [13] = { baseMultiplier = 0.35, levelRequirement = 0, },
+ [14] = { baseMultiplier = 0.37, levelRequirement = 0, },
+ [15] = { baseMultiplier = 0.4, levelRequirement = 0, },
+ [16] = { baseMultiplier = 0.42, levelRequirement = 0, },
+ [17] = { baseMultiplier = 0.45, levelRequirement = 0, },
+ [18] = { baseMultiplier = 0.48, levelRequirement = 0, },
+ [19] = { baseMultiplier = 0.51, levelRequirement = 0, },
+ [20] = { baseMultiplier = 0.54, levelRequirement = 0, },
+ [21] = { baseMultiplier = 0.58, levelRequirement = 0, },
+ [22] = { baseMultiplier = 0.62, levelRequirement = 0, },
+ [23] = { baseMultiplier = 0.66, levelRequirement = 0, },
+ [24] = { baseMultiplier = 0.7, levelRequirement = 0, },
+ [25] = { baseMultiplier = 0.75, levelRequirement = 0, },
+ [26] = { baseMultiplier = 0.8, levelRequirement = 0, },
+ [27] = { baseMultiplier = 0.85, levelRequirement = 0, },
+ [28] = { baseMultiplier = 0.91, levelRequirement = 0, },
+ [29] = { baseMultiplier = 0.97, levelRequirement = 0, },
+ [30] = { baseMultiplier = 1.04, levelRequirement = 0, },
+ [31] = { baseMultiplier = 1.1, levelRequirement = 0, },
+ [32] = { baseMultiplier = 1.18, levelRequirement = 0, },
+ [33] = { baseMultiplier = 1.26, levelRequirement = 0, },
+ [34] = { baseMultiplier = 1.34, levelRequirement = 0, },
+ [35] = { baseMultiplier = 1.43, levelRequirement = 0, },
+ [36] = { baseMultiplier = 1.52, levelRequirement = 0, },
+ [37] = { baseMultiplier = 1.63, levelRequirement = 0, },
+ [38] = { baseMultiplier = 1.73, levelRequirement = 0, },
+ [39] = { baseMultiplier = 1.85, levelRequirement = 0, },
+ [40] = { baseMultiplier = 1.97, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -5722,7 +7107,7 @@ skills["GalvanicShardsPlayer"] = {
{ "projectiles_normal_distribution_height_standard_deviation", 20 },
{ "projectiles_normal_distribution_spread_standard_deviation", 14 },
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "base_number_of_projectiles", 6 },
+ { "base_number_of_projectiles", 8 },
{ "projectile_distance_variance", 10 },
{ "active_skill_projectile_speed_+%_variation_final", 40 },
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 },
@@ -5745,6 +7130,7 @@ skills["GalvanicShardsPlayer"] = {
"can_perform_skill_while_moving",
"base_projectiles_cannot_chain",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5822,49 +7208,50 @@ skills["GalvanicShardsPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"can_perform_skill_while_moving",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { baseMultiplier = 0.5, actorLevel = 1, },
- [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.6, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.71, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.82, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.87, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.91, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.96, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.01, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.06, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.11, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.16, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.22, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 1.28, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.35, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.41, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.49, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.56, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.64, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 1.72, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 1.81, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 1.9, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 1.99, actorLevel = 136.875, },
- [26] = { baseMultiplier = 2.09, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 2.19, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 2.3, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 2.42, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 2.54, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 2.67, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 2.8, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 2.94, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 3.09, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 3.24, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 3.4, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 3.57, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 3.75, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 3.94, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 4.14, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.75, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.16, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.25, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.33, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.4, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.48, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.57, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.66, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.76, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.87, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.98, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 2.11, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 2.24, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 2.39, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.55, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.72, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 2.9, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 3.09, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 3.3, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 3.52, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 3.75, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 4, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 4.27, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 4.55, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 4.85, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 5.18, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 5.52, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 5.89, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 6.28, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 6.7, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 7.15, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 7.62, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 8.13, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 8.67, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 9.25, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 9.87, actorLevel = 288.29998779297, },
},
},
}
@@ -5874,7 +7261,7 @@ skills["GlacialBoltAmmoPlayer"] = {
baseTypeName = "Load Glacial Bolt",
color = 1,
description = "Load your Crossbow with icy bolts that create two walls of Ice Crystals at the end of their flight.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -5886,43 +7273,43 @@ skills["GlacialBoltAmmoPlayer"] = {
[1] = { levelRequirement = 0, cost = { Mana = 7, }, },
[2] = { levelRequirement = 3, cost = { Mana = 8, }, },
[3] = { levelRequirement = 6, cost = { Mana = 9, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 10, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 15, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 17, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 21, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 23, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 25, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 28, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 31, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 11, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 12, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 13, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 15, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 17, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 19, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 21, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 23, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 25, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 27, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 30, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 33, }, },
[16] = { levelRequirement = 66, cost = { Mana = 35, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 38, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 43, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 47, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 53, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 58, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 65, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 72, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 79, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 88, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 98, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 108, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 120, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 133, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 147, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 163, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 181, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 201, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 223, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 247, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 273, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 303, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 336, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 372, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 413, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 39, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 42, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 45, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 49, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 53, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 57, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 61, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 66, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 71, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 76, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 82, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 94, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 101, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 108, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 115, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 131, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 159, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 170, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 181, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 192, }, },
},
statSets = {
[1] = {
@@ -5934,15 +7321,13 @@ skills["GlacialBoltAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5993,7 +7378,7 @@ skills["GlacialBoltPlayer"] = {
name = "Glacial Bolt",
hidden = true,
description = "Fire an icy bolt that creates two walls of Ice Crystals at the end of its flight.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Wall] = true, [SkillType.SupportedByFountains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Wall] = true, [SkillType.SupportedByFountains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6146,6 +7531,9 @@ skills["GlacialBoltPlayer"] = {
{ "wall_maximum_length", 63 },
{ "freezing_bolt_wall_maximum_length", 231 },
{ "active_skill_base_area_of_effect_radius", 18 },
+ { "ice_crystal_shatter_detonation_damage_+%_final", 0 },
+ { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 50 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
},
stats = {
"frost_wall_maximum_life",
@@ -6164,6 +7552,7 @@ skills["GlacialBoltPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
"is_area_damage",
"display_statset_hide_usage_stats",
+ "is_ice_crystal_explosion",
},
levels = {
[1] = { 36, baseMultiplier = 0.6, statInterpolation = { 1, }, actorLevel = 1, },
@@ -6215,7 +7604,7 @@ skills["HailstormRoundsAmmoPlayer"] = {
baseTypeName = "Load Hailstorm Rounds",
color = 1,
description = "Passively generate bolts of ice at a frequency equal to reload time, up to a cap. Activate to Load the accumulated bolts into your Crossbow. All loaded bolts are fired at once, causing them to rain down over the target area.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6224,46 +7613,46 @@ skills["HailstormRoundsAmmoPlayer"] = {
{ "base_number_of_crossbow_bolts", 0.25 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 29, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 32, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 36, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 40, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 44, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 49, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 54, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 60, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 67, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 74, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 82, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 91, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 101, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 112, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 124, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 137, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 28, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 33, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 37, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 43, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 48, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 54, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 60, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 67, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 74, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 82, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 90, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 99, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 108, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 118, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 129, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 140, }, },
[17] = { levelRequirement = 72, cost = { Mana = 152, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 169, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 187, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 207, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 230, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 254, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 282, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 313, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 346, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 384, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 425, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 471, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 522, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 579, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 642, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 711, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 788, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 873, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 968, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1072, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1188, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1317, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1459, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1617, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 165, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 179, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 193, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 224, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 242, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 260, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 279, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 300, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 322, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 345, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 369, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 395, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 423, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 452, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 483, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 515, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 550, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 586, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 624, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 665, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 708, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 754, }, },
},
statSets = {
[1] = {
@@ -6274,10 +7663,7 @@ skills["HailstormRoundsAmmoPlayer"] = {
},
constantStats = {
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_reload_speed_+%_final", -50 },
+ { "active_skill_reload_speed_+%_final", 100 },
},
stats = {
"base_number_of_crossbow_bolts",
@@ -6289,6 +7675,7 @@ skills["HailstormRoundsAmmoPlayer"] = {
"crossbow_ammo_skill_has_passive_reloading",
"display_statset_hide_usage_stats",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { 16, statInterpolation = { 1, }, actorLevel = 1, },
@@ -6338,8 +7725,8 @@ skills["HailstormRoundsAmmoPlayer"] = {
skills["HailstormRoundsPlayer"] = {
name = "Hailstorm Rounds",
hidden = true,
- description = "Fire all loaded bolts into the sky, causing them to rain down over the target area.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, },
+ description = "Fire all loaded bolts into the sky, causing them to rain down over the target area, starting at the centre and spreading outward.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Rain] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6347,46 +7734,46 @@ skills["HailstormRoundsPlayer"] = {
qualityStats = {
},
levels = {
- [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 25, }, },
- [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 27, }, },
- [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 31, }, },
- [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 34, }, },
- [5] = { attackSpeedMultiplier = -45, baseMultiplier = 0.73, levelRequirement = 0, cost = { Mana = 38, }, },
- [6] = { attackSpeedMultiplier = -45, baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 43, }, },
- [7] = { attackSpeedMultiplier = -45, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 48, }, },
- [8] = { attackSpeedMultiplier = -45, baseMultiplier = 0.91, levelRequirement = 0, cost = { Mana = 53, }, },
- [9] = { attackSpeedMultiplier = -45, baseMultiplier = 0.97, levelRequirement = 0, cost = { Mana = 59, }, },
- [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.03, levelRequirement = 0, cost = { Mana = 66, }, },
- [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.09, levelRequirement = 0, cost = { Mana = 74, }, },
- [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.17, levelRequirement = 0, cost = { Mana = 82, }, },
- [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.25, levelRequirement = 0, cost = { Mana = 92, }, },
- [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.33, levelRequirement = 0, cost = { Mana = 102, }, },
- [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.42, levelRequirement = 0, cost = { Mana = 114, }, },
- [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.53, levelRequirement = 0, cost = { Mana = 127, }, },
- [17] = { attackSpeedMultiplier = -45, baseMultiplier = 1.64, levelRequirement = 0, cost = { Mana = 142, }, },
- [18] = { attackSpeedMultiplier = -45, baseMultiplier = 1.76, levelRequirement = 0, cost = { Mana = 159, }, },
- [19] = { attackSpeedMultiplier = -45, baseMultiplier = 1.89, levelRequirement = 0, cost = { Mana = 177, }, },
- [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.04, levelRequirement = 0, cost = { Mana = 197, }, },
- [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.2, levelRequirement = 0, cost = { Mana = 220, }, },
- [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.37, levelRequirement = 0, cost = { Mana = 245, }, },
- [23] = { attackSpeedMultiplier = -45, baseMultiplier = 2.55, levelRequirement = 0, cost = { Mana = 274, }, },
- [24] = { attackSpeedMultiplier = -45, baseMultiplier = 2.75, levelRequirement = 0, cost = { Mana = 305, }, },
- [25] = { attackSpeedMultiplier = -45, baseMultiplier = 2.96, levelRequirement = 0, cost = { Mana = 340, }, },
- [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.19, levelRequirement = 0, cost = { Mana = 380, }, },
- [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.44, levelRequirement = 0, cost = { Mana = 423, }, },
- [28] = { attackSpeedMultiplier = -45, baseMultiplier = 3.7, levelRequirement = 0, cost = { Mana = 472, }, },
- [29] = { attackSpeedMultiplier = -45, baseMultiplier = 3.99, levelRequirement = 0, cost = { Mana = 526, }, },
- [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.3, levelRequirement = 0, cost = { Mana = 587, }, },
- [31] = { attackSpeedMultiplier = -45, baseMultiplier = 4.63, levelRequirement = 0, cost = { Mana = 654, }, },
- [32] = { attackSpeedMultiplier = -45, baseMultiplier = 4.99, levelRequirement = 0, cost = { Mana = 730, }, },
- [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.37, levelRequirement = 0, cost = { Mana = 814, }, },
- [34] = { attackSpeedMultiplier = -45, baseMultiplier = 5.79, levelRequirement = 0, cost = { Mana = 907, }, },
- [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.24, levelRequirement = 0, cost = { Mana = 1012, }, },
- [36] = { attackSpeedMultiplier = -45, baseMultiplier = 6.72, levelRequirement = 0, cost = { Mana = 1128, }, },
- [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.24, levelRequirement = 0, cost = { Mana = 1258, }, },
- [38] = { attackSpeedMultiplier = -45, baseMultiplier = 7.8, levelRequirement = 0, cost = { Mana = 1403, }, },
- [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.4, levelRequirement = 0, cost = { Mana = 1564, }, },
- [40] = { attackSpeedMultiplier = -45, baseMultiplier = 9.05, levelRequirement = 0, cost = { Mana = 1744, }, },
+ [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 24, }, },
+ [2] = { attackSpeedMultiplier = -45, baseMultiplier = 0.77, levelRequirement = 0, cost = { Mana = 28, }, },
+ [3] = { attackSpeedMultiplier = -45, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 32, }, },
+ [4] = { attackSpeedMultiplier = -45, baseMultiplier = 0.93, levelRequirement = 0, cost = { Mana = 36, }, },
+ [5] = { attackSpeedMultiplier = -45, levelRequirement = 0, cost = { Mana = 41, }, },
+ [6] = { attackSpeedMultiplier = -45, baseMultiplier = 1.08, levelRequirement = 0, cost = { Mana = 46, }, },
+ [7] = { attackSpeedMultiplier = -45, baseMultiplier = 1.16, levelRequirement = 0, cost = { Mana = 51, }, },
+ [8] = { attackSpeedMultiplier = -45, baseMultiplier = 1.24, levelRequirement = 0, cost = { Mana = 57, }, },
+ [9] = { attackSpeedMultiplier = -45, baseMultiplier = 1.31, levelRequirement = 0, cost = { Mana = 63, }, },
+ [10] = { attackSpeedMultiplier = -45, baseMultiplier = 1.38, levelRequirement = 0, cost = { Mana = 69, }, },
+ [11] = { attackSpeedMultiplier = -45, baseMultiplier = 1.46, levelRequirement = 0, cost = { Mana = 76, }, },
+ [12] = { attackSpeedMultiplier = -45, baseMultiplier = 1.55, levelRequirement = 0, cost = { Mana = 84, }, },
+ [13] = { attackSpeedMultiplier = -45, baseMultiplier = 1.64, levelRequirement = 0, cost = { Mana = 92, }, },
+ [14] = { attackSpeedMultiplier = -45, baseMultiplier = 1.74, levelRequirement = 0, cost = { Mana = 100, }, },
+ [15] = { attackSpeedMultiplier = -45, baseMultiplier = 1.85, levelRequirement = 0, cost = { Mana = 109, }, },
+ [16] = { attackSpeedMultiplier = -45, baseMultiplier = 1.97, levelRequirement = 0, cost = { Mana = 119, }, },
+ [17] = { attackSpeedMultiplier = -45, baseMultiplier = 2.09, levelRequirement = 0, cost = { Mana = 129, }, },
+ [18] = { attackSpeedMultiplier = -45, baseMultiplier = 2.23, levelRequirement = 0, cost = { Mana = 140, }, },
+ [19] = { attackSpeedMultiplier = -45, baseMultiplier = 2.38, levelRequirement = 0, cost = { Mana = 151, }, },
+ [20] = { attackSpeedMultiplier = -45, baseMultiplier = 2.54, levelRequirement = 0, cost = { Mana = 163, }, },
+ [21] = { attackSpeedMultiplier = -45, baseMultiplier = 2.7, levelRequirement = 0, cost = { Mana = 176, }, },
+ [22] = { attackSpeedMultiplier = -45, baseMultiplier = 2.88, levelRequirement = 0, cost = { Mana = 190, }, },
+ [23] = { attackSpeedMultiplier = -45, baseMultiplier = 3.08, levelRequirement = 0, cost = { Mana = 205, }, },
+ [24] = { attackSpeedMultiplier = -45, baseMultiplier = 3.28, levelRequirement = 0, cost = { Mana = 220, }, },
+ [25] = { attackSpeedMultiplier = -45, baseMultiplier = 3.5, levelRequirement = 0, cost = { Mana = 237, }, },
+ [26] = { attackSpeedMultiplier = -45, baseMultiplier = 3.73, levelRequirement = 0, cost = { Mana = 254, }, },
+ [27] = { attackSpeedMultiplier = -45, baseMultiplier = 3.98, levelRequirement = 0, cost = { Mana = 272, }, },
+ [28] = { attackSpeedMultiplier = -45, baseMultiplier = 4.25, levelRequirement = 0, cost = { Mana = 292, }, },
+ [29] = { attackSpeedMultiplier = -45, baseMultiplier = 4.53, levelRequirement = 0, cost = { Mana = 313, }, },
+ [30] = { attackSpeedMultiplier = -45, baseMultiplier = 4.83, levelRequirement = 0, cost = { Mana = 335, }, },
+ [31] = { attackSpeedMultiplier = -45, baseMultiplier = 5.15, levelRequirement = 0, cost = { Mana = 358, }, },
+ [32] = { attackSpeedMultiplier = -45, baseMultiplier = 5.5, levelRequirement = 0, cost = { Mana = 383, }, },
+ [33] = { attackSpeedMultiplier = -45, baseMultiplier = 5.86, levelRequirement = 0, cost = { Mana = 409, }, },
+ [34] = { attackSpeedMultiplier = -45, baseMultiplier = 6.25, levelRequirement = 0, cost = { Mana = 436, }, },
+ [35] = { attackSpeedMultiplier = -45, baseMultiplier = 6.67, levelRequirement = 0, cost = { Mana = 465, }, },
+ [36] = { attackSpeedMultiplier = -45, baseMultiplier = 7.12, levelRequirement = 0, cost = { Mana = 496, }, },
+ [37] = { attackSpeedMultiplier = -45, baseMultiplier = 7.59, levelRequirement = 0, cost = { Mana = 529, }, },
+ [38] = { attackSpeedMultiplier = -45, baseMultiplier = 8.09, levelRequirement = 0, cost = { Mana = 563, }, },
+ [39] = { attackSpeedMultiplier = -45, baseMultiplier = 8.63, levelRequirement = 0, cost = { Mana = 600, }, },
+ [40] = { attackSpeedMultiplier = -45, baseMultiplier = 9.21, levelRequirement = 0, cost = { Mana = 638, }, },
},
statSets = {
[1] = {
@@ -6405,11 +7792,13 @@ skills["HailstormRoundsPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 80 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_base_area_of_effect_radius", 12 },
- { "active_skill_base_secondary_area_of_effect_radius", 25 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_base_area_of_effect_radius", 10 },
+ { "active_skill_base_secondary_area_of_effect_radius", 40 },
+ { "rain_hit_delay_ms", 200 },
},
stats = {
+ "active_skill_hit_damage_freeze_multiplier_+%_final",
"base_is_projectile",
"is_area_damage",
"can_perform_skill_while_moving",
@@ -6418,46 +7807,46 @@ skills["HailstormRoundsPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
},
levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ [1] = { 100, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 103, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 106, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 109, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 112, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 115, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 118, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 121, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 124, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 127, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 130, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 133, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 136, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 139, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 142, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 145, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 148, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 151, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 154, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 157, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 160, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 163, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 166, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 169, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 172, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 175, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 178, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 181, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 184, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 187, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 188, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 190, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 191, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 193, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 194, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 196, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 197, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 199, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 200, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 202, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -6466,8 +7855,8 @@ skills["HighVelocityRoundsAmmoPlayer"] = {
name = "Load High Velocity Rounds",
baseTypeName = "Load High Velocity Rounds",
color = 1,
- description = "Load your Crossbow with Piercing bolts that can consume Fully Broken Armour on enemies to deal extra damage.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, },
+ description = "Load your Crossbow with Piercing bolts that apply Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6475,46 +7864,46 @@ skills["HighVelocityRoundsAmmoPlayer"] = {
qualityStats = {
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 7, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 12, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 13, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 16, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 18, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 20, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 22, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 24, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 27, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 30, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 33, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 8, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 9, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 13, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 16, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 18, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 20, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 22, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 24, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 26, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 28, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 31, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 34, }, },
[17] = { levelRequirement = 72, cost = { Mana = 37, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 41, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 45, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 50, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 56, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 62, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 68, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 76, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 84, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 93, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 103, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 115, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 127, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 141, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 156, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 173, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 192, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 213, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 236, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 261, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 289, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 321, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 355, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 394, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 40, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 43, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 47, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 50, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 54, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 59, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 63, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 68, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 73, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 78, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 84, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 90, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 96, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 103, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 110, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 117, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 125, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 143, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 162, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 183, }, },
},
statSets = {
[1] = {
@@ -6526,15 +7915,13 @@ skills["HighVelocityRoundsAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6584,8 +7971,8 @@ skills["HighVelocityRoundsAmmoPlayer"] = {
skills["HighVelocityRoundsPlayer"] = {
name = "High Velocity Rounds",
hidden = true,
- description = "Fire a powerful Piercing bolt that can consume Fully Broken Armour on enemies to deal extra damage.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, },
+ description = "Fire a powerful Piercing bolt that applies Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6673,6 +8060,7 @@ skills["HighVelocityRoundsPlayer"] = {
"can_perform_skill_while_moving",
"base_skill_show_average_damage_instead_of_dps",
"cannot_break_armour",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6738,6 +8126,9 @@ skills["HighVelocityRoundsPlayer"] = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_skill_effect_duration", 5000 },
+ { "exploit_debuff_attack_damage_to_convert_to_magnitude_%", 5 },
+ { "active_skill_damage_+%_final_vs_unique_enemies", 0 },
},
stats = {
"base_is_projectile",
@@ -6754,50 +8145,50 @@ skills["HighVelocityRoundsPlayer"] = {
"can_perform_skill_while_moving",
"base_skill_show_average_damage_instead_of_dps",
"cannot_break_armour",
- "base_consume_enemy_armour_broken_on_hit",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { baseMultiplier = 3.5, actorLevel = 1, },
- [2] = { baseMultiplier = 3.86, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 4.26, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 4.67, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 5.08, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 5.5, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 5.94, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 6.36, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 6.76, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 7.19, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 7.65, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 8.16, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 8.72, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 9.32, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 9.97, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 10.69, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 11.47, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 12.33, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 13.26, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 14.29, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 15.39, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 16.58, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 17.87, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 19.25, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 20.73, actorLevel = 136.875, },
- [26] = { baseMultiplier = 22.34, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 24.06, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 25.92, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 27.93, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 30.09, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 32.41, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 34.92, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 37.62, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 40.52, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 43.66, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 47.03, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 50.66, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 54.58, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 58.8, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 63.34, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 2.2, actorLevel = 1, },
+ [2] = { baseMultiplier = 2.42, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 2.65, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 2.88, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 3.1, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 3.32, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 3.53, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 3.71, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 3.87, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 4.03, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 4.2, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 4.37, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 4.54, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 4.71, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 4.89, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 5.06, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 5.25, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 5.43, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 5.61, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 5.8, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 5.99, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 6.19, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 6.4, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 6.61, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 6.83, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 7.05, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 7.29, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 7.53, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 7.78, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 8.04, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 8.31, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 8.58, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 8.87, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 9.16, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 9.47, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 9.78, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 10.1, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 10.44, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 10.79, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 11.14, actorLevel = 288.29998779297, },
},
},
}
@@ -6806,8 +8197,8 @@ skills["IceShardsAmmoPlayer"] = {
name = "Load Ice Shards",
baseTypeName = "Load Ice Shards",
color = 1,
- description = "Load your Crossbow with a clip of icy bolts that rapidly fire at the ground, leaving a shard of ice at the impact location unless the bolt hits an enemy. The ice shards shatter when enemies step on them, dealing damage to nearby enemies. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with a clip of icy bolts that rapidly fire at the ground, leaving a shard of ice at the impact location that arms after a duration. After arming, the ice shards explode when enemies step on them, dealing more damage the longer they have been armed, up to a maximum. Using this Skill again reloads the clip.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -6815,46 +8206,46 @@ skills["IceShardsAmmoPlayer"] = {
qualityStats = {
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 13, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 12, }, },
[2] = { levelRequirement = 3, cost = { Mana = 14, }, },
[3] = { levelRequirement = 6, cost = { Mana = 16, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 17, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 19, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 21, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 24, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 26, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 29, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 32, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 36, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 40, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 44, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 49, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 54, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 60, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 19, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 21, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 24, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 26, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 29, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 33, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 36, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 40, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 43, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 48, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 52, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 57, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 62, }, },
[17] = { levelRequirement = 72, cost = { Mana = 67, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 74, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 82, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 91, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 101, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 112, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 124, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 138, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 153, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 169, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 188, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 208, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 230, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 255, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 283, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 314, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 348, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 385, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 427, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 473, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 524, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 581, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 644, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 714, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 73, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 79, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 92, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 99, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 107, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 115, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 123, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 132, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 163, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 174, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 187, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 199, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 213, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 227, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 243, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 259, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 276, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 294, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 313, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 333, }, },
},
statSets = {
[1] = {
@@ -6866,15 +8257,13 @@ skills["IceShardsAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 16 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6924,56 +8313,56 @@ skills["IceShardsAmmoPlayer"] = {
skills["IceShardsPlayer"] = {
name = "Ice Shards",
hidden = true,
- description = "Rapidly fire icy bolts at the ground, leaving a shard of ice at the impact location unless the bolt hits an enemy. The ice shards shatter when enemies step on them, dealing damage to nearby enemies. Can fire a limited number of bolts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, },
+ description = "Rapidly fire icy bolts at the ground, leaving a shard of ice at the impact location that arms after a duration. After arming, the ice shards explode when enemies step on them, dealing more damage the longer they have been armed, up to a maximum. Can fire a limited number of bolts before needing to reload.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
- { "permafrost_shard_damage_+%_final_after_1_second", 10 },
+ { "active_skill_chill_as_though_damage_+%_final", 5 },
},
levels = {
[1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.08, levelRequirement = 0, },
[2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.09, levelRequirement = 0, },
[3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.1, levelRequirement = 0, },
[4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, },
- [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, },
- [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, },
- [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, },
- [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, },
[9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, },
[10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, },
[11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.17, levelRequirement = 0, },
- [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, },
- [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, },
- [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, },
- [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, },
- [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, },
- [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, },
- [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.28, levelRequirement = 0, },
- [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.3, levelRequirement = 0, },
- [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, },
- [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, },
- [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, },
- [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.41, levelRequirement = 0, },
- [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.44, levelRequirement = 0, },
- [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.47, levelRequirement = 0, },
- [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, },
- [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, },
- [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, },
- [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.64, levelRequirement = 0, },
- [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, },
- [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.74, levelRequirement = 0, },
- [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.8, levelRequirement = 0, },
- [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.86, levelRequirement = 0, },
- [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, },
- [35] = { attackSpeedMultiplier = 450, levelRequirement = 0, },
- [36] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, },
- [37] = { attackSpeedMultiplier = 450, baseMultiplier = 1.16, levelRequirement = 0, },
- [38] = { attackSpeedMultiplier = 450, baseMultiplier = 1.25, levelRequirement = 0, },
- [39] = { attackSpeedMultiplier = 450, baseMultiplier = 1.34, levelRequirement = 0, },
- [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.45, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.67, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.71, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = 450, baseMultiplier = 0.81, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = 450, baseMultiplier = 0.87, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = 450, baseMultiplier = 0.99, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.05, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -7080,8 +8469,11 @@ skills["IceShardsPlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_cold", 40 },
{ "permafrost_shard_detection_base_area_of_effect_radius", 8 },
{ "active_skill_base_area_of_effect_radius", 14 },
- { "permafrost_shard_damage_+%_final_after_1_second", 700 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
{ "permafrost_shard_limit", 16 },
+ { "permafrost_shard_arming_time_ms", 1500 },
+ { "permafrost_shard_bonus_damage_delay_ms", 3000 },
+ { "permafrost_shard_damage_+%_final_after_1_second", 300 },
},
stats = {
"active_skill_chill_as_though_damage_+%_final",
@@ -7100,48 +8492,49 @@ skills["IceShardsPlayer"] = {
"quality_display_permafrost_shard_damage_+%_final_after_1_second_is_gem",
"is_area_damage",
"display_statset_hide_usage_stats",
+ "is_hazard",
},
levels = {
- [1] = { 200, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 210, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 220, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 230, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 240, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 250, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 260, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 270, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 280, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 290, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 300, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 310, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 320, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 330, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 340, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 350, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 360, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 370, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 380, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 390, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 400, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 410, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 420, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 430, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 440, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 450, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 460, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 470, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 480, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 490, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 500, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 510, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 520, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 530, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 540, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 550, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 560, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 570, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 580, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 590, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 200, baseMultiplier = 0.2, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 210, baseMultiplier = 0.22, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 220, baseMultiplier = 0.24, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 230, baseMultiplier = 0.27, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 240, baseMultiplier = 0.29, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 250, baseMultiplier = 0.31, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 260, baseMultiplier = 0.34, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 270, baseMultiplier = 0.36, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 280, baseMultiplier = 0.39, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 290, baseMultiplier = 0.41, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 300, baseMultiplier = 0.44, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 310, baseMultiplier = 0.47, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 320, baseMultiplier = 0.5, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 330, baseMultiplier = 0.53, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 340, baseMultiplier = 0.57, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 350, baseMultiplier = 0.61, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 360, baseMultiplier = 0.66, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 370, baseMultiplier = 0.7, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 380, baseMultiplier = 0.76, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 390, baseMultiplier = 0.82, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 400, baseMultiplier = 0.88, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 410, baseMultiplier = 0.95, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 420, baseMultiplier = 1.02, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 430, baseMultiplier = 1.1, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 440, baseMultiplier = 1.18, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 450, baseMultiplier = 1.28, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 460, baseMultiplier = 1.38, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 470, baseMultiplier = 1.48, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 480, baseMultiplier = 1.6, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 490, baseMultiplier = 1.72, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 500, baseMultiplier = 1.85, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 510, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 520, baseMultiplier = 2.15, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 530, baseMultiplier = 2.32, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 540, baseMultiplier = 2.49, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 550, baseMultiplier = 2.69, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 560, baseMultiplier = 2.9, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 570, baseMultiplier = 3.12, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 580, baseMultiplier = 3.36, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 590, baseMultiplier = 3.62, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -7150,8 +8543,8 @@ skills["IncendiaryShotAmmoPlayer"] = {
name = "Load Incendiary Shot",
baseTypeName = "Load Incendiary Shot",
color = 1,
- description = "Load your Crossbow with flaming bolts that fragment in flight, damaging and Igniting enemies on hit and in a small cone behind their final target.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with flaming bolts that fragment in flight, damaging and Igniting enemies on hit and in a small cone behind their final target. These fragments can Merge.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -7162,43 +8555,43 @@ skills["IncendiaryShotAmmoPlayer"] = {
[1] = { levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { levelRequirement = 3, cost = { Mana = 7, }, },
[3] = { levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 12, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 23, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 28, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 31, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 15, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 27, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 32, }, },
[17] = { levelRequirement = 72, cost = { Mana = 35, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 39, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 43, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 48, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 53, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 59, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 65, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 72, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 80, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 89, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 98, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 121, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 134, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 149, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 165, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 183, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 202, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 224, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 249, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 306, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 339, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 375, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 38, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 41, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 44, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 48, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 52, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 56, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 60, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 64, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 69, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 74, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 91, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 119, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 127, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 136, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 145, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 154, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 164, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 175, }, },
},
statSets = {
[1] = {
@@ -7210,15 +8603,13 @@ skills["IncendiaryShotAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7268,56 +8659,56 @@ skills["IncendiaryShotAmmoPlayer"] = {
skills["IncendiaryShotPlayer"] = {
name = "Incendiary Shot",
hidden = true,
- description = "Fire flaming bolts that fragment in flight, damaging and Igniting enemies on hit, and in a small cone behind their final target.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Fire flaming bolts that fragment in flight, damaging and Igniting enemies on hit, and in a small cone behind their final target. These fragments can Merge.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
- { "base_ignite_effect_+%", 1 },
+ { "ignite_duration_+%_per_shotgun_pellet_hit", 0.75 },
},
levels = {
- [1] = { baseMultiplier = 0.17, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.19, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.21, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.22, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.24, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.26, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.28, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.3, levelRequirement = 0, },
- [9] = { baseMultiplier = 0.32, levelRequirement = 0, },
- [10] = { baseMultiplier = 0.34, levelRequirement = 0, },
- [11] = { baseMultiplier = 0.36, levelRequirement = 0, },
- [12] = { baseMultiplier = 0.38, levelRequirement = 0, },
- [13] = { baseMultiplier = 0.4, levelRequirement = 0, },
- [14] = { baseMultiplier = 0.42, levelRequirement = 0, },
- [15] = { baseMultiplier = 0.45, levelRequirement = 0, },
- [16] = { baseMultiplier = 0.48, levelRequirement = 0, },
- [17] = { baseMultiplier = 0.51, levelRequirement = 0, },
- [18] = { baseMultiplier = 0.54, levelRequirement = 0, },
- [19] = { baseMultiplier = 0.58, levelRequirement = 0, },
- [20] = { baseMultiplier = 0.62, levelRequirement = 0, },
- [21] = { baseMultiplier = 0.66, levelRequirement = 0, },
- [22] = { baseMultiplier = 0.7, levelRequirement = 0, },
- [23] = { baseMultiplier = 0.75, levelRequirement = 0, },
- [24] = { baseMultiplier = 0.8, levelRequirement = 0, },
- [25] = { baseMultiplier = 0.85, levelRequirement = 0, },
- [26] = { baseMultiplier = 0.91, levelRequirement = 0, },
- [27] = { baseMultiplier = 0.97, levelRequirement = 0, },
- [28] = { baseMultiplier = 1.03, levelRequirement = 0, },
- [29] = { baseMultiplier = 1.1, levelRequirement = 0, },
- [30] = { baseMultiplier = 1.17, levelRequirement = 0, },
- [31] = { baseMultiplier = 1.25, levelRequirement = 0, },
- [32] = { baseMultiplier = 1.34, levelRequirement = 0, },
- [33] = { baseMultiplier = 1.42, levelRequirement = 0, },
- [34] = { baseMultiplier = 1.52, levelRequirement = 0, },
- [35] = { baseMultiplier = 1.62, levelRequirement = 0, },
- [36] = { baseMultiplier = 1.73, levelRequirement = 0, },
- [37] = { baseMultiplier = 1.84, levelRequirement = 0, },
- [38] = { baseMultiplier = 1.97, levelRequirement = 0, },
- [39] = { baseMultiplier = 2.1, levelRequirement = 0, },
- [40] = { baseMultiplier = 2.24, levelRequirement = 0, },
+ [1] = { baseMultiplier = 0.1, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.11, levelRequirement = 0, },
+ [3] = { baseMultiplier = 0.12, levelRequirement = 0, },
+ [4] = { baseMultiplier = 0.13, levelRequirement = 0, },
+ [5] = { baseMultiplier = 0.14, levelRequirement = 0, },
+ [6] = { baseMultiplier = 0.15, levelRequirement = 0, },
+ [7] = { baseMultiplier = 0.17, levelRequirement = 0, },
+ [8] = { baseMultiplier = 0.18, levelRequirement = 0, },
+ [9] = { baseMultiplier = 0.19, levelRequirement = 0, },
+ [10] = { baseMultiplier = 0.2, levelRequirement = 0, },
+ [11] = { baseMultiplier = 0.21, levelRequirement = 0, },
+ [12] = { baseMultiplier = 0.22, levelRequirement = 0, },
+ [13] = { baseMultiplier = 0.23, levelRequirement = 0, },
+ [14] = { baseMultiplier = 0.25, levelRequirement = 0, },
+ [15] = { baseMultiplier = 0.26, levelRequirement = 0, },
+ [16] = { baseMultiplier = 0.28, levelRequirement = 0, },
+ [17] = { baseMultiplier = 0.3, levelRequirement = 0, },
+ [18] = { baseMultiplier = 0.32, levelRequirement = 0, },
+ [19] = { baseMultiplier = 0.34, levelRequirement = 0, },
+ [20] = { baseMultiplier = 0.36, levelRequirement = 0, },
+ [21] = { baseMultiplier = 0.39, levelRequirement = 0, },
+ [22] = { baseMultiplier = 0.41, levelRequirement = 0, },
+ [23] = { baseMultiplier = 0.44, levelRequirement = 0, },
+ [24] = { baseMultiplier = 0.47, levelRequirement = 0, },
+ [25] = { baseMultiplier = 0.5, levelRequirement = 0, },
+ [26] = { baseMultiplier = 0.53, levelRequirement = 0, },
+ [27] = { baseMultiplier = 0.57, levelRequirement = 0, },
+ [28] = { baseMultiplier = 0.61, levelRequirement = 0, },
+ [29] = { baseMultiplier = 0.65, levelRequirement = 0, },
+ [30] = { baseMultiplier = 0.69, levelRequirement = 0, },
+ [31] = { baseMultiplier = 0.74, levelRequirement = 0, },
+ [32] = { baseMultiplier = 0.79, levelRequirement = 0, },
+ [33] = { baseMultiplier = 0.84, levelRequirement = 0, },
+ [34] = { baseMultiplier = 0.89, levelRequirement = 0, },
+ [35] = { baseMultiplier = 0.95, levelRequirement = 0, },
+ [36] = { baseMultiplier = 1.02, levelRequirement = 0, },
+ [37] = { baseMultiplier = 1.08, levelRequirement = 0, },
+ [38] = { baseMultiplier = 1.16, levelRequirement = 0, },
+ [39] = { baseMultiplier = 1.23, levelRequirement = 0, },
+ [40] = { baseMultiplier = 1.32, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -7336,7 +8727,6 @@ skills["IncendiaryShotPlayer"] = {
{ "base_number_of_projectiles", 10 },
{ "projectile_distance_variance", 10 },
{ "active_skill_projectile_speed_+%_variation_final", 40 },
- { "active_skill_hit_damage_stun_multiplier_+%_final", 0 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
{ "crossbow_barrage_recoil_per_shot", 1 },
{ "crossbow_barrage_total_recoil_buff_count", 8 },
@@ -7344,11 +8734,14 @@ skills["IncendiaryShotPlayer"] = {
{ "base_knockback_distance", 75 },
{ "burst_shot_cone_angle", 220 },
{ "active_skill_base_area_of_effect_radius", 19 },
- { "active_skill_ignite_chance_+%_final", 100 },
- { "active_skill_ignite_effect_+%_final", 0 },
+ { "active_skill_ignite_chance_+%_final", 300 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "ignite_duration_+%_per_shotgun_pellet_hit", 30 },
+ { "consume_X_heat_on_skill_use", 30 },
+ { "ignite_effect_+%_final_if_heat_is_consumed", 50 },
+ { "faster_burn_%", 200 },
},
stats = {
"base_is_projectile",
@@ -7363,6 +8756,7 @@ skills["IncendiaryShotPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"can_perform_skill_while_moving",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7413,8 +8807,8 @@ skills["PermafrostBoltsAmmoPlayer"] = {
name = "Load Permafrost Bolts",
baseTypeName = "Load Permafrost Bolts",
color = 1,
- description = "Load your Crossbow with icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -7425,43 +8819,43 @@ skills["PermafrostBoltsAmmoPlayer"] = {
[1] = { levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { levelRequirement = 3, cost = { Mana = 7, }, },
[3] = { levelRequirement = 6, cost = { Mana = 8, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 9, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 10, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 11, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 12, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 14, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 15, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 17, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 19, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 21, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 23, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 26, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 28, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 31, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 35, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 39, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 43, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 48, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 53, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 59, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 65, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 72, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 80, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 89, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 98, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 109, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 121, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 134, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 149, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 165, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 183, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 202, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 224, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 249, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 276, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 306, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 339, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 375, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 10, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 11, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 12, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 14, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 15, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 17, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 19, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 21, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 23, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 25, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 27, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 30, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 32, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 35, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 38, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 41, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 44, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 48, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 52, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 56, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 60, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 64, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 69, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 74, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 80, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 91, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 119, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 127, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 136, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 145, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 154, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 164, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 175, }, },
},
statSets = {
[1] = {
@@ -7473,15 +8867,13 @@ skills["PermafrostBoltsAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7531,8 +8923,8 @@ skills["PermafrostBoltsAmmoPlayer"] = {
skills["PermafrostBoltsPlayer"] = {
name = "Permafrost Bolts",
hidden = true,
- description = "Fire icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Fire icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -7548,39 +8940,39 @@ skills["PermafrostBoltsPlayer"] = {
[5] = { baseMultiplier = 0.24, levelRequirement = 0, },
[6] = { baseMultiplier = 0.26, levelRequirement = 0, },
[7] = { baseMultiplier = 0.28, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.3, levelRequirement = 0, },
- [9] = { baseMultiplier = 0.32, levelRequirement = 0, },
- [10] = { baseMultiplier = 0.34, levelRequirement = 0, },
- [11] = { baseMultiplier = 0.36, levelRequirement = 0, },
- [12] = { baseMultiplier = 0.38, levelRequirement = 0, },
- [13] = { baseMultiplier = 0.4, levelRequirement = 0, },
- [14] = { baseMultiplier = 0.42, levelRequirement = 0, },
- [15] = { baseMultiplier = 0.45, levelRequirement = 0, },
- [16] = { baseMultiplier = 0.48, levelRequirement = 0, },
- [17] = { baseMultiplier = 0.51, levelRequirement = 0, },
- [18] = { baseMultiplier = 0.54, levelRequirement = 0, },
- [19] = { baseMultiplier = 0.58, levelRequirement = 0, },
- [20] = { baseMultiplier = 0.62, levelRequirement = 0, },
- [21] = { baseMultiplier = 0.66, levelRequirement = 0, },
- [22] = { baseMultiplier = 0.7, levelRequirement = 0, },
- [23] = { baseMultiplier = 0.75, levelRequirement = 0, },
- [24] = { baseMultiplier = 0.8, levelRequirement = 0, },
- [25] = { baseMultiplier = 0.85, levelRequirement = 0, },
- [26] = { baseMultiplier = 0.91, levelRequirement = 0, },
- [27] = { baseMultiplier = 0.97, levelRequirement = 0, },
- [28] = { baseMultiplier = 1.03, levelRequirement = 0, },
- [29] = { baseMultiplier = 1.1, levelRequirement = 0, },
- [30] = { baseMultiplier = 1.17, levelRequirement = 0, },
- [31] = { baseMultiplier = 1.25, levelRequirement = 0, },
- [32] = { baseMultiplier = 1.34, levelRequirement = 0, },
- [33] = { baseMultiplier = 1.42, levelRequirement = 0, },
- [34] = { baseMultiplier = 1.52, levelRequirement = 0, },
- [35] = { baseMultiplier = 1.62, levelRequirement = 0, },
- [36] = { baseMultiplier = 1.73, levelRequirement = 0, },
- [37] = { baseMultiplier = 1.84, levelRequirement = 0, },
- [38] = { baseMultiplier = 1.97, levelRequirement = 0, },
- [39] = { baseMultiplier = 2.1, levelRequirement = 0, },
- [40] = { baseMultiplier = 2.24, levelRequirement = 0, },
+ [8] = { baseMultiplier = 0.29, levelRequirement = 0, },
+ [9] = { baseMultiplier = 0.31, levelRequirement = 0, },
+ [10] = { baseMultiplier = 0.32, levelRequirement = 0, },
+ [11] = { baseMultiplier = 0.34, levelRequirement = 0, },
+ [12] = { baseMultiplier = 0.35, levelRequirement = 0, },
+ [13] = { baseMultiplier = 0.37, levelRequirement = 0, },
+ [14] = { baseMultiplier = 0.38, levelRequirement = 0, },
+ [15] = { baseMultiplier = 0.4, levelRequirement = 0, },
+ [16] = { baseMultiplier = 0.42, levelRequirement = 0, },
+ [17] = { baseMultiplier = 0.44, levelRequirement = 0, },
+ [18] = { baseMultiplier = 0.45, levelRequirement = 0, },
+ [19] = { baseMultiplier = 0.47, levelRequirement = 0, },
+ [20] = { baseMultiplier = 0.49, levelRequirement = 0, },
+ [21] = { baseMultiplier = 0.51, levelRequirement = 0, },
+ [22] = { baseMultiplier = 0.54, levelRequirement = 0, },
+ [23] = { baseMultiplier = 0.56, levelRequirement = 0, },
+ [24] = { baseMultiplier = 0.58, levelRequirement = 0, },
+ [25] = { baseMultiplier = 0.61, levelRequirement = 0, },
+ [26] = { baseMultiplier = 0.63, levelRequirement = 0, },
+ [27] = { baseMultiplier = 0.66, levelRequirement = 0, },
+ [28] = { baseMultiplier = 0.69, levelRequirement = 0, },
+ [29] = { baseMultiplier = 0.71, levelRequirement = 0, },
+ [30] = { baseMultiplier = 0.74, levelRequirement = 0, },
+ [31] = { baseMultiplier = 0.78, levelRequirement = 0, },
+ [32] = { baseMultiplier = 0.81, levelRequirement = 0, },
+ [33] = { baseMultiplier = 0.84, levelRequirement = 0, },
+ [34] = { baseMultiplier = 0.88, levelRequirement = 0, },
+ [35] = { baseMultiplier = 0.91, levelRequirement = 0, },
+ [36] = { baseMultiplier = 0.95, levelRequirement = 0, },
+ [37] = { baseMultiplier = 0.99, levelRequirement = 0, },
+ [38] = { baseMultiplier = 1.03, levelRequirement = 0, },
+ [39] = { baseMultiplier = 1.08, levelRequirement = 0, },
+ [40] = { baseMultiplier = 1.12, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -7621,48 +9013,49 @@ skills["PermafrostBoltsPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"can_perform_skill_while_moving",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 80, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 84, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 88, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 92, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 96, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 100, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 104, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 108, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 112, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 116, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 120, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 124, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 128, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 132, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 136, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 140, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 144, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 148, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 152, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 156, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 160, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 164, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 168, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 172, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 176, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 180, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 184, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 188, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 192, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 196, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 198, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 200, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 202, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 204, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 206, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 208, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 210, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 212, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 214, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 216, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 200, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 216, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 232, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 248, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 264, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 280, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 296, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 312, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 328, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 344, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 360, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 376, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 392, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 408, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 424, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 440, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 456, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 472, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 488, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 504, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 520, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 536, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 552, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 568, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 584, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 600, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 616, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 632, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 648, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 664, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 680, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 696, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 712, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 728, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 744, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 760, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 776, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 792, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 808, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 824, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -7672,7 +9065,7 @@ skills["PlasmaBlastAmmoPlayer"] = {
baseTypeName = "Load Plasma Blast",
color = 1,
description = "Load your Crossbow with unstable bolts that require a lengthy charging period to fire but deal devastating damage, Pierce through enemies, and explode upon hitting terrain. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -7681,45 +9074,45 @@ skills["PlasmaBlastAmmoPlayer"] = {
},
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 18, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 22, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 25, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 28, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 31, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 34, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 38, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 42, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 47, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 52, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 57, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 64, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 71, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 78, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 87, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 21, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 24, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 27, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 30, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 34, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 38, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 42, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 47, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 52, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 57, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 63, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 69, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 75, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 82, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 89, }, },
[17] = { levelRequirement = 72, cost = { Mana = 96, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 107, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 118, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 131, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 145, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 161, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 179, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 198, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 219, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 243, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 269, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 299, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 331, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 367, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 407, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 451, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 499, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 553, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 613, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 680, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 753, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 835, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 925, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1025, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 104, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 113, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 122, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 132, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 142, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 153, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 165, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 177, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 190, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 204, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 218, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 234, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 250, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 268, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 286, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 306, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 326, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 348, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 371, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 396, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 421, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 449, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 477, }, },
},
statSets = {
[1] = {
@@ -7731,9 +9124,6 @@ skills["PlasmaBlastAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
@@ -7741,6 +9131,7 @@ skills["PlasmaBlastAmmoPlayer"] = {
"base_deal_no_damage",
"display_statset_hide_usage_stats",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7791,7 +9182,7 @@ skills["PlasmaBlastPlayer"] = {
name = "Plasma Blast",
hidden = true,
description = "Channel to charge an unstable bolt. The bolt deals devastating damage and explodes on hitting terrain, but cannot be fired at all unless fully charged. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -7853,17 +9244,17 @@ skills["PlasmaBlastPlayer"] = {
},
constantStats = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 70 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "crossbow_barrage_recoil_per_shot", 2 },
{ "crossbow_barrage_total_recoil_buff_count", 8 },
{ "crossbow_barrage_debuff_duration_ms", 300 },
{ "base_knockback_distance", 400 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "active_skill_shock_chance_+%_final", 30 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "total_attack_time_+_ms", 2000 },
{ "channel_end_duration_as_%_of_attack_time", 35 },
+ { "active_skill_shock_effect_+%_final", 50 },
},
stats = {
"base_is_projectile",
@@ -7876,6 +9267,7 @@ skills["PlasmaBlastPlayer"] = {
"disable_visual_hit_effect",
"can_perform_skill_while_moving",
"always_pierce",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -7932,16 +9324,16 @@ skills["PlasmaBlastPlayer"] = {
},
constantStats = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 70 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "crossbow_barrage_recoil_per_shot", 2 },
{ "crossbow_barrage_total_recoil_buff_count", 8 },
{ "crossbow_barrage_debuff_duration_ms", 300 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "active_skill_shock_chance_+%_final", 30 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "channel_end_duration_as_%_of_attack_time", 35 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 30 },
+ { "active_skill_shock_effect_+%_final", 50 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 },
{ "active_skill_base_area_of_effect_radius", 32 },
},
stats = {
@@ -7953,6 +9345,7 @@ skills["PlasmaBlastPlayer"] = {
"projectile_uses_contact_direction",
"check_for_targets_between_initiator_and_projectile_source",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
},
@@ -8005,8 +9398,8 @@ skills["RapidShotAmmoPlayer"] = {
name = "Load Rapid Shot",
baseTypeName = "Load Rapid Shot",
color = 1,
- description = "Load your Crossbow with a large clip of heavily modified bolts that cause Heat to build up on your crossbow, before unleashing a stream of flaming bolts that gain Fire Damage based on your Heat. Heat also grants bonus damage to Grenades you fire, but dissipates rapidly when not building up. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with a large clip of heated bolts. Heat builds up on your Crossbow as you fire them, and reaching maximum Heat will prevent you from firing or reloading these bolts for a short time. However, other Skills can Consume Heat for extra benefits. Using this Skill again reloads the clip.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8014,46 +9407,46 @@ skills["RapidShotAmmoPlayer"] = {
qualityStats = {
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 28, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 27, }, },
[2] = { levelRequirement = 3, cost = { Mana = 31, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 34, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 38, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 42, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 47, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 52, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 58, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 64, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 71, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 79, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 87, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 97, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 108, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 119, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 132, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 36, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 41, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 46, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 52, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 58, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 65, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 72, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 79, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 87, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 95, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 104, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 114, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 124, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 135, }, },
[17] = { levelRequirement = 72, cost = { Mana = 147, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 162, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 180, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 200, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 221, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 245, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 272, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 301, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 334, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 370, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 410, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 454, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 503, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 558, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 618, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 685, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 759, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 841, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 932, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 1033, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 1145, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1269, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1406, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1558, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 159, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 172, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 186, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 201, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 216, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 233, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 251, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 269, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 310, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 332, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 356, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 381, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 407, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 435, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 465, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 496, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 530, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 565, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 602, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 641, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 682, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 726, }, },
},
statSets = {
[1] = {
@@ -8064,59 +9457,57 @@ skills["RapidShotAmmoPlayer"] = {
},
constantStats = {
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "active_skill_reload_speed_+%_final", -50 },
+ { "base_number_of_crossbow_bolts", 100 },
},
stats = {
- "base_number_of_crossbow_bolts",
"action_can_be_used_in_aiming_stance",
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
- [1] = { 40, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 42, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 45, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 47, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 52, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 55, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 57, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 60, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 65, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 67, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 70, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 72, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 75, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 77, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 80, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 82, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 85, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 87, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 90, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 92, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 95, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 97, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 100, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 102, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 105, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 107, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 110, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 112, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 115, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 117, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 120, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 122, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 125, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 127, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 130, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 132, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 135, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 137, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -8124,63 +9515,61 @@ skills["RapidShotAmmoPlayer"] = {
skills["RapidShotPlayer"] = {
name = "Rapid Shot",
hidden = true,
- description = "Fire heavily modified bolts that cause Heat to build up on your crossbow. Using this skill causes an initial buildup of Heat before unleashing a stream of flaming bolts that gain Fire Damage based on your Heat. Heat also grants bonus damage to Grenades you fire, but dissipates rapidly when not building up. Can fire a large number of bolts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Fire] = true, },
+ description = "Fire a stream of heated bolts. Heat builds up on your Crossbow as you fire, and reaching maximum heat will prevent you from firing these bolts for a short time. However, other Skills can Consume Heat for extra benefits.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Fire] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
castTime = 1,
qualityStats = {
- { "rapid_shot_maximum_num_of_stacks", 0.25 },
+ { "maximum_number_of_crossbow_heat_stacks", 0.75 },
},
levels = {
- [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, },
- [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, },
- [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, },
- [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, },
- [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, },
- [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, },
- [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, },
- [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, },
- [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, },
- [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, },
- [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.3, levelRequirement = 0, },
- [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.32, levelRequirement = 0, },
- [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, },
- [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, },
- [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, },
- [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, },
- [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, },
- [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.42, levelRequirement = 0, },
- [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.45, levelRequirement = 0, },
- [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.47, levelRequirement = 0, },
- [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, },
- [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, },
- [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, },
- [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.57, levelRequirement = 0, },
- [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.6, levelRequirement = 0, },
- [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, },
- [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.66, levelRequirement = 0, },
- [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, },
- [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, },
- [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, },
- [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.8, levelRequirement = 0, },
- [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.84, levelRequirement = 0, },
- [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, },
- [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, },
- [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.97, levelRequirement = 0, },
- [36] = { attackSpeedMultiplier = 450, baseMultiplier = 1.02, levelRequirement = 0, },
- [37] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, },
- [38] = { attackSpeedMultiplier = 450, baseMultiplier = 1.13, levelRequirement = 0, },
- [39] = { attackSpeedMultiplier = 450, baseMultiplier = 1.18, levelRequirement = 0, },
- [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.24, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.34, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.58, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.61, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.65, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.78, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.83, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.94, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = 450, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = 450, baseMultiplier = 1.14, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = 450, baseMultiplier = 1.22, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = 450, baseMultiplier = 1.3, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = 450, baseMultiplier = 1.39, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = 450, baseMultiplier = 1.48, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = 450, baseMultiplier = 1.58, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = 450, baseMultiplier = 1.68, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = 450, baseMultiplier = 1.79, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = 450, baseMultiplier = 1.91, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = 450, baseMultiplier = 2.04, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = 450, baseMultiplier = 2.18, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = 450, baseMultiplier = 2.32, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = 450, baseMultiplier = 2.48, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = 450, baseMultiplier = 2.64, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = 450, baseMultiplier = 2.82, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = 450, baseMultiplier = 3.01, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = 450, baseMultiplier = 3.21, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = 450, baseMultiplier = 3.42, levelRequirement = 0, },
},
statSets = {
[1] = {
label = "Projectile",
- baseEffectiveness = 0.33000001311302,
- incrementalEffectiveness = 0.027599999681115,
- damageIncrementalEffectiveness = 0.010739999823272,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "rapid_shot_incendiary",
baseFlags = {
attack = true,
@@ -8189,8 +9578,6 @@ skills["RapidShotPlayer"] = {
constantStats = {
{ "action_required_target_facing_angle_tolerance_degrees", 60 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
- { "incendiary_rapid_shot_buff_decay_per_stack_ms", 200 },
- { "rapid_shot_minimum_stacks_required_to_fire", 1 },
{ "active_skill_override_turn_duration_ms", 100 },
{ "active_skill_facing_angle_turn_duration_ms", 100 },
{ "crossbow_barrage_recoil_per_shot", 1 },
@@ -8199,13 +9586,10 @@ skills["RapidShotPlayer"] = {
{ "base_knockback_distance", 30 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "rapid_shot_charge_up_time_as_%_of_attack_time", 800 },
- { "rapid_shot_heat_gained_per_minue_while_performing", 240 },
- { "rapid_shot_all_damage_%_to_gain_as_fire_per_stack", 7 },
- { "rapid_shot_next_grenade_all_damage_%_to_gain_as_fire_per_stack", 6 },
+ { "skill_specific_stat_description_mode", 10000 },
},
stats = {
- "rapid_shot_maximum_num_of_stacks",
+ "maximum_number_of_crossbow_heat_stacks",
"base_is_projectile",
"has_modular_projectiles_enabled",
"action_requires_aiming_stance",
@@ -8218,48 +9602,49 @@ skills["RapidShotPlayer"] = {
"action_do_not_face_target",
"can_perform_skill_while_moving",
"quality_display_rapid_shot_maximum_num_of_stacks_is_gem",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 15, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 15, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 16, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 17, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 18, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 19, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 20, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 21, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 21, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 22, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 22, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 23, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 23, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 24, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 24, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 25, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 25, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 26, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 26, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 27, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 27, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 28, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 28, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 29, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 29, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 30, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 30, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 31, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 31, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 32, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 32, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 33, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 33, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 34, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 34, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 26, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 27, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 28, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 29, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 30, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 31, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 33, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 34, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 35, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 36, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 37, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 38, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 40, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 41, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 42, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 43, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 44, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 45, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 46, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 47, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 48, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 49, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 50, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 51, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 52, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 53, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 54, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 55, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 56, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 57, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 58, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 59, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 60, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 61, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 62, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 63, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 64, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 65, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -8268,8 +9653,8 @@ skills["ShockburstRoundsAmmoPlayer"] = {
name = "Load Shockburst Rounds",
baseTypeName = "Load Shockburst Rounds",
color = 1,
- description = "Load your Crossbow with a clip of charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with a clip of charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Using this Skill again reloads the clip.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8278,46 +9663,46 @@ skills["ShockburstRoundsAmmoPlayer"] = {
{ "base_number_of_crossbow_bolts", 0.2 },
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 15, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 28, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 31, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 34, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 38, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 42, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 47, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 52, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 58, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 64, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 71, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 17, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 19, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 22, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 25, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 28, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 31, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 35, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 38, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 42, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 46, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 51, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 56, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 61, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 67, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 72, }, },
[17] = { levelRequirement = 72, cost = { Mana = 79, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 87, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 97, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 107, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 119, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 131, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 146, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 162, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 179, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 199, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 220, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 244, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 270, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 300, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 332, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 368, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 408, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 452, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 501, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 555, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 615, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 682, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 755, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 837, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 85, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 92, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 100, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 108, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 116, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 125, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 134, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 144, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 155, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 191, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 204, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 234, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 250, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 266, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 284, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 303, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 323, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 366, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 390, }, },
},
statSets = {
[1] = {
@@ -8328,9 +9713,6 @@ skills["ShockburstRoundsAmmoPlayer"] = {
},
constantStats = {
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
{ "active_skill_reload_speed_+%_final", -20 },
},
stats = {
@@ -8340,6 +9722,7 @@ skills["ShockburstRoundsAmmoPlayer"] = {
"base_deal_no_damage",
"display_statset_hide_usage_stats",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { 10, statInterpolation = { 1, }, actorLevel = 1, },
@@ -8390,7 +9773,7 @@ skills["ShockburstRoundsPlayer"] = {
name = "Shockburst Rounds",
hidden = true,
description = "Rapidly fire charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Can fire a limited number of bolts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8473,6 +9856,7 @@ skills["ShockburstRoundsPlayer"] = {
"action_do_not_face_target",
"can_perform_skill_while_moving",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -8552,50 +9936,51 @@ skills["ShockburstRoundsPlayer"] = {
"action_do_not_face_target",
"can_perform_skill_while_moving",
"never_shock",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"is_area_damage",
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { baseMultiplier = 0.35, actorLevel = 1, },
- [2] = { baseMultiplier = 0.38, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.42, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.46, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.5, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.54, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.58, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.62, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.65, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.69, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 0.73, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 0.78, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 0.82, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 0.87, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 0.93, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 0.98, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.05, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.12, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.19, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.27, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.35, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 1.44, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 1.54, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 1.64, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 1.75, actorLevel = 136.875, },
- [26] = { baseMultiplier = 1.87, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 1.99, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 2.12, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 2.27, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 2.42, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 2.58, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 2.75, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 2.93, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 3.13, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 3.34, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 3.56, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 3.79, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 4.05, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 4.32, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 4.6, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.3, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.33, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.36, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.4, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.43, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.46, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.5, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.53, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.56, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.59, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 0.63, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 0.66, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 0.7, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 0.75, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 0.79, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 0.84, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 0.9, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 0.96, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.02, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.09, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.16, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 1.24, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 1.32, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 1.41, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 1.5, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 1.6, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 1.71, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 1.82, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 1.94, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 2.07, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 2.21, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 2.36, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 2.51, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 2.68, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 2.86, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 3.05, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 3.25, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 3.47, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 3.7, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 3.95, actorLevel = 288.29998779297, },
},
},
}
@@ -8605,7 +9990,7 @@ skills["SiegeCascadeAmmoPlayer"] = {
baseTypeName = "Load Siege Cascade",
color = 1,
description = "Load your Crossbow with enemy-seeking payloads which are fired into the air, dropping a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8615,44 +10000,44 @@ skills["SiegeCascadeAmmoPlayer"] = {
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 12, }, },
[2] = { levelRequirement = 3, cost = { Mana = 13, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 15, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 16, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 18, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 20, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 23, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 25, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 28, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 31, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 34, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 38, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 42, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 47, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 52, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 58, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 16, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 18, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 20, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 23, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 25, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 28, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 31, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 34, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 38, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 41, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 45, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 50, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 54, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 59, }, },
[17] = { levelRequirement = 72, cost = { Mana = 64, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 71, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 79, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 87, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 97, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 107, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 119, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 132, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 146, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 162, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 179, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 199, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 220, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 244, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 270, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 300, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 332, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 368, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 408, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 452, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 501, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 555, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 615, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 682, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 69, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 75, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 81, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 88, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 94, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 102, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 109, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 118, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 126, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 135, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 145, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 155, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 166, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 190, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 203, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 217, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 231, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 247, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 263, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 280, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 298, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 317, }, },
},
statSets = {
[1] = {
@@ -8664,9 +10049,6 @@ skills["SiegeCascadeAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 1 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
{ "active_skill_reload_speed_+%_final", -30 },
},
stats = {
@@ -8675,6 +10057,7 @@ skills["SiegeCascadeAmmoPlayer"] = {
"can_perform_skill_while_moving",
"base_deal_no_damage",
"display_statset_hide_usage_stats",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -8725,7 +10108,7 @@ skills["SiegeCascadePlayer"] = {
name = "Siege Cascade",
hidden = true,
description = "Aim skyward and fires an enemy-seeking payload which drops a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8734,46 +10117,46 @@ skills["SiegeCascadePlayer"] = {
{ "active_skill_damage_+%_final_vs_immobilised_enemies", 4 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.25, levelRequirement = 0, },
- [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.27, levelRequirement = 0, },
- [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.3, levelRequirement = 0, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.33, levelRequirement = 0, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.36, levelRequirement = 0, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.39, levelRequirement = 0, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.42, levelRequirement = 0, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.47, levelRequirement = 0, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.49, levelRequirement = 0, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.52, levelRequirement = 0, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.55, levelRequirement = 0, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.59, levelRequirement = 0, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 0.7, levelRequirement = 0, },
- [17] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 0.8, levelRequirement = 0, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 0.85, levelRequirement = 0, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 0.91, levelRequirement = 0, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 0.97, levelRequirement = 0, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.03, levelRequirement = 0, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 0, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.17, levelRequirement = 0, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 0, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 0, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 0, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 0, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 0, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 0, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 1.84, levelRequirement = 0, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 1.96, levelRequirement = 0, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 0, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 2.23, levelRequirement = 0, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 2.38, levelRequirement = 0, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 2.54, levelRequirement = 0, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 2.71, levelRequirement = 0, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 2.89, levelRequirement = 0, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 0, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 3.29, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.71, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = -25, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.27, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.36, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.65, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.28, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 2.43, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.14, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.35, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 3.81, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.07, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 4.63, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 4.93, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.26, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -8794,15 +10177,12 @@ skills["SiegeCascadePlayer"] = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
{ "base_number_of_projectiles", 1 },
{ "siege_cascade_fall_time_ms", 500 },
- { "active_skill_damage_+%_final_vs_immobilised_enemies", 200 },
{ "active_skill_base_area_of_effect_radius", 40 },
- { "active_skill_base_secondary_area_of_effect_radius", 5 },
+ { "active_skill_base_secondary_area_of_effect_radius", 4 },
{ "siege_cascade_visual_fall_time_delay_%", 70 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
- { "active_skill_hit_damage_stun_multiplier_+%_final", -100 },
},
stats = {
"base_is_projectile",
@@ -8874,16 +10254,13 @@ skills["SiegeCascadePlayer"] = {
{ "action_required_target_facing_angle_tolerance_degrees", 90 },
{ "base_number_of_projectiles", 1 },
{ "siege_cascade_fall_time_ms", 500 },
- { "active_skill_damage_+%_final_vs_immobilised_enemies", 200 },
{ "active_skill_base_area_of_effect_radius", 40 },
- { "active_skill_base_secondary_area_of_effect_radius", 5 },
+ { "active_skill_base_secondary_area_of_effect_radius", 4 },
{ "siege_cascade_visual_fall_time_delay_%", 70 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
- { "active_skill_hit_damage_stun_multiplier_+%_final", -100 },
- { "active_skill_base_secondary_area_of_effect_radius", 5 },
+ { "active_skill_base_secondary_area_of_effect_radius", 4 },
},
stats = {
"base_is_projectile",
@@ -8895,46 +10272,46 @@ skills["SiegeCascadePlayer"] = {
"quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem",
},
levels = {
- [1] = { baseMultiplier = 1.1, actorLevel = 1, },
- [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.58, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.7, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.83, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.95, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 2.06, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 2.17, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.3, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.44, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.58, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 2.74, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 2.91, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 3.09, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 3.29, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.51, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 3.74, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 3.98, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 4.25, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 4.53, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 4.83, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 5.16, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 5.5, actorLevel = 136.875, },
- [26] = { baseMultiplier = 5.87, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 6.26, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 6.67, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 7.12, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 7.59, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 8.1, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 8.64, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 9.21, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 9.83, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 10.48, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 11.18, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 11.93, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 12.72, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 13.57, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 14.47, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 1.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 1.65, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.82, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.98, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 2.15, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 2.32, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 2.49, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.65, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.8, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.96, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 3.14, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 3.32, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 3.52, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 3.74, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 3.97, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 4.22, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 4.49, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 4.78, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 5.09, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 5.43, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 5.79, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 6.18, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 6.59, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 7.03, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 7.5, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 8, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 8.53, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 9.1, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 9.71, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 10.35, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 11.04, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 11.78, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 12.56, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 13.4, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 14.29, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 15.25, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 16.26, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 17.35, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 18.5, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 19.73, actorLevel = 288.29998779297, },
},
},
}
@@ -8943,8 +10320,8 @@ skills["StormblastBoltsAmmoPlayer"] = {
name = "Load Stormblast Bolts",
baseTypeName = "Load Stormblast Bolts",
color = 1,
- description = "Load your Crossbow with charged bolts that land around the target location and explode if hit by a Detonator Skill. Using this skill again reloads the clip.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Load your Crossbow with charged bolts that land around the target location and explode if hit by a Detonator Skill. Using this Skill again reloads the clip.",
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -8954,44 +10331,44 @@ skills["StormblastBoltsAmmoPlayer"] = {
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { levelRequirement = 3, cost = { Mana = 10, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 14, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 22, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 24, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 27, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 30, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 33, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 36, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 40, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 45, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 12, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 24, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 27, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 29, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 32, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 35, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 39, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 42, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 46, }, },
[17] = { levelRequirement = 72, cost = { Mana = 50, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 55, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 61, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 68, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 75, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 83, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 92, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 113, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 126, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 139, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 155, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 171, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 190, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 210, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 233, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 258, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 286, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 318, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 352, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 390, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 432, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 479, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 531, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 54, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 58, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 63, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 68, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 73, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 79, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 85, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 91, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 98, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 105, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 113, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 121, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 130, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 139, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 148, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 158, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 169, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 180, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 192, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 205, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 218, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 232, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 247, }, },
},
statSets = {
[1] = {
@@ -9003,9 +10380,6 @@ skills["StormblastBoltsAmmoPlayer"] = {
constantStats = {
{ "base_number_of_crossbow_bolts", 5 },
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"action_can_be_used_in_aiming_stance",
@@ -9014,6 +10388,7 @@ skills["StormblastBoltsAmmoPlayer"] = {
"base_deal_no_damage",
"display_statset_hide_usage_stats",
"quality_display_base_number_of_crossbow_bolts_is_gem",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9064,7 +10439,7 @@ skills["StormblastBoltsPlayer"] = {
name = "Stormblast Bolts",
hidden = true,
description = "Aims skyward and fires charged bolts that land around the target location, dealing damage and lodging in the ground for a duration. Detonator Skills will cause these bolts to explode. Can fire a limited number of bolts before needing to reload.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Rain] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -9133,7 +10508,7 @@ skills["StormblastBoltsPlayer"] = {
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
{ "active_skill_base_area_of_effect_radius", 8 },
{ "active_skill_base_secondary_area_of_effect_radius", 35 },
- { "base_skill_effect_duration", 8000 },
+ { "base_skill_effect_duration", 10000 },
{ "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "stormblast_bolts_maximum_active_bolt_count", 30 },
},
@@ -9218,46 +10593,46 @@ skills["StormblastBoltsPlayer"] = {
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { baseMultiplier = 0.95, actorLevel = 1, },
- [2] = { baseMultiplier = 1.05, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 1.16, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 1.27, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 1.38, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 1.49, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 1.61, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 1.73, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 1.83, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 1.95, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 2.08, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 2.22, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 2.37, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 2.53, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 2.71, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 2.9, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 3.11, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 3.35, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 3.6, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 3.88, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 4.18, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 4.5, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 4.85, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 5.22, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 5.63, actorLevel = 136.875, },
- [26] = { baseMultiplier = 6.06, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 6.53, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 7.04, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 7.58, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 8.17, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 8.8, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 9.48, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 10.21, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 11, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 11.85, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 12.77, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 13.75, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 14.81, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 15.96, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 17.19, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 1.15, actorLevel = 1, },
+ [2] = { baseMultiplier = 1.27, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.4, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.53, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.67, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.81, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.95, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 2.09, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 2.22, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 2.36, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 2.51, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 2.68, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 2.86, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 3.06, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 3.28, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 3.51, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 3.77, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 4.05, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 4.36, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 4.7, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 5.06, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 5.45, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 5.87, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 6.32, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 6.81, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 7.34, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 7.91, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 8.52, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 9.18, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 9.89, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 10.65, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 11.47, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 12.36, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 13.31, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 14.34, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 15.45, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 16.65, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 17.93, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 19.32, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 20.81, actorLevel = 288.29998779297, },
},
},
}
@@ -9266,11 +10641,11 @@ skills["MagmaBarrierPlayer"] = {
name = "Magma Barrier",
baseTypeName = "Magma Barrier",
color = 1,
- description = "When you raise your Shield it is infused with magma for a short time. Blocking during this time will spray magma at the attacker and grant you an Endurance Charge.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, },
+ description = "While active, increases your Block Chance passively and imbues your Shield with lava over time. When fully imbued, your next Block with your Shield raised will expend the lava to create an explosion, granting you an Endurance Charge.",
+ skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.GeneratesCharges] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
- { "igneous_shield_perfect_block_window_time_ms", 10 },
+ { "skill_igneous_shield_grants_block_chance_+%", 0.25 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -9318,12 +10693,13 @@ skills["MagmaBarrierPlayer"] = {
[1] = {
label = "Buff",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "igneous_shield",
baseFlags = {
},
constantStats = {
- { "igneous_shield_perfect_block_window_time_ms", 500 },
- { "igneous_shield_perfect_block_cooldown_ms", 750 },
+ { "skill_igneous_shield_grants_block_chance_+%", 25 },
+ { "igneous_shield_charge_up_time_ms", 8000 },
+ { "igneous_shield_charge_up_time_+%", 0 },
},
stats = {
"igneous_shield_gain_endurance_charge_on_block",
@@ -9377,58 +10753,58 @@ skills["MagmaBarrierPlayer"] = {
skills["MagmaSprayPlayer"] = {
name = "Magma Spray",
hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.GeneratesCharges] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
levels = {
- [1] = { critChance = 5, baseMultiplier = 1.3, levelRequirement = 0, },
- [2] = { critChance = 5, baseMultiplier = 1.43, levelRequirement = 0, },
- [3] = { critChance = 5, baseMultiplier = 1.57, levelRequirement = 0, },
- [4] = { critChance = 5, baseMultiplier = 1.72, levelRequirement = 0, },
- [5] = { critChance = 5, baseMultiplier = 1.86, levelRequirement = 0, },
- [6] = { critChance = 5, baseMultiplier = 2.01, levelRequirement = 0, },
- [7] = { critChance = 5, baseMultiplier = 2.16, levelRequirement = 0, },
- [8] = { critChance = 5, baseMultiplier = 2.3, levelRequirement = 0, },
- [9] = { critChance = 5, baseMultiplier = 2.43, levelRequirement = 0, },
- [10] = { critChance = 5, baseMultiplier = 2.57, levelRequirement = 0, },
- [11] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 0, },
- [12] = { critChance = 5, baseMultiplier = 2.88, levelRequirement = 0, },
- [13] = { critChance = 5, baseMultiplier = 3.05, levelRequirement = 0, },
- [14] = { critChance = 5, baseMultiplier = 3.24, levelRequirement = 0, },
- [15] = { critChance = 5, baseMultiplier = 3.44, levelRequirement = 0, },
- [16] = { critChance = 5, baseMultiplier = 3.66, levelRequirement = 0, },
- [17] = { critChance = 5, baseMultiplier = 3.89, levelRequirement = 0, },
- [18] = { critChance = 5, baseMultiplier = 4.14, levelRequirement = 0, },
- [19] = { critChance = 5, baseMultiplier = 4.41, levelRequirement = 0, },
- [20] = { critChance = 5, baseMultiplier = 4.71, levelRequirement = 0, },
- [21] = { critChance = 5, baseMultiplier = 5.02, levelRequirement = 0, },
- [22] = { critChance = 5, baseMultiplier = 5.36, levelRequirement = 0, },
- [23] = { critChance = 5, baseMultiplier = 5.71, levelRequirement = 0, },
- [24] = { critChance = 5, baseMultiplier = 6.09, levelRequirement = 0, },
- [25] = { critChance = 5, baseMultiplier = 6.5, levelRequirement = 0, },
- [26] = { critChance = 5, baseMultiplier = 6.93, levelRequirement = 0, },
- [27] = { critChance = 5, baseMultiplier = 7.4, levelRequirement = 0, },
- [28] = { critChance = 5, baseMultiplier = 7.89, levelRequirement = 0, },
- [29] = { critChance = 5, baseMultiplier = 8.41, levelRequirement = 0, },
- [30] = { critChance = 5, baseMultiplier = 8.97, levelRequirement = 0, },
- [31] = { critChance = 5, baseMultiplier = 9.57, levelRequirement = 0, },
- [32] = { critChance = 5, baseMultiplier = 10.21, levelRequirement = 0, },
- [33] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 0, },
- [34] = { critChance = 5, baseMultiplier = 11.62, levelRequirement = 0, },
- [35] = { critChance = 5, baseMultiplier = 12.39, levelRequirement = 0, },
- [36] = { critChance = 5, baseMultiplier = 13.21, levelRequirement = 0, },
- [37] = { critChance = 5, baseMultiplier = 14.09, levelRequirement = 0, },
- [38] = { critChance = 5, baseMultiplier = 15.03, levelRequirement = 0, },
- [39] = { critChance = 5, baseMultiplier = 16.03, levelRequirement = 0, },
- [40] = { critChance = 5, baseMultiplier = 17.1, levelRequirement = 0, },
+ [1] = { critChance = 5, baseMultiplier = 1.7, levelRequirement = 0, },
+ [2] = { critChance = 5, baseMultiplier = 1.87, levelRequirement = 0, },
+ [3] = { critChance = 5, baseMultiplier = 2.07, levelRequirement = 0, },
+ [4] = { critChance = 5, baseMultiplier = 2.27, levelRequirement = 0, },
+ [5] = { critChance = 5, baseMultiplier = 2.47, levelRequirement = 0, },
+ [6] = { critChance = 5, baseMultiplier = 2.67, levelRequirement = 0, },
+ [7] = { critChance = 5, baseMultiplier = 2.88, levelRequirement = 0, },
+ [8] = { critChance = 5, baseMultiplier = 3.09, levelRequirement = 0, },
+ [9] = { critChance = 5, baseMultiplier = 3.28, levelRequirement = 0, },
+ [10] = { critChance = 5, baseMultiplier = 3.49, levelRequirement = 0, },
+ [11] = { critChance = 5, baseMultiplier = 3.72, levelRequirement = 0, },
+ [12] = { critChance = 5, baseMultiplier = 3.96, levelRequirement = 0, },
+ [13] = { critChance = 5, baseMultiplier = 4.23, levelRequirement = 0, },
+ [14] = { critChance = 5, baseMultiplier = 4.53, levelRequirement = 0, },
+ [15] = { critChance = 5, baseMultiplier = 4.84, levelRequirement = 0, },
+ [16] = { critChance = 5, baseMultiplier = 5.19, levelRequirement = 0, },
+ [17] = { critChance = 5, baseMultiplier = 5.57, levelRequirement = 0, },
+ [18] = { critChance = 5, baseMultiplier = 5.99, levelRequirement = 0, },
+ [19] = { critChance = 5, baseMultiplier = 6.44, levelRequirement = 0, },
+ [20] = { critChance = 5, baseMultiplier = 6.94, levelRequirement = 0, },
+ [21] = { critChance = 5, baseMultiplier = 7.48, levelRequirement = 0, },
+ [22] = { critChance = 5, baseMultiplier = 8.06, levelRequirement = 0, },
+ [23] = { critChance = 5, baseMultiplier = 8.68, levelRequirement = 0, },
+ [24] = { critChance = 5, baseMultiplier = 9.35, levelRequirement = 0, },
+ [25] = { critChance = 5, baseMultiplier = 10.07, levelRequirement = 0, },
+ [26] = { critChance = 5, baseMultiplier = 10.85, levelRequirement = 0, },
+ [27] = { critChance = 5, baseMultiplier = 11.69, levelRequirement = 0, },
+ [28] = { critChance = 5, baseMultiplier = 12.59, levelRequirement = 0, },
+ [29] = { critChance = 5, baseMultiplier = 13.56, levelRequirement = 0, },
+ [30] = { critChance = 5, baseMultiplier = 14.61, levelRequirement = 0, },
+ [31] = { critChance = 5, baseMultiplier = 15.74, levelRequirement = 0, },
+ [32] = { critChance = 5, baseMultiplier = 16.96, levelRequirement = 0, },
+ [33] = { critChance = 5, baseMultiplier = 18.27, levelRequirement = 0, },
+ [34] = { critChance = 5, baseMultiplier = 19.68, levelRequirement = 0, },
+ [35] = { critChance = 5, baseMultiplier = 21.2, levelRequirement = 0, },
+ [36] = { critChance = 5, baseMultiplier = 22.84, levelRequirement = 0, },
+ [37] = { critChance = 5, baseMultiplier = 24.61, levelRequirement = 0, },
+ [38] = { critChance = 5, baseMultiplier = 26.51, levelRequirement = 0, },
+ [39] = { critChance = 5, baseMultiplier = 28.56, levelRequirement = 0, },
+ [40] = { critChance = 5, baseMultiplier = 30.77, levelRequirement = 0, },
},
statSets = {
[1] = {
label = "Magma Spray",
- baseEffectiveness = 2.0699999332428,
+ baseEffectiveness = 1.210000038147,
incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "igneous_shield_explosion",
baseFlags = {
attack = true,
area = true,
@@ -9436,58 +10812,60 @@ skills["MagmaSprayPlayer"] = {
shieldAttack = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 22 },
- { "igneous_shield_explosion_angle_degrees", 180 },
+ { "active_skill_base_area_of_effect_radius", 28 },
+ { "igneous_shield_explosion_angle_degrees", 157 },
},
stats = {
"off_hand_weapon_minimum_fire_damage",
"off_hand_weapon_maximum_fire_damage",
"off_hand_minimum_added_fire_damage_per_15_shield_armour",
"off_hand_maximum_added_fire_damage_per_15_shield_armour",
+ "off_hand_minimum_added_fire_damage_per_15_shield_evasion",
+ "off_hand_maximum_added_fire_damage_per_15_shield_evasion",
"base_skill_show_average_damage_instead_of_dps",
"display_statset_hide_usage_stats",
},
levels = {
- [1] = { 6, 10, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 11, 16, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 17, 25, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 23, 34, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 29, 44, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 36, 55, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 44, 66, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 52, 78, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 60, 90, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 69, 103, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 78, 116, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 87, 130, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 97, 145, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 107, 160, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 118, 176, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 129, 193, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 140, 210, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 152, 228, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 164, 246, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 177, 265, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 190, 284, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 203, 304, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 217, 325, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 231, 346, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 246, 368, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 261, 391, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 276, 414, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 292, 437, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 308, 462, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 324, 487, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 341, 512, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 359, 538, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 377, 565, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 395, 592, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 413, 620, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 432, 648, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 452, 677, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 471, 707, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 491, 737, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 512, 768, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 4, 6, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6, 9, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 15, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, 20, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 17, 26, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 21, 32, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 38, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 30, 45, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 35, 53, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 40, 60, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 45, 68, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 51, 76, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 57, 85, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 63, 94, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 69, 103, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 75, 113, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 82, 123, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 89, 133, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 96, 144, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 103, 155, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 111, 166, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 119, 178, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 127, 190, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 135, 202, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 144, 215, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 152, 228, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 161, 242, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 170, 256, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 180, 270, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 190, 284, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 200, 299, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 210, 315, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 220, 330, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 231, 346, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 242, 362, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 253, 379, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 264, 396, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 275, 413, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 287, 431, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 299, 449, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -9504,49 +10882,49 @@ skills["MoltenBlastPlayer"] = {
},
castTime = 1,
qualityStats = {
- { "base_inflict_fire_exposure_on_hit_%_chance", 1.5 },
+ { "inflict_exposure_on_hit_%_chance", 1.5 },
},
levels = {
[1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 6, }, },
[2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.72, levelRequirement = 3, cost = { Mana = 6, }, },
[3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 12, }, },
- [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 15, }, },
- [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 23, }, },
- [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 26, }, },
- [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 28, }, },
+ [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.87, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.02, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.1, levelRequirement = 22, cost = { Mana = 12, }, },
+ [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.25, levelRequirement = 31, cost = { Mana = 15, }, },
+ [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.33, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.42, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.52, levelRequirement = 46, cost = { Mana = 20, }, },
+ [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.62, levelRequirement = 52, cost = { Mana = 22, }, },
+ [14] = { attackSpeedMultiplier = -25, baseMultiplier = 1.73, levelRequirement = 58, cost = { Mana = 25, }, },
+ [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.85, levelRequirement = 64, cost = { Mana = 27, }, },
+ [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 66, cost = { Mana = 29, }, },
[17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 72, cost = { Mana = 32, }, },
- [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 35, }, },
- [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 39, }, },
- [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 43, }, },
- [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 48, }, },
- [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 53, }, },
- [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 59, }, },
- [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 65, }, },
- [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 72, }, },
- [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 80, }, },
- [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 89, }, },
- [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 99, }, },
- [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 109, }, },
- [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 121, }, },
- [31] = { attackSpeedMultiplier = -25, baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 135, }, },
- [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 149, }, },
- [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 165, }, },
- [34] = { attackSpeedMultiplier = -25, baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 183, }, },
- [35] = { attackSpeedMultiplier = -25, baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 203, }, },
- [36] = { attackSpeedMultiplier = -25, baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 225, }, },
- [37] = { attackSpeedMultiplier = -25, baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 249, }, },
- [38] = { attackSpeedMultiplier = -25, baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 277, }, },
- [39] = { attackSpeedMultiplier = -25, baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 306, }, },
- [40] = { attackSpeedMultiplier = -25, baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 340, }, },
+ [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.29, levelRequirement = 78, cost = { Mana = 34, }, },
+ [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.46, levelRequirement = 84, cost = { Mana = 37, }, },
+ [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.65, levelRequirement = 90, cost = { Mana = 40, }, },
+ [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 43, }, },
+ [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.08, levelRequirement = 90, cost = { Mana = 47, }, },
+ [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 50, }, },
+ [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 54, }, },
+ [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.85, levelRequirement = 90, cost = { Mana = 58, }, },
+ [26] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 63, }, },
+ [27] = { attackSpeedMultiplier = -25, baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 67, }, },
+ [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.81, levelRequirement = 90, cost = { Mana = 72, }, },
+ [29] = { attackSpeedMultiplier = -25, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 77, }, },
+ [30] = { attackSpeedMultiplier = -25, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 83, }, },
+ [31] = { attackSpeedMultiplier = -25, baseMultiplier = 6.02, levelRequirement = 90, cost = { Mana = 89, }, },
+ [32] = { attackSpeedMultiplier = -25, baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 95, }, },
+ [33] = { attackSpeedMultiplier = -25, baseMultiplier = 6.99, levelRequirement = 90, cost = { Mana = 101, }, },
+ [34] = { attackSpeedMultiplier = -25, baseMultiplier = 7.53, levelRequirement = 90, cost = { Mana = 108, }, },
+ [35] = { attackSpeedMultiplier = -25, baseMultiplier = 8.11, levelRequirement = 90, cost = { Mana = 115, }, },
+ [36] = { attackSpeedMultiplier = -25, baseMultiplier = 8.73, levelRequirement = 90, cost = { Mana = 123, }, },
+ [37] = { attackSpeedMultiplier = -25, baseMultiplier = 9.41, levelRequirement = 90, cost = { Mana = 131, }, },
+ [38] = { attackSpeedMultiplier = -25, baseMultiplier = 10.14, levelRequirement = 90, cost = { Mana = 140, }, },
+ [39] = { attackSpeedMultiplier = -25, baseMultiplier = 10.92, levelRequirement = 90, cost = { Mana = 149, }, },
+ [40] = { attackSpeedMultiplier = -25, baseMultiplier = 11.76, levelRequirement = 90, cost = { Mana = 158, }, },
},
statSets = {
[1] = {
@@ -9566,6 +10944,8 @@ skills["MoltenBlastPlayer"] = {
{ "molten_blast_projectile_speed_as_%_of_attack_time", 150 },
{ "molten_blast_target_range", 60 },
{ "attack_maximum_action_distance_+", 8 },
+ { "active_skill_ignite_chance_+%_final", 200 },
+ { "active_skill_ignite_duration_+%_final", 100 },
},
stats = {
"base_is_projectile",
@@ -9573,6 +10953,7 @@ skills["MoltenBlastPlayer"] = {
"projectile_uses_contact_position",
"check_for_targets_between_initiator_and_projectile_source",
"double_number_of_projectiles_from_dual_wielding",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -9630,6 +11011,8 @@ skills["MoltenBlastPlayer"] = {
{ "projectile_maximum_range_override", 60 },
{ "molten_blast_projectile_speed_as_%_of_attack_time", 150 },
{ "attack_maximum_action_distance_+", 8 },
+ { "active_skill_ignite_chance_+%_final", 200 },
+ { "active_skill_ignite_duration_+%_final", 100 },
{ "base_number_of_projectiles", 8 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
{ "projectile_maximum_range_override", -30 },
@@ -9640,7 +11023,9 @@ skills["MoltenBlastPlayer"] = {
"base_is_projectile",
"projectile_uses_contact_position",
"check_for_targets_between_initiator_and_projectile_source",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"projectiles_fire_at_ground",
+ "modifiers_to_projectile_count_do_not_apply",
},
levels = {
[1] = { baseMultiplier = 0.65, actorLevel = 1, },
@@ -9687,12 +11072,270 @@ skills["MoltenBlastPlayer"] = {
},
}
}
+skills["MetaMortarCannonPlayer"] = {
+ name = "Mortar Cannon",
+ baseTypeName = "Mortar Cannon",
+ color = 1,
+ description = "Raise a cannon Ballista Totem which uses socketed Grenade Skills, with significantly improved Cooldown Recovery Rate.",
+ skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Limit] = true, [SkillType.Grenade] = true, [SkillType.NoAttackInPlace] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.UsableWhileMoving] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "totem_skill_area_of_effect_+%", 1 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 23, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 27, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 30, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 34, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 38, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 42, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 47, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 51, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 57, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 62, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 68, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 74, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 81, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 88, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 95, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 103, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 112, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 121, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 131, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 141, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 163, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 175, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 202, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 217, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 232, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 248, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 284, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 303, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 323, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 345, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 368, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 392, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 418, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 445, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 473, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Mortar Cannon",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ totem = true,
+ attack = true,
+ },
+ constantStats = {
+ { "base_totem_duration", 8000 },
+ { "base_totem_range", 120 },
+ { "base_number_of_totems_allowed", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "totem_elemental_resistance_%",
+ "totem_chaos_resistance_%",
+ "base_skill_summons_totems",
+ "is_totem",
+ "skill_is_deploy_skill",
+ "is_ranged_attack_totem",
+ "quality_display_base_totem_duration_is_gem",
+ "can_perform_skill_while_moving",
+ "display_statset_no_hit_damage",
+ "totem_targets_ignoring_action_distance",
+ },
+ levels = {
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["SupportMortarCannonPlayer"] = {
+ name = "SupportMortarCannonPlayer",
+ hidden = true,
+ support = true,
+ requireSkillTypes = { SkillType.Grenade, },
+ addSkillTypes = { SkillType.UsedByTotem, },
+ excludeSkillTypes = { SkillType.Meta, SkillType.Triggered, SkillType.Channel, SkillType.Persistent, },
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ addFlags = {
+ totem = true,
+ },
+ statSets = {
+ [1] = {
+ label = "SupportMortarCannonPlayer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_gem_stat_descriptions",
+ statMap = {
+ ["support_grenade_ballista_damage_+%_final"] = {
+ mod("Damage", "MORE", nil),
+ },
+ ["support_grenade_ballista_attack_speed_+%_final"] = {
+ mod("Speed", "MORE", nil, ModFlag.Attack),
+ },
+ },
+ baseFlags = {
+ },
+ baseMods = {
+ mod("ActiveTotemLimit", "BASE", 1),
+ },
+ constantStats = {
+ { "skill_disabled_unless_cloned", 2 },
+ { "support_grenade_ballista_attack_speed_+%_final", -50 },
+ { "grenade_skill_cooldown_speed_+%", 100 },
+ { "support_grenade_ballista_damage_+%_final", -50 },
+ { "muzzle_flash_animation_index", 1 },
+ },
+ stats = {
+ "base_skill_is_totemified",
+ "base_skill_is_ballistified",
+ "ignore_muzzle_flash_animation_name_override",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["OilGrenadePlayer"] = {
name = "Oil Grenade",
baseTypeName = "Oil Grenade",
color = 1,
description = "Fire a bouncing Grenade that bursts in a spray of Oil when the fuse expires or when it impacts an Enemy, dealing minimal damage but covering the ground and nearby enemies in Oil. Oil created this way can be Ignited by Detonator Skills or Ignited Ground.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -9704,43 +11347,43 @@ skills["OilGrenadePlayer"] = {
[1] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.4, cooldown = 5, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.44, cooldown = 5, levelRequirement = 3, cost = { Mana = 10, }, },
[3] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.49, cooldown = 5, levelRequirement = 6, cost = { Mana = 11, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 5, levelRequirement = 10, cost = { Mana = 12, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 5, levelRequirement = 14, cost = { Mana = 13, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 5, levelRequirement = 18, cost = { Mana = 15, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 5, levelRequirement = 22, cost = { Mana = 17, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 5, levelRequirement = 26, cost = { Mana = 19, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 5, levelRequirement = 31, cost = { Mana = 21, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 5, levelRequirement = 36, cost = { Mana = 23, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 5, levelRequirement = 41, cost = { Mana = 25, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 5, levelRequirement = 46, cost = { Mana = 28, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 5, levelRequirement = 52, cost = { Mana = 31, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 5, levelRequirement = 58, cost = { Mana = 35, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 5, levelRequirement = 64, cost = { Mana = 39, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 66, cost = { Mana = 43, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.53, cooldown = 5, levelRequirement = 10, cost = { Mana = 13, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.58, cooldown = 5, levelRequirement = 14, cost = { Mana = 15, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.63, cooldown = 5, levelRequirement = 18, cost = { Mana = 17, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.68, cooldown = 5, levelRequirement = 22, cost = { Mana = 19, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.73, cooldown = 5, levelRequirement = 26, cost = { Mana = 21, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.77, cooldown = 5, levelRequirement = 31, cost = { Mana = 23, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.82, cooldown = 5, levelRequirement = 36, cost = { Mana = 25, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.87, cooldown = 5, levelRequirement = 41, cost = { Mana = 28, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 0.93, cooldown = 5, levelRequirement = 46, cost = { Mana = 31, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 3, cooldown = 5, levelRequirement = 52, cost = { Mana = 34, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.06, cooldown = 5, levelRequirement = 58, cost = { Mana = 37, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.14, cooldown = 5, levelRequirement = 64, cost = { Mana = 40, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.22, cooldown = 5, levelRequirement = 66, cost = { Mana = 44, }, },
[17] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.31, cooldown = 5, levelRequirement = 72, cost = { Mana = 47, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 5, levelRequirement = 78, cost = { Mana = 53, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 5, levelRequirement = 84, cost = { Mana = 58, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 65, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 5, levelRequirement = 90, cost = { Mana = 72, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 5, levelRequirement = 90, cost = { Mana = 80, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 88, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 5, levelRequirement = 90, cost = { Mana = 98, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 109, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 5, levelRequirement = 90, cost = { Mana = 120, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 133, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 148, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 164, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 182, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 201, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 223, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 5, levelRequirement = 90, cost = { Mana = 247, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 274, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 304, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 337, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 373, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 413, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 458, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 508, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.41, cooldown = 5, levelRequirement = 78, cost = { Mana = 51, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.52, cooldown = 5, levelRequirement = 84, cost = { Mana = 56, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 60, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.76, cooldown = 5, levelRequirement = 90, cost = { Mana = 65, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 1.9, cooldown = 5, levelRequirement = 90, cost = { Mana = 70, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 76, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.2, cooldown = 5, levelRequirement = 90, cost = { Mana = 81, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 87, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.55, cooldown = 5, levelRequirement = 90, cost = { Mana = 94, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 101, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 2.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 108, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.19, cooldown = 5, levelRequirement = 90, cost = { Mana = 116, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 124, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 132, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 3.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 142, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.3, cooldown = 5, levelRequirement = 90, cost = { Mana = 151, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.63, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 5.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 209, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 6.72, cooldown = 5, levelRequirement = 90, cost = { Mana = 222, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 3, baseMultiplier = 7.24, cooldown = 5, levelRequirement = 90, cost = { Mana = 236, }, },
},
statSets = {
[1] = {
@@ -9762,11 +11405,11 @@ skills["OilGrenadePlayer"] = {
{ "base_secondary_skill_effect_duration", 5000 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 80 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "skill_base_covered_in_oil_movement_speed_+%_final_to_apply", -20 },
{ "skill_base_ground_oil_movement_speed_+%_final_to_apply", -30 },
- { "skill_base_ground_oil_exposure_-_to_total_fire_resistance", 20 },
- { "skill_base_covered_in_oil_exposure_-_to_total_fire_resistance", 20 },
+ { "skill_base_ground_oil_exposure_-_to_total_elemental_resistance", 20 },
+ { "skill_base_covered_in_oil_exposure_-_to_total_elemental_resistance", 20 },
{ "fixed_projectile_spread", 30 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
},
@@ -9836,8 +11479,7 @@ skills["OverwhelmingPresencePlayer"] = {
skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, },
castTime = 1,
qualityStats = {
- { "skill_overwhelming_pressure_aura_enemy_stun_threshold_+%", -0.25 },
- { "skill_overwhelming_pressure_aura_enemy_ailment_threshold_+%", -0.25 },
+ { "aura_effect_+%", 0.75 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -9942,8 +11584,8 @@ skills["PerfectStrikePlayer"] = {
name = "Perfect Strike",
baseTypeName = "Perfect Strike",
color = 1,
- description = "Charge up your weapon while channelling. Releasing the moment you fully charge will release a wave of Fire.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Channel] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.PerfectTiming] = true, },
+ description = "Channel to charge up your weapon with Fire. Releasing with Perfect Timing will create a damaging wave of intense Fire.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Channel] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.PerfectTiming] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -9953,46 +11595,46 @@ skills["PerfectStrikePlayer"] = {
{ "active_skill_ignite_chance_+%_final", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -65, levelRequirement = 0, cost = { ManaPerMinute = 384, }, },
- [2] = { attackSpeedMultiplier = -65, baseMultiplier = 1.1, levelRequirement = 3, cost = { ManaPerMinute = 425, }, },
- [3] = { attackSpeedMultiplier = -65, baseMultiplier = 1.21, levelRequirement = 6, cost = { ManaPerMinute = 471, }, },
- [4] = { attackSpeedMultiplier = -65, baseMultiplier = 1.32, levelRequirement = 10, cost = { ManaPerMinute = 522, }, },
- [5] = { attackSpeedMultiplier = -65, baseMultiplier = 1.42, levelRequirement = 14, cost = { ManaPerMinute = 578, }, },
- [6] = { attackSpeedMultiplier = -65, baseMultiplier = 1.53, levelRequirement = 18, cost = { ManaPerMinute = 641, }, },
- [7] = { attackSpeedMultiplier = -65, baseMultiplier = 1.64, levelRequirement = 22, cost = { ManaPerMinute = 710, }, },
- [8] = { attackSpeedMultiplier = -65, baseMultiplier = 1.74, levelRequirement = 26, cost = { ManaPerMinute = 787, }, },
- [9] = { attackSpeedMultiplier = -65, baseMultiplier = 1.82, levelRequirement = 31, cost = { ManaPerMinute = 872, }, },
- [10] = { attackSpeedMultiplier = -65, baseMultiplier = 1.91, levelRequirement = 36, cost = { ManaPerMinute = 967, }, },
- [11] = { attackSpeedMultiplier = -65, baseMultiplier = 2.01, levelRequirement = 41, cost = { ManaPerMinute = 1071, }, },
- [12] = { attackSpeedMultiplier = -65, baseMultiplier = 2.11, levelRequirement = 46, cost = { ManaPerMinute = 1187, }, },
- [13] = { attackSpeedMultiplier = -65, baseMultiplier = 2.22, levelRequirement = 52, cost = { ManaPerMinute = 1316, }, },
- [14] = { attackSpeedMultiplier = -65, baseMultiplier = 2.33, levelRequirement = 58, cost = { ManaPerMinute = 1458, }, },
- [15] = { attackSpeedMultiplier = -65, baseMultiplier = 2.44, levelRequirement = 64, cost = { ManaPerMinute = 1615, }, },
- [16] = { attackSpeedMultiplier = -65, baseMultiplier = 2.57, levelRequirement = 66, cost = { ManaPerMinute = 1790, }, },
- [17] = { attackSpeedMultiplier = -65, baseMultiplier = 2.69, levelRequirement = 72, cost = { ManaPerMinute = 1984, }, },
- [18] = { attackSpeedMultiplier = -65, baseMultiplier = 2.83, levelRequirement = 78, cost = { ManaPerMinute = 2198, }, },
- [19] = { attackSpeedMultiplier = -65, baseMultiplier = 2.97, levelRequirement = 84, cost = { ManaPerMinute = 2436, }, },
- [20] = { attackSpeedMultiplier = -65, baseMultiplier = 3.12, levelRequirement = 90, cost = { ManaPerMinute = 2699, }, },
- [21] = { attackSpeedMultiplier = -65, baseMultiplier = 3.27, levelRequirement = 90, cost = { ManaPerMinute = 2991, }, },
- [22] = { attackSpeedMultiplier = -65, baseMultiplier = 3.44, levelRequirement = 90, cost = { ManaPerMinute = 3315, }, },
- [23] = { attackSpeedMultiplier = -65, baseMultiplier = 3.61, levelRequirement = 90, cost = { ManaPerMinute = 3673, }, },
- [24] = { attackSpeedMultiplier = -65, baseMultiplier = 3.79, levelRequirement = 90, cost = { ManaPerMinute = 4070, }, },
- [25] = { attackSpeedMultiplier = -65, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 4510, }, },
- [26] = { attackSpeedMultiplier = -65, baseMultiplier = 4.18, levelRequirement = 90, cost = { ManaPerMinute = 4998, }, },
- [27] = { attackSpeedMultiplier = -65, baseMultiplier = 4.39, levelRequirement = 90, cost = { ManaPerMinute = 5538, }, },
- [28] = { attackSpeedMultiplier = -65, baseMultiplier = 4.61, levelRequirement = 90, cost = { ManaPerMinute = 6137, }, },
- [29] = { attackSpeedMultiplier = -65, baseMultiplier = 4.84, levelRequirement = 90, cost = { ManaPerMinute = 6800, }, },
- [30] = { attackSpeedMultiplier = -65, baseMultiplier = 5.08, levelRequirement = 90, cost = { ManaPerMinute = 7535, }, },
- [31] = { attackSpeedMultiplier = -65, baseMultiplier = 5.33, levelRequirement = 90, cost = { ManaPerMinute = 8350, }, },
- [32] = { attackSpeedMultiplier = -65, baseMultiplier = 5.6, levelRequirement = 90, cost = { ManaPerMinute = 9252, }, },
- [33] = { attackSpeedMultiplier = -65, baseMultiplier = 5.88, levelRequirement = 90, cost = { ManaPerMinute = 10253, }, },
- [34] = { attackSpeedMultiplier = -65, baseMultiplier = 6.18, levelRequirement = 90, cost = { ManaPerMinute = 11361, }, },
- [35] = { attackSpeedMultiplier = -65, baseMultiplier = 6.48, levelRequirement = 90, cost = { ManaPerMinute = 12589, }, },
- [36] = { attackSpeedMultiplier = -65, baseMultiplier = 6.81, levelRequirement = 90, cost = { ManaPerMinute = 13950, }, },
- [37] = { attackSpeedMultiplier = -65, baseMultiplier = 7.15, levelRequirement = 90, cost = { ManaPerMinute = 15458, }, },
- [38] = { attackSpeedMultiplier = -65, baseMultiplier = 7.51, levelRequirement = 90, cost = { ManaPerMinute = 17129, }, },
- [39] = { attackSpeedMultiplier = -65, baseMultiplier = 7.88, levelRequirement = 90, cost = { ManaPerMinute = 18981, }, },
- [40] = { attackSpeedMultiplier = -65, baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 21033, }, },
+ [1] = { attackSpeedMultiplier = -70, levelRequirement = 0, cost = { ManaPerMinute = 372, }, },
+ [2] = { attackSpeedMultiplier = -70, baseMultiplier = 1.1, levelRequirement = 3, cost = { ManaPerMinute = 430, }, },
+ [3] = { attackSpeedMultiplier = -70, baseMultiplier = 1.21, levelRequirement = 6, cost = { ManaPerMinute = 493, }, },
+ [4] = { attackSpeedMultiplier = -70, baseMultiplier = 1.32, levelRequirement = 10, cost = { ManaPerMinute = 560, }, },
+ [5] = { attackSpeedMultiplier = -70, baseMultiplier = 1.42, levelRequirement = 14, cost = { ManaPerMinute = 632, }, },
+ [6] = { attackSpeedMultiplier = -70, baseMultiplier = 1.53, levelRequirement = 18, cost = { ManaPerMinute = 709, }, },
+ [7] = { attackSpeedMultiplier = -70, baseMultiplier = 1.64, levelRequirement = 22, cost = { ManaPerMinute = 791, }, },
+ [8] = { attackSpeedMultiplier = -70, baseMultiplier = 1.74, levelRequirement = 26, cost = { ManaPerMinute = 879, }, },
+ [9] = { attackSpeedMultiplier = -70, baseMultiplier = 1.82, levelRequirement = 31, cost = { ManaPerMinute = 973, }, },
+ [10] = { attackSpeedMultiplier = -70, baseMultiplier = 1.91, levelRequirement = 36, cost = { ManaPerMinute = 1073, }, },
+ [11] = { attackSpeedMultiplier = -70, baseMultiplier = 2.01, levelRequirement = 41, cost = { ManaPerMinute = 1180, }, },
+ [12] = { attackSpeedMultiplier = -70, baseMultiplier = 2.11, levelRequirement = 46, cost = { ManaPerMinute = 1294, }, },
+ [13] = { attackSpeedMultiplier = -70, baseMultiplier = 2.22, levelRequirement = 52, cost = { ManaPerMinute = 1416, }, },
+ [14] = { attackSpeedMultiplier = -70, baseMultiplier = 2.33, levelRequirement = 58, cost = { ManaPerMinute = 1545, }, },
+ [15] = { attackSpeedMultiplier = -70, baseMultiplier = 2.44, levelRequirement = 64, cost = { ManaPerMinute = 1683, }, },
+ [16] = { attackSpeedMultiplier = -70, baseMultiplier = 2.57, levelRequirement = 66, cost = { ManaPerMinute = 1830, }, },
+ [17] = { attackSpeedMultiplier = -70, baseMultiplier = 2.69, levelRequirement = 72, cost = { ManaPerMinute = 1986, }, },
+ [18] = { attackSpeedMultiplier = -70, baseMultiplier = 2.83, levelRequirement = 78, cost = { ManaPerMinute = 2151, }, },
+ [19] = { attackSpeedMultiplier = -70, baseMultiplier = 2.97, levelRequirement = 84, cost = { ManaPerMinute = 2328, }, },
+ [20] = { attackSpeedMultiplier = -70, baseMultiplier = 3.12, levelRequirement = 90, cost = { ManaPerMinute = 2515, }, },
+ [21] = { attackSpeedMultiplier = -70, baseMultiplier = 3.27, levelRequirement = 90, cost = { ManaPerMinute = 2714, }, },
+ [22] = { attackSpeedMultiplier = -70, baseMultiplier = 3.44, levelRequirement = 90, cost = { ManaPerMinute = 2925, }, },
+ [23] = { attackSpeedMultiplier = -70, baseMultiplier = 3.61, levelRequirement = 90, cost = { ManaPerMinute = 3150, }, },
+ [24] = { attackSpeedMultiplier = -70, baseMultiplier = 3.79, levelRequirement = 90, cost = { ManaPerMinute = 3387, }, },
+ [25] = { attackSpeedMultiplier = -70, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 3640, }, },
+ [26] = { attackSpeedMultiplier = -70, baseMultiplier = 4.18, levelRequirement = 90, cost = { ManaPerMinute = 3907, }, },
+ [27] = { attackSpeedMultiplier = -70, baseMultiplier = 4.39, levelRequirement = 90, cost = { ManaPerMinute = 4191, }, },
+ [28] = { attackSpeedMultiplier = -70, baseMultiplier = 4.61, levelRequirement = 90, cost = { ManaPerMinute = 4491, }, },
+ [29] = { attackSpeedMultiplier = -70, baseMultiplier = 4.84, levelRequirement = 90, cost = { ManaPerMinute = 4810, }, },
+ [30] = { attackSpeedMultiplier = -70, baseMultiplier = 5.08, levelRequirement = 90, cost = { ManaPerMinute = 5147, }, },
+ [31] = { attackSpeedMultiplier = -70, baseMultiplier = 5.33, levelRequirement = 90, cost = { ManaPerMinute = 5504, }, },
+ [32] = { attackSpeedMultiplier = -70, baseMultiplier = 5.6, levelRequirement = 90, cost = { ManaPerMinute = 5882, }, },
+ [33] = { attackSpeedMultiplier = -70, baseMultiplier = 5.88, levelRequirement = 90, cost = { ManaPerMinute = 6282, }, },
+ [34] = { attackSpeedMultiplier = -70, baseMultiplier = 6.18, levelRequirement = 90, cost = { ManaPerMinute = 6705, }, },
+ [35] = { attackSpeedMultiplier = -70, baseMultiplier = 6.48, levelRequirement = 90, cost = { ManaPerMinute = 7152, }, },
+ [36] = { attackSpeedMultiplier = -70, baseMultiplier = 6.81, levelRequirement = 90, cost = { ManaPerMinute = 7626, }, },
+ [37] = { attackSpeedMultiplier = -70, baseMultiplier = 7.15, levelRequirement = 90, cost = { ManaPerMinute = 8126, }, },
+ [38] = { attackSpeedMultiplier = -70, baseMultiplier = 7.51, levelRequirement = 90, cost = { ManaPerMinute = 8655, }, },
+ [39] = { attackSpeedMultiplier = -70, baseMultiplier = 7.88, levelRequirement = 90, cost = { ManaPerMinute = 9215, }, },
+ [40] = { attackSpeedMultiplier = -70, baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 9806, }, },
},
preDamageFunc = function(activeSkill, output)
activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime
@@ -10020,6 +11662,7 @@ skills["PerfectStrikePlayer"] = {
stats = {
"is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -10075,184 +11718,62 @@ skills["PerfectStrikePlayer"] = {
duration = true,
channelRelease = true,
},
- baseMods = {
- mod("Condition:PerfectTiming", "FLAG", true),
- },
constantStats = {
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
{ "active_skill_override_turn_duration_ms", 360 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
{ "channel_end_duration_as_%_of_attack_time", 35 },
{ "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
- { "melee_range_+", 14 },
+ { "melee_range_+", 35 },
},
stats = {
"is_area_damage",
"base_skill_show_average_damage_instead_of_dps",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
"display_statset_hide_usage_stats",
+ "perfectly_timed",
},
levels = {
- [1] = { baseMultiplier = 4.2, actorLevel = 1, },
- [2] = { baseMultiplier = 4.62, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 5.08, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 5.54, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 5.98, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 6.43, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 6.88, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 7.29, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 7.66, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 8.04, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 8.44, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 8.87, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 9.31, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 9.78, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 10.26, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 10.78, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 11.32, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 11.88, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 12.48, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 13.1, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 13.75, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 14.44, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 15.16, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 15.92, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 16.72, actorLevel = 136.875, },
- [26] = { baseMultiplier = 17.55, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 18.43, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 19.35, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 20.32, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 21.34, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 22.4, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 23.52, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 24.7, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 25.94, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 27.23, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 28.59, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 30.02, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 31.53, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 33.1, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 34.76, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["ReapPlayer"] = {
- name = "Reap",
- baseTypeName = "Reap",
- fromItem = true,
- color = 1,
- description = "Conjure a bloody scythe that sweeps across the targeted area, dealing Physical damage to enemies and applying Critical Weakness.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, },
- castTime = 1,
- qualityStats = {
- { "base_skill_effect_duration", 25 },
- },
- levels = {
- [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, },
- },
- statSets = {
- [1] = {
- label = "Reap",
- baseEffectiveness = 2.6500000953674,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "reap",
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "base_skill_effect_duration", 1000 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- },
- stats = {
- "spell_minimum_base_physical_damage",
- "spell_maximum_base_physical_damage",
- "is_area_damage",
- "can_perform_skill_while_moving",
- },
- levels = {
- [1] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 23, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 45, 68, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 53, 80, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 93, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 72, 108, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 83, 125, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 96, 143, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 124, 187, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 160, 240, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 181, 272, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 205, 307, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 231, 346, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 292, 438, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 328, 493, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 369, 553, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 414, 621, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 465, 697, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 522, 783, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 585, 878, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 657, 985, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 737, 1106, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 827, 1241, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 929, 1393, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1043, 1564, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1171, 1757, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1317, 1975, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1480, 2220, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1665, 2498, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1874, 2812, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2111, 3167, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2379, 3569, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 3.3, actorLevel = 1, },
+ [2] = { baseMultiplier = 3.63, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 3.99, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 4.35, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 4.7, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 5.05, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 5.41, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 5.73, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 6.02, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 6.32, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 6.63, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 6.97, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 7.31, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 7.68, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 8.06, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 8.47, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 8.89, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 9.34, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 9.8, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 10.29, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 10.81, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 11.35, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 11.91, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 12.51, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 13.14, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 13.79, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 14.48, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 15.21, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 15.97, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 16.77, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 17.6, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 18.48, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 19.41, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 20.38, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 21.4, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 22.47, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 23.59, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 24.77, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 26.01, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 27.31, actorLevel = 288.29998779297, },
},
},
}
@@ -10261,53 +11782,53 @@ skills["ResonatingShieldPlayer"] = {
name = "Resonating Shield",
baseTypeName = "Resonating Shield",
color = 1,
- description = "Repeatedly hammer your Shield with your weapon causing damaging shockwaves in an area around you. Enemies hit by the shockwave lose Armour for a duration. While using Resonating Shield, your Shield is raised and you will Block all incoming Blockable hits.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, },
+ description = "Repeatedly hammer your Shield with your weapon causing damaging shockwaves in an area around you. Enemies hit by the shockwave lose Armour for a duration. While Channelling Resonating Shield, your Shield is raised and you will Block all incoming Blockable hits.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
{ "armour_break_amount_+%", 1 },
},
levels = {
- [1] = { attackTime = 800, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 430, }, },
- [2] = { attackTime = 800, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 476, }, },
- [3] = { attackTime = 800, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 527, }, },
- [4] = { attackTime = 800, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 585, }, },
- [5] = { attackTime = 800, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 648, }, },
- [6] = { attackTime = 800, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 718, }, },
- [7] = { attackTime = 800, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 796, }, },
- [8] = { attackTime = 800, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 882, }, },
- [9] = { attackTime = 800, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 977, }, },
- [10] = { attackTime = 800, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1083, }, },
- [11] = { attackTime = 800, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1200, }, },
- [12] = { attackTime = 800, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1329, }, },
- [13] = { attackTime = 800, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1473, }, },
- [14] = { attackTime = 800, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1633, }, },
- [15] = { attackTime = 800, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1809, }, },
- [16] = { attackTime = 800, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2005, }, },
- [17] = { attackTime = 800, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2221, }, },
- [18] = { attackTime = 800, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2462, }, },
- [19] = { attackTime = 800, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2728, }, },
- [20] = { attackTime = 800, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3023, }, },
- [21] = { attackTime = 800, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3350, }, },
- [22] = { attackTime = 800, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3712, }, },
- [23] = { attackTime = 800, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4113, }, },
- [24] = { attackTime = 800, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4558, }, },
- [25] = { attackTime = 800, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5050, }, },
- [26] = { attackTime = 800, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5596, }, },
- [27] = { attackTime = 800, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6201, }, },
- [28] = { attackTime = 800, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6872, }, },
- [29] = { attackTime = 800, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7615, }, },
- [30] = { attackTime = 800, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8438, }, },
- [31] = { attackTime = 800, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9350, }, },
- [32] = { attackTime = 800, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10361, }, },
- [33] = { attackTime = 800, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 11481, }, },
- [34] = { attackTime = 800, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 12722, }, },
- [35] = { attackTime = 800, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 14097, }, },
- [36] = { attackTime = 800, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 15621, }, },
- [37] = { attackTime = 800, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 17310, }, },
- [38] = { attackTime = 800, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 19181, }, },
- [39] = { attackTime = 800, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 21255, }, },
- [40] = { attackTime = 800, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 23553, }, },
+ [1] = { attackTime = 800, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 417, }, },
+ [2] = { attackTime = 800, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 482, }, },
+ [3] = { attackTime = 800, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 552, }, },
+ [4] = { attackTime = 800, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 627, }, },
+ [5] = { attackTime = 800, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 708, }, },
+ [6] = { attackTime = 800, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 794, }, },
+ [7] = { attackTime = 800, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 886, }, },
+ [8] = { attackTime = 800, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 984, }, },
+ [9] = { attackTime = 800, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 1090, }, },
+ [10] = { attackTime = 800, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1202, }, },
+ [11] = { attackTime = 800, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1321, }, },
+ [12] = { attackTime = 800, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1449, }, },
+ [13] = { attackTime = 800, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1585, }, },
+ [14] = { attackTime = 800, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1730, }, },
+ [15] = { attackTime = 800, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1885, }, },
+ [16] = { attackTime = 800, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2049, }, },
+ [17] = { attackTime = 800, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2223, }, },
+ [18] = { attackTime = 800, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2409, }, },
+ [19] = { attackTime = 800, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2607, }, },
+ [20] = { attackTime = 800, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 2816, }, },
+ [21] = { attackTime = 800, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3039, }, },
+ [22] = { attackTime = 800, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3276, }, },
+ [23] = { attackTime = 800, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3527, }, },
+ [24] = { attackTime = 800, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3793, }, },
+ [25] = { attackTime = 800, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4076, }, },
+ [26] = { attackTime = 800, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4375, }, },
+ [27] = { attackTime = 800, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4693, }, },
+ [28] = { attackTime = 800, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5029, }, },
+ [29] = { attackTime = 800, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5386, }, },
+ [30] = { attackTime = 800, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5763, }, },
+ [31] = { attackTime = 800, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6163, }, },
+ [32] = { attackTime = 800, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6586, }, },
+ [33] = { attackTime = 800, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7034, }, },
+ [34] = { attackTime = 800, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7508, }, },
+ [35] = { attackTime = 800, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8009, }, },
+ [36] = { attackTime = 800, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8539, }, },
+ [37] = { attackTime = 800, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9100, }, },
+ [38] = { attackTime = 800, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9692, }, },
+ [39] = { attackTime = 800, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10318, }, },
+ [40] = { attackTime = 800, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10980, }, },
},
statSets = {
[1] = {
@@ -10324,327 +11845,68 @@ skills["ResonatingShieldPlayer"] = {
constantStats = {
{ "active_skill_base_area_of_effect_radius", 23 },
{ "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "armour_broken_skill_event_variation", 1 },
- },
- stats = {
- "off_hand_weapon_minimum_physical_damage",
- "off_hand_weapon_maximum_physical_damage",
- "off_hand_minimum_added_physical_damage_per_15_shield_armour",
- "off_hand_maximum_added_physical_damage_per_15_shield_armour",
- "apply_X_armour_break_on_hit",
- "can_perform_skill_while_moving",
- "active_skill_does_not_decay_heavy_stun_during_action",
- "attack_speed_modifiers_apply_to_over_time_cost",
- "cannot_be_empowered_by_warcries",
- "replace_off_hand_unarmed_attack_stats_with_shield_type",
- },
- levels = {
- [1] = { 4, 6, 6, 8, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 6, 8, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, 6, 8, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 26, 6, 8, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 32, 6, 8, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 26, 38, 6, 8, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, 6, 8, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, 6, 8, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 40, 60, 6, 8, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, 6, 8, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 51, 76, 6, 8, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 57, 85, 6, 8, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 63, 94, 6, 8, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 6, 8, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 75, 113, 6, 8, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, 123, 6, 8, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 89, 133, 6, 8, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 96, 144, 6, 8, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 103, 155, 6, 8, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 166, 6, 8, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 119, 178, 6, 8, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 127, 190, 6, 8, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 135, 202, 6, 8, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 144, 215, 6, 8, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 152, 228, 6, 8, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 161, 242, 6, 8, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 170, 256, 6, 8, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 180, 270, 6, 8, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 190, 284, 6, 8, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 200, 299, 6, 8, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 210, 315, 6, 8, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 220, 330, 6, 8, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 231, 346, 6, 8, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 242, 362, 6, 8, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 253, 379, 6, 8, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 264, 396, 6, 8, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 275, 413, 6, 8, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 287, 431, 6, 8, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 299, 449, 6, 8, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["RipwireBallistaPlayer"] = {
- name = "Ripwire Ballista",
- baseTypeName = "Ripwire Ballista",
- color = 1,
- description = "Deploy a Ballista Totem that fires Pinning bolts which Maim Enemies.",
- skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UseGlobalStats] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, },
- weaponTypes = {
- ["Crossbow"] = true,
- },
- skillTotemId = 22,
- castTime = 1,
- qualityStats = {
- },
- levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 14, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 21, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 24, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 26, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 29, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 33, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 36, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 40, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 45, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 49, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 55, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 61, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 67, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 75, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 83, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 92, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 102, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 113, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 125, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 139, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 154, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 170, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 189, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 209, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 232, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 257, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 285, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 316, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 350, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 388, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 430, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 477, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 528, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 585, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 649, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 719, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 796, }, },
- },
- statSets = {
- [1] = {
- label = "Ballista",
- baseEffectiveness = 1.8600000143051,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- totem = true,
- },
- constantStats = {
- { "base_totem_range", 80 },
- { "base_totem_duration", 16000 },
- { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 },
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1600 },
- { "alt_attack_container_main_hand_base_maximum_attack_distance", 80 },
- { "base_number_of_totems_allowed", 1 },
- { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_+%_final_while_performing_action", -50 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- },
- stats = {
- "alt_attack_container_main_hand_weapon_minimum_physical_damage",
- "alt_attack_container_main_hand_weapon_maximum_physical_damage",
- "totem_elemental_resistance_%",
- "totem_chaos_resistance_%",
- "skill_is_deploy_skill",
- "is_totem",
- "is_ranged_attack_totem",
- "can_perform_skill_while_moving",
- "totem_targets_ignoring_action_distance",
- "base_deal_no_damage",
- "active_skill_has_alt_attack_container",
- "alt_attack_container_main_hand_unarmed_overide_crossbow_type",
- },
- levels = {
- [1] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 10, 14, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 15, 22, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 20, 31, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 26, 40, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 33, 49, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 39, 59, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 46, 70, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 54, 81, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 62, 92, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 70, 105, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 78, 117, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 87, 130, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 96, 144, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 106, 159, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 116, 173, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 126, 189, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 136, 205, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 147, 221, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 159, 238, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 182, 274, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 195, 292, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 208, 311, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 221, 331, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 234, 351, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 248, 372, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 262, 393, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 277, 415, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 291, 437, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 307, 460, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 322, 484, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 338, 507, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 355, 532, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 371, 557, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 388, 583, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 406, 609, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 423, 635, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 442, 662, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 460, 690, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["RipwireBallistaProjectilePlayer"] = {
- name = "Ripwire Bolt",
- hidden = true,
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, },
- weaponTypes = {
- ["Crossbow"] = true,
- },
- castTime = 1,
- qualityStats = {
- { "active_skill_pins_as_though_dealt_damage_+%_final", 2.5 },
- },
- levels = {
- [1] = { baseMultiplier = 0.58, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.64, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.7, levelRequirement = 0, },
- [4] = { baseMultiplier = 0.76, levelRequirement = 0, },
- [5] = { baseMultiplier = 0.82, levelRequirement = 0, },
- [6] = { baseMultiplier = 0.87, levelRequirement = 0, },
- [7] = { baseMultiplier = 0.93, levelRequirement = 0, },
- [8] = { baseMultiplier = 0.98, levelRequirement = 0, },
- [9] = { baseMultiplier = 1.02, levelRequirement = 0, },
- [10] = { baseMultiplier = 1.06, levelRequirement = 0, },
- [11] = { baseMultiplier = 1.11, levelRequirement = 0, },
- [12] = { baseMultiplier = 1.15, levelRequirement = 0, },
- [13] = { baseMultiplier = 1.2, levelRequirement = 0, },
- [14] = { baseMultiplier = 1.24, levelRequirement = 0, },
- [15] = { baseMultiplier = 1.29, levelRequirement = 0, },
- [16] = { baseMultiplier = 1.34, levelRequirement = 0, },
- [17] = { baseMultiplier = 1.38, levelRequirement = 0, },
- [18] = { baseMultiplier = 1.43, levelRequirement = 0, },
- [19] = { baseMultiplier = 1.48, levelRequirement = 0, },
- [20] = { baseMultiplier = 1.53, levelRequirement = 0, },
- [21] = { baseMultiplier = 1.58, levelRequirement = 0, },
- [22] = { baseMultiplier = 1.63, levelRequirement = 0, },
- [23] = { baseMultiplier = 1.69, levelRequirement = 0, },
- [24] = { baseMultiplier = 1.74, levelRequirement = 0, },
- [25] = { baseMultiplier = 1.8, levelRequirement = 0, },
- [26] = { baseMultiplier = 1.86, levelRequirement = 0, },
- [27] = { baseMultiplier = 1.92, levelRequirement = 0, },
- [28] = { baseMultiplier = 1.99, levelRequirement = 0, },
- [29] = { baseMultiplier = 2.05, levelRequirement = 0, },
- [30] = { baseMultiplier = 2.12, levelRequirement = 0, },
- [31] = { baseMultiplier = 2.19, levelRequirement = 0, },
- [32] = { baseMultiplier = 2.26, levelRequirement = 0, },
- [33] = { baseMultiplier = 2.34, levelRequirement = 0, },
- [34] = { baseMultiplier = 2.42, levelRequirement = 0, },
- [35] = { baseMultiplier = 2.5, levelRequirement = 0, },
- [36] = { baseMultiplier = 2.58, levelRequirement = 0, },
- [37] = { baseMultiplier = 2.66, levelRequirement = 0, },
- [38] = { baseMultiplier = 2.75, levelRequirement = 0, },
- [39] = { baseMultiplier = 2.84, levelRequirement = 0, },
- [40] = { baseMultiplier = 2.94, levelRequirement = 0, },
- },
- statSets = {
- [1] = {
- label = "Bolts",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- attack = true,
- projectile = true,
- totem = true,
- },
- constantStats = {
- { "base_pinned_art_variation", 2 },
- { "skill_disabled_unless_cloned", 1 },
- { "projectile_maximum_range_override", 80 },
- { "base_number_of_projectiles", 5 },
- { "projectile_distance_variance", 10 },
- { "active_skill_projectile_speed_+%_variation_final", 40 },
- { "total_projectile_spread_angle_override", 55 },
- { "maim_on_hit_%", 100 },
- { "fixed_projectile_spread", 50 },
- { "active_skill_pins_as_though_dealt_damage_+%_final", 600 },
- },
- stats = {
- "base_is_projectile",
- "projectile_uses_contact_position",
- "projectile_uses_contact_direction",
- "check_for_targets_between_initiator_and_projectile_source",
- "base_all_damage_can_pin",
- "base_skill_is_totemified",
- "quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "armour_broken_skill_event_variation", 1 },
+ },
+ stats = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ "off_hand_minimum_added_physical_damage_per_15_shield_armour",
+ "off_hand_maximum_added_physical_damage_per_15_shield_armour",
+ "apply_X_armour_break_on_hit",
+ "can_perform_skill_while_moving",
+ "active_skill_does_not_decay_heavy_stun_during_action",
+ "attack_speed_modifiers_apply_to_over_time_cost",
+ "cannot_be_empowered_by_warcries",
+ "replace_off_hand_unarmed_attack_stats_with_shield_type",
+ },
+ notMinionStat = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ },
+ levels = {
+ [1] = { 4, 6, 6, 8, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6, 9, 6, 8, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 15, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, 20, 6, 8, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 17, 26, 6, 8, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 21, 32, 6, 8, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 38, 6, 8, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 30, 45, 6, 8, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 35, 53, 6, 8, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 40, 60, 6, 8, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 45, 68, 6, 8, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 51, 76, 6, 8, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 57, 85, 6, 8, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 63, 94, 6, 8, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 69, 103, 6, 8, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 75, 113, 6, 8, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 82, 123, 6, 8, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 89, 133, 6, 8, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 96, 144, 6, 8, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 103, 155, 6, 8, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 111, 166, 6, 8, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 119, 178, 6, 8, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 127, 190, 6, 8, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 135, 202, 6, 8, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 144, 215, 6, 8, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 152, 228, 6, 8, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 161, 242, 6, 8, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 170, 256, 6, 8, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 180, 270, 6, 8, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 190, 284, 6, 8, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 200, 299, 6, 8, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 210, 315, 6, 8, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 220, 330, 6, 8, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 231, 346, 6, 8, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 242, 362, 6, 8, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 253, 379, 6, 8, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 264, 396, 6, 8, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 275, 413, 6, 8, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 287, 431, 6, 8, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 299, 449, 6, 8, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -10654,56 +11916,56 @@ skills["RollingSlamPlayer"] = {
baseTypeName = "Rolling Slam",
color = 1,
description = "Slam the ground to Stun enemies and knock them away, then continue forward and perform a devastating second Slam. Holding down the skill input allows you to change direction as you move.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
},
castTime = 1,
qualityStats = {
- { "support_physical_damage_%_to_gain_as_daze_build_up", 2.5 },
+ { "active_skill_stun_threshold_+%_while_performing_action", 5 },
},
levels = {
- [1] = { attackSpeedMultiplier = -35, levelRequirement = 0, cost = { Mana = 14, }, },
- [2] = { attackSpeedMultiplier = -35, levelRequirement = 3, cost = { Mana = 16, }, },
- [3] = { attackSpeedMultiplier = -35, levelRequirement = 6, cost = { Mana = 18, }, },
- [4] = { attackSpeedMultiplier = -35, levelRequirement = 10, cost = { Mana = 20, }, },
- [5] = { attackSpeedMultiplier = -35, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { attackSpeedMultiplier = -35, levelRequirement = 18, cost = { Mana = 24, }, },
- [7] = { attackSpeedMultiplier = -35, levelRequirement = 22, cost = { Mana = 27, }, },
- [8] = { attackSpeedMultiplier = -35, levelRequirement = 26, cost = { Mana = 30, }, },
- [9] = { attackSpeedMultiplier = -35, levelRequirement = 31, cost = { Mana = 33, }, },
- [10] = { attackSpeedMultiplier = -35, levelRequirement = 36, cost = { Mana = 37, }, },
- [11] = { attackSpeedMultiplier = -35, levelRequirement = 41, cost = { Mana = 41, }, },
- [12] = { attackSpeedMultiplier = -35, levelRequirement = 46, cost = { Mana = 45, }, },
- [13] = { attackSpeedMultiplier = -35, levelRequirement = 52, cost = { Mana = 50, }, },
- [14] = { attackSpeedMultiplier = -35, levelRequirement = 58, cost = { Mana = 56, }, },
- [15] = { attackSpeedMultiplier = -35, levelRequirement = 64, cost = { Mana = 62, }, },
- [16] = { attackSpeedMultiplier = -35, levelRequirement = 66, cost = { Mana = 68, }, },
- [17] = { attackSpeedMultiplier = -35, levelRequirement = 72, cost = { Mana = 76, }, },
- [18] = { attackSpeedMultiplier = -35, levelRequirement = 78, cost = { Mana = 84, }, },
- [19] = { attackSpeedMultiplier = -35, levelRequirement = 84, cost = { Mana = 93, }, },
- [20] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 103, }, },
- [21] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 115, }, },
- [22] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 127, }, },
- [23] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 141, }, },
- [24] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 156, }, },
- [25] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 173, }, },
- [26] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 192, }, },
- [27] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 213, }, },
- [28] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 236, }, },
- [29] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 261, }, },
- [30] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 290, }, },
- [31] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 321, }, },
- [32] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 356, }, },
- [33] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 394, }, },
- [34] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 437, }, },
- [35] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 484, }, },
- [36] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 536, }, },
- [37] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 594, }, },
- [38] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 659, }, },
- [39] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 730, }, },
- [40] = { attackSpeedMultiplier = -35, levelRequirement = 90, cost = { Mana = 809, }, },
+ [1] = { levelRequirement = 0, cost = { Mana = 14, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 16, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 18, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 21, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 24, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 27, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 30, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 33, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 37, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 41, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 45, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 49, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 54, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 59, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 64, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 70, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 76, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 82, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 89, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 96, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 104, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 112, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 121, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 130, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 140, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 150, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 161, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 185, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 211, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 226, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 258, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 275, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 293, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 312, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 333, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 354, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 377, }, },
},
statSets = {
[1] = {
@@ -10716,7 +11978,7 @@ skills["RollingSlamPlayer"] = {
melee = true,
},
constantStats = {
- { "total_attack_time_+_ms", 1000 },
+ { "total_attack_time_+_ms", 1500 },
{ "melee_conditional_step_distance", 15 },
{ "attack_maximum_action_distance_+", 20 },
{ "totemified_rolling_slam_attack_maximum_action_distance_+", 36 },
@@ -10782,7 +12044,7 @@ skills["RollingSlamPlayer"] = {
melee = true,
},
constantStats = {
- { "total_attack_time_+_ms", 1000 },
+ { "total_attack_time_+_ms", 1500 },
{ "melee_conditional_step_distance", 15 },
{ "attack_maximum_action_distance_+", 20 },
{ "totemified_rolling_slam_attack_maximum_action_distance_+", 36 },
@@ -10850,7 +12112,7 @@ skills["RollingSlamPlayer"] = {
melee = true,
},
constantStats = {
- { "total_attack_time_+_ms", 1000 },
+ { "total_attack_time_+_ms", 1500 },
{ "melee_conditional_step_distance", 15 },
{ "attack_maximum_action_distance_+", 20 },
{ "totemified_rolling_slam_attack_maximum_action_distance_+", 36 },
@@ -10918,7 +12180,7 @@ skills["ScavengedPlatingPlayer"] = {
skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, },
castTime = 1,
qualityStats = {
- { "scavenged_plating_armour_+%_final_per_stack", 0.1 },
+ { "base_skill_effect_duration", 100 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -10965,7 +12227,7 @@ skills["ScavengedPlatingPlayer"] = {
statSets = {
[1] = {
label = "Scavenged Plating",
- baseEffectiveness = 0.69999998807907,
+ baseEffectiveness = 0.5,
incrementalEffectiveness = 0.27349999547005,
statDescriptionScope = "scavenged_plating",
statMap = {
@@ -10982,54 +12244,54 @@ skills["ScavengedPlatingPlayer"] = {
constantStats = {
{ "base_skill_effect_duration", 8000 },
{ "scavenged_plating_maximum_stacks_display", 10 },
+ { "scavenged_plating_armour_+%_final_per_stack", 4 },
},
stats = {
"scavenged_plating_thorns_minimum_physical_damage",
"scavenged_plating_thorns_maximum_physical_damage",
- "scavenged_plating_armour_+%_final_per_stack",
"base_deal_no_damage",
},
levels = {
- [1] = { 2, 3, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 4, 5, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, 8, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 8, 12, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 10, 15, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 12, 18, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 15, 22, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 17, 26, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 20, 30, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 23, 35, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 26, 39, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 29, 44, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 33, 49, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 36, 54, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 40, 60, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 43, 65, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 47, 71, 4, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, 77, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 55, 83, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 60, 90, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 64, 96, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 69, 103, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 73, 110, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 78, 117, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 83, 125, 5, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 88, 132, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 93, 140, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 99, 148, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 104, 156, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 110, 165, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 115, 173, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 121, 182, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 127, 191, 6, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 133, 200, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 140, 210, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 146, 219, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 153, 229, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 159, 239, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 166, 249, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 173, 260, 7, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 2, 2, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 14, 22, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 26, 39, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 40, 59, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 52, 79, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 63, 94, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 70, 106, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 74, 112, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 78, 118, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 82, 124, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 87, 130, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 91, 136, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 100, 150, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 104, 157, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 114, 171, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11038,60 +12300,60 @@ skills["SeismicCryPlayer"] = {
name = "Seismic Cry",
baseTypeName = "Seismic Cry",
color = 1,
- description = "Perform a damaging warcry, Knocking Back nearby enemies. If a Heavy Stunned enemy is hit, your next Slam is Empowered to perform an additional Aftershock. If not, this skill's cooldown is reset. Only counts Heavily Stunned enemies for purposes of counting Power Gained.",
- skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Perform a damaging Warcry, Knocking Back nearby enemies and Heavy Stunning enemies that are Primed for Stun. If an enemy is Heavy Stunned or a currently Heavy Stunned enemy is Hit, this Skill Empowers subsequent Slams to perform an additional Aftershock. This Skill's cooldown can be bypassed by expending an Endurance Charge.",
+ skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.Cooldown] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Nova] = true, },
castTime = 0.8,
qualityStats = {
- { "warcry_speed_+%", 2 },
+ { "seismic_cry_slam_skill_aftershock_damage_+%_final", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 25, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 27, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 29, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 31, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 33, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 35, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 38, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 41, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 44, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 47, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 50, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 54, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 58, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 62, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 67, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 72, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 77, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 83, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 89, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 95, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 102, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 109, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 117, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 135, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 145, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 155, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 166, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 191, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 205, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 220, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 236, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 253, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 271, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 291, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 312, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 334, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 358, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 384, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 8, cost = { Mana = 19, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 8, cost = { Mana = 22, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 8, cost = { Mana = 24, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 8, cost = { Mana = 27, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 8, cost = { Mana = 30, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 8, cost = { Mana = 33, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 8, cost = { Mana = 36, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 8, cost = { Mana = 39, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 8, cost = { Mana = 42, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 8, cost = { Mana = 46, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 8, cost = { Mana = 49, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8, cost = { Mana = 52, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8, cost = { Mana = 56, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8, cost = { Mana = 60, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8, cost = { Mana = 64, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8, cost = { Mana = 68, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8, cost = { Mana = 72, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8, cost = { Mana = 76, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8, cost = { Mana = 80, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 85, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 90, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 94, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 99, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 104, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 110, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 115, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 120, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 126, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 132, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 138, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 144, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 151, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 157, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 164, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 171, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 178, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 185, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 193, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 201, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 8, cost = { Mana = 208, }, },
},
statSets = {
[1] = {
label = "Seismic Cry",
baseEffectiveness = 2.0999999046326,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "seismic_cry",
baseFlags = {
warcry = true,
@@ -11099,71 +12361,71 @@ skills["SeismicCryPlayer"] = {
area = true,
},
constantStats = {
- { "skill_empowers_next_x_melee_attacks", 1 },
- { "skill_empower_limitation_specifier_for_stat_description", 2 },
- { "active_skill_hit_damage_stun_multiplier_+%_final", 400 },
+ { "warcry_empowers_per_X_monster_power", 10 },
+ { "warcry_empowers_per_X_monster_power_mp_cap", 50 },
{ "active_skill_base_area_of_effect_radius", 40 },
- { "seismic_cry_slam_skill_aftershock_area_+%", 30 },
{ "seismic_cry_slam_skill_additional_aftershocks", 1 },
- { "seismic_cry_slam_skill_aftershock_damage_+%_final_per_mp", 5 },
- { "warcry_exerts_x_additional_attacks_per_endurance_charge_consumed", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"secondary_minimum_base_physical_damage",
"secondary_maximum_base_physical_damage",
"global_knockback",
"cannot_cancel_skill_before_contact_point",
- "active_skill_200%_increased_knockback_distance",
- "hits_ignore_enemy_monster_physical_damage_reduction",
"is_area_damage",
"display_skill_deals_secondary_damage",
- "seismic_cry_only_count_heavy_stunned_mp",
"can_perform_skill_while_moving",
+ "crushing_blow",
+ "active_skill_show_crush_range",
+ "warcry_minimum_benefit_if_monster_power_present",
+ },
+ notMinionStat = {
+ "secondary_minimum_base_physical_damage",
+ "secondary_maximum_base_physical_damage",
},
levels = {
[1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 12, 19, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
[4] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 52, 78, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [5] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 60, 90, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 108, 161, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 123, 185, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 161, 242, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 184, 275, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 238, 357, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 270, 406, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 307, 461, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 349, 524, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 396, 595, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 450, 675, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 511, 767, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 581, 872, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 660, 991, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 751, 1126, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 854, 1281, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 972, 1458, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 1107, 1660, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 1261, 1892, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 1439, 2158, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 1642, 2463, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1875, 2813, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 2144, 3216, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 2454, 3681, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 2811, 4216, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [13] = { 82, 123, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 95, 142, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 110, 165, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 146, 220, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 194, 291, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 256, 385, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 294, 442, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 338, 507, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 388, 583, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 446, 669, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 513, 769, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 589, 884, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 678, 1017, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 898, 1348, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1036, 1553, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1195, 1792, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1380, 2069, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1595, 2392, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1845, 2768, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2138, 3206, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2479, 3718, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2878, 4318, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 3347, 5020, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3896, 5844, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11177,9 +12439,9 @@ skills["ShardScavengerPlayer"] = {
weaponTypes = {
["Crossbow"] = true,
},
- castTime = 1,
+ castTime = 0,
qualityStats = {
- { "base_reservation_+%", -0.25 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { spiritReservationFlat = 30, levelRequirement = 0, },
@@ -11231,51 +12493,55 @@ skills["ShardScavengerPlayer"] = {
baseFlags = {
},
stats = {
- "reload_ammo_on_effect_consume_with_x_ms_cooldown",
+ "base_secondary_skill_effect_duration",
"base_skill_effect_duration",
"base_deal_no_damage",
},
+ notMinionStat = {
+ "base_secondary_skill_effect_duration",
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 8000, 2000, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 7900, 2000, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 7800, 2000, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 7700, 2000, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 7600, 2000, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 7500, 2000, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 7400, 2000, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 7300, 2000, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 7200, 2000, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 7100, 2000, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 7000, 2000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6900, 2000, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6800, 2000, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 6700, 2000, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 6600, 2000, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6500, 2000, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 6400, 2000, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 6300, 2000, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 6200, 2000, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 6100, 2000, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 6000, 2000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 5900, 2000, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 5800, 2000, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 5700, 2000, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 5600, 2000, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 5500, 2000, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 5400, 2000, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 5300, 2000, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 5200, 2000, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 5100, 2000, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 5050, 2000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 5000, 2000, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 4950, 2000, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 4900, 2000, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 4850, 2000, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 4800, 2000, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 4750, 2000, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 4700, 2000, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 4650, 2000, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 4600, 2000, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [2] = { 7950, 2000, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 7900, 2000, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7850, 2000, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 7800, 2000, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7750, 2000, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7700, 2000, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7650, 2000, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7600, 2000, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7550, 2000, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 7500, 2000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 7450, 2000, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 7400, 2000, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7350, 2000, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7300, 2000, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7250, 2000, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 2000, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7150, 2000, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7100, 2000, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7050, 2000, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7000, 2000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 6950, 2000, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 6900, 2000, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 6850, 2000, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 6800, 2000, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 6750, 2000, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 6700, 2000, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 6650, 2000, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 6600, 2000, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 6550, 2000, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 6525, 2000, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 6500, 2000, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 6475, 2000, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 6450, 2000, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 6425, 2000, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 6400, 2000, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 6375, 2000, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 6350, 2000, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 6325, 2000, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 6300, 2000, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11285,57 +12551,56 @@ skills["ShieldChargePlayer"] = {
baseTypeName = "Shield Charge",
color = 1,
description = "Channel to charge in the target direction. You will crash into enemies on your path, stopping your charge and dealing damage to enemies in an area, and extra damage to the enemies you collided with. While charging, your Shield is raised and you will Block all incoming Blockable hits.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
- { "base_cooldown_speed_+%", 0.5 },
+ { "base_additional_damage_from_distance_+%_final", 2 },
},
levels = {
- [1] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.7, critChance = 5, cooldown = 3, levelRequirement = 0, cost = { ManaPerMinute = 446, }, },
- [2] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.77, critChance = 5, cooldown = 3, levelRequirement = 3, cost = { ManaPerMinute = 494, }, },
- [3] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.85, critChance = 5, cooldown = 3, levelRequirement = 6, cost = { ManaPerMinute = 547, }, },
- [4] = { attackTime = 500, storedUses = 1, baseMultiplier = 0.93, critChance = 5, cooldown = 3, levelRequirement = 10, cost = { ManaPerMinute = 606, }, },
- [5] = { attackTime = 500, storedUses = 1, critChance = 5, cooldown = 3, levelRequirement = 14, cost = { ManaPerMinute = 672, }, },
- [6] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.08, critChance = 5, cooldown = 3, levelRequirement = 18, cost = { ManaPerMinute = 745, }, },
- [7] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.16, critChance = 5, cooldown = 3, levelRequirement = 22, cost = { ManaPerMinute = 825, }, },
- [8] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.24, critChance = 5, cooldown = 3, levelRequirement = 26, cost = { ManaPerMinute = 914, }, },
- [9] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.31, critChance = 5, cooldown = 3, levelRequirement = 31, cost = { ManaPerMinute = 1013, }, },
- [10] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.38, critChance = 5, cooldown = 3, levelRequirement = 36, cost = { ManaPerMinute = 1123, }, },
- [11] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.46, critChance = 5, cooldown = 3, levelRequirement = 41, cost = { ManaPerMinute = 1244, }, },
- [12] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.55, critChance = 5, cooldown = 3, levelRequirement = 46, cost = { ManaPerMinute = 1379, }, },
- [13] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.64, critChance = 5, cooldown = 3, levelRequirement = 52, cost = { ManaPerMinute = 1528, }, },
- [14] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.74, critChance = 5, cooldown = 3, levelRequirement = 58, cost = { ManaPerMinute = 1693, }, },
- [15] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.85, critChance = 5, cooldown = 3, levelRequirement = 64, cost = { ManaPerMinute = 1876, }, },
- [16] = { attackTime = 500, storedUses = 1, baseMultiplier = 1.97, critChance = 5, cooldown = 3, levelRequirement = 66, cost = { ManaPerMinute = 2079, }, },
- [17] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.09, critChance = 5, cooldown = 3, levelRequirement = 72, cost = { ManaPerMinute = 2304, }, },
- [18] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.23, critChance = 5, cooldown = 3, levelRequirement = 78, cost = { ManaPerMinute = 2553, }, },
- [19] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.38, critChance = 5, cooldown = 3, levelRequirement = 84, cost = { ManaPerMinute = 2829, }, },
- [20] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.54, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3135, }, },
- [21] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.7, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3474, }, },
- [22] = { attackTime = 500, storedUses = 1, baseMultiplier = 2.88, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 3850, }, },
- [23] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.08, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 4266, }, },
- [24] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.28, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 4727, }, },
- [25] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.5, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 5238, }, },
- [26] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.73, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 5805, }, },
- [27] = { attackTime = 500, storedUses = 1, baseMultiplier = 3.98, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 6432, }, },
- [28] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.25, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 7127, }, },
- [29] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.53, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 7898, }, },
- [30] = { attackTime = 500, storedUses = 1, baseMultiplier = 4.83, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 8752, }, },
- [31] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.15, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 9698, }, },
- [32] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.5, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 10746, }, },
- [33] = { attackTime = 500, storedUses = 1, baseMultiplier = 5.86, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 11908, }, },
- [34] = { attackTime = 500, storedUses = 1, baseMultiplier = 6.25, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 13195, }, },
- [35] = { attackTime = 500, storedUses = 1, baseMultiplier = 6.67, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 14622, }, },
- [36] = { attackTime = 500, storedUses = 1, baseMultiplier = 7.12, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 16203, }, },
- [37] = { attackTime = 500, storedUses = 1, baseMultiplier = 7.59, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 17954, }, },
- [38] = { attackTime = 500, storedUses = 1, baseMultiplier = 8.09, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 19895, }, },
- [39] = { attackTime = 500, storedUses = 1, baseMultiplier = 8.63, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 22046, }, },
- [40] = { attackTime = 500, storedUses = 1, baseMultiplier = 9.21, critChance = 5, cooldown = 3, levelRequirement = 90, cost = { ManaPerMinute = 24429, }, },
+ [1] = { attackTime = 600, baseMultiplier = 0.3, critChance = 5, levelRequirement = 0, cost = { ManaPerMinute = 432, }, },
+ [2] = { attackTime = 600, baseMultiplier = 0.33, critChance = 5, levelRequirement = 3, cost = { ManaPerMinute = 500, }, },
+ [3] = { attackTime = 600, baseMultiplier = 0.36, critChance = 5, levelRequirement = 6, cost = { ManaPerMinute = 573, }, },
+ [4] = { attackTime = 600, baseMultiplier = 0.4, critChance = 5, levelRequirement = 10, cost = { ManaPerMinute = 651, }, },
+ [5] = { attackTime = 600, baseMultiplier = 0.43, critChance = 5, levelRequirement = 14, cost = { ManaPerMinute = 734, }, },
+ [6] = { attackTime = 600, baseMultiplier = 0.46, critChance = 5, levelRequirement = 18, cost = { ManaPerMinute = 823, }, },
+ [7] = { attackTime = 600, baseMultiplier = 0.49, critChance = 5, levelRequirement = 22, cost = { ManaPerMinute = 919, }, },
+ [8] = { attackTime = 600, baseMultiplier = 0.52, critChance = 5, levelRequirement = 26, cost = { ManaPerMinute = 1021, }, },
+ [9] = { attackTime = 600, baseMultiplier = 0.55, critChance = 5, levelRequirement = 31, cost = { ManaPerMinute = 1130, }, },
+ [10] = { attackTime = 600, baseMultiplier = 0.57, critChance = 5, levelRequirement = 36, cost = { ManaPerMinute = 1246, }, },
+ [11] = { attackTime = 600, baseMultiplier = 0.6, critChance = 5, levelRequirement = 41, cost = { ManaPerMinute = 1371, }, },
+ [12] = { attackTime = 600, baseMultiplier = 0.63, critChance = 5, levelRequirement = 46, cost = { ManaPerMinute = 1503, }, },
+ [13] = { attackTime = 600, baseMultiplier = 0.66, critChance = 5, levelRequirement = 52, cost = { ManaPerMinute = 1644, }, },
+ [14] = { attackTime = 600, baseMultiplier = 0.7, critChance = 5, levelRequirement = 58, cost = { ManaPerMinute = 1795, }, },
+ [15] = { attackTime = 600, baseMultiplier = 0.73, critChance = 5, levelRequirement = 64, cost = { ManaPerMinute = 1955, }, },
+ [16] = { attackTime = 600, baseMultiplier = 0.77, critChance = 5, levelRequirement = 66, cost = { ManaPerMinute = 2125, }, },
+ [17] = { attackTime = 600, baseMultiplier = 0.81, critChance = 5, levelRequirement = 72, cost = { ManaPerMinute = 2306, }, },
+ [18] = { attackTime = 600, baseMultiplier = 0.85, critChance = 5, levelRequirement = 78, cost = { ManaPerMinute = 2499, }, },
+ [19] = { attackTime = 600, baseMultiplier = 0.89, critChance = 5, levelRequirement = 84, cost = { ManaPerMinute = 2704, }, },
+ [20] = { attackTime = 600, baseMultiplier = 0.94, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 2921, }, },
+ [21] = { attackTime = 600, baseMultiplier = 0.98, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3152, }, },
+ [22] = { attackTime = 600, baseMultiplier = 1.03, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3398, }, },
+ [23] = { attackTime = 600, baseMultiplier = 1.08, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3658, }, },
+ [24] = { attackTime = 600, baseMultiplier = 1.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 3934, }, },
+ [25] = { attackTime = 600, baseMultiplier = 1.19, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4227, }, },
+ [26] = { attackTime = 600, baseMultiplier = 1.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4538, }, },
+ [27] = { attackTime = 600, baseMultiplier = 1.32, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 4867, }, },
+ [28] = { attackTime = 600, baseMultiplier = 1.38, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5216, }, },
+ [29] = { attackTime = 600, baseMultiplier = 1.45, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5586, }, },
+ [30] = { attackTime = 600, baseMultiplier = 1.52, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 5978, }, },
+ [31] = { attackTime = 600, baseMultiplier = 1.6, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6392, }, },
+ [32] = { attackTime = 600, baseMultiplier = 1.68, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 6831, }, },
+ [33] = { attackTime = 600, baseMultiplier = 1.76, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7296, }, },
+ [34] = { attackTime = 600, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 7787, }, },
+ [35] = { attackTime = 600, baseMultiplier = 1.95, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8307, }, },
+ [36] = { attackTime = 600, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 8857, }, },
+ [37] = { attackTime = 600, baseMultiplier = 2.14, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 9438, }, },
+ [38] = { attackTime = 600, baseMultiplier = 2.25, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10053, }, },
+ [39] = { attackTime = 600, baseMultiplier = 2.36, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 10702, }, },
+ [40] = { attackTime = 600, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { ManaPerMinute = 11389, }, },
},
statSets = {
[1] = {
label = "Area of Effect",
- baseEffectiveness = 1.210000038147,
incrementalEffectiveness = 0.27349999547005,
statDescriptionScope = "channel_shield_charge",
baseFlags = {
@@ -11348,13 +12613,14 @@ skills["ShieldChargePlayer"] = {
{ "active_skill_base_area_of_effect_radius", 24 },
{ "base_minimum_channel_time_ms", 1300 },
{ "base_skill_effect_duration", 5000 },
- { "shield_charge_base_movement_speed", 120 },
+ { "shield_charge_base_movement_speed", 90 },
{ "shield_charge_extra_distance", 80 },
{ "shield_charge_acceleration_duration_ms", 0 },
{ "shield_charge_hit_damage_stun_multiplier_when_fully_charged_+%_final", 400 },
{ "shield_charge_pushiness_+", 10 },
{ "shield_charge_pushiness_+_while_fully_charged", -20 },
{ "shield_charge_pushiness_+_while_decelerating", 0 },
+ { "base_additional_damage_from_distance_+%_final", 100 },
},
stats = {
"off_hand_weapon_minimum_physical_damage",
@@ -11368,47 +12634,51 @@ skills["ShieldChargePlayer"] = {
"active_block_cannot_be_stunned",
"replace_off_hand_unarmed_attack_stats_with_shield_type",
},
+ notMinionStat = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ },
levels = {
- [1] = { 4, 6, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 26, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 32, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 26, 38, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 40, 60, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 51, 76, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 57, 85, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 63, 94, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 75, 113, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, 123, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 89, 133, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 96, 144, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 103, 155, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 166, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 119, 178, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 127, 190, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 135, 202, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 144, 215, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 152, 228, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 161, 242, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 170, 256, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 180, 270, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 190, 284, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 200, 299, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 210, 315, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 220, 330, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 231, 346, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 242, 362, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 253, 379, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 264, 396, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 275, 413, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 287, 431, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 299, 449, 6, 8, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 5, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 8, 12, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 17, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, 26, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 32, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 25, 37, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, 43, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 33, 50, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 37, 56, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 42, 63, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 47, 70, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 52, 78, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 57, 85, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 62, 93, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 68, 101, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 73, 110, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 79, 119, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 85, 128, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 92, 137, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 98, 147, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 105, 157, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 112, 167, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 119, 178, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 126, 189, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 133, 200, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 141, 211, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 149, 223, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 157, 235, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 165, 247, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 173, 260, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 182, 273, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 191, 286, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 200, 299, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 209, 313, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 218, 327, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 228, 342, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 237, 356, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 247, 371, 3, 5, 0, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
[2] = {
@@ -11423,13 +12693,14 @@ skills["ShieldChargePlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 24 },
- { "shield_charge_base_movement_speed", 120 },
+ { "shield_charge_base_movement_speed", 90 },
{ "shield_charge_extra_distance", 80 },
{ "shield_charge_acceleration_duration_ms", 0 },
{ "shield_charge_hit_damage_stun_multiplier_when_fully_charged_+%_final", 400 },
{ "shield_charge_pushiness_+", 10 },
{ "shield_charge_pushiness_+_while_fully_charged", -20 },
{ "shield_charge_pushiness_+_while_decelerating", 0 },
+ { "base_additional_damage_from_distance_+%_final", 100 },
{ "base_knockback_distance", 900 },
{ "active_skill_hit_damage_stun_multiplier_+%_final", 50 },
},
@@ -11447,47 +12718,51 @@ skills["ShieldChargePlayer"] = {
"active_block_cannot_be_stunned",
"replace_off_hand_unarmed_attack_stats_with_shield_type",
},
+ notMinionStat = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ },
levels = {
- [1] = { 4, 6, 0, 0, 0, 6, 8, baseMultiplier = 2.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 0, 0, 0, 6, 8, baseMultiplier = 2.75, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, 0, 0, 0, 6, 8, baseMultiplier = 3.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, 0, 0, 0, 6, 8, baseMultiplier = 3.31, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 26, 0, 0, 0, 6, 8, baseMultiplier = 3.58, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 32, 0, 0, 0, 6, 8, baseMultiplier = 3.86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 26, 38, 0, 0, 0, 6, 8, baseMultiplier = 4.15, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, 0, 0, 0, 6, 8, baseMultiplier = 4.42, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, 0, 0, 0, 6, 8, baseMultiplier = 4.67, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 40, 60, 0, 0, 0, 6, 8, baseMultiplier = 4.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, 0, 0, 0, 6, 8, baseMultiplier = 5.23, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 51, 76, 0, 0, 0, 6, 8, baseMultiplier = 5.54, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 57, 85, 0, 0, 0, 6, 8, baseMultiplier = 5.87, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 63, 94, 0, 0, 0, 6, 8, baseMultiplier = 6.23, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 0, 0, 0, 6, 8, baseMultiplier = 6.62, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 75, 113, 0, 0, 0, 6, 8, baseMultiplier = 7.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, 123, 0, 0, 0, 6, 8, baseMultiplier = 7.48, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 89, 133, 0, 0, 0, 6, 8, baseMultiplier = 7.97, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 96, 144, 0, 0, 0, 6, 8, baseMultiplier = 8.49, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 103, 155, 0, 0, 0, 6, 8, baseMultiplier = 9.06, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 166, 0, 0, 0, 6, 8, baseMultiplier = 9.66, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 119, 178, 0, 0, 0, 6, 8, baseMultiplier = 10.3, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 127, 190, 0, 0, 0, 6, 8, baseMultiplier = 10.99, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 135, 202, 0, 0, 0, 6, 8, baseMultiplier = 11.72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 144, 215, 0, 0, 0, 6, 8, baseMultiplier = 12.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 152, 228, 0, 0, 0, 6, 8, baseMultiplier = 13.33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 161, 242, 0, 0, 0, 6, 8, baseMultiplier = 14.22, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 170, 256, 0, 0, 0, 6, 8, baseMultiplier = 15.17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 180, 270, 0, 0, 0, 6, 8, baseMultiplier = 16.18, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 190, 284, 0, 0, 0, 6, 8, baseMultiplier = 17.26, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 200, 299, 0, 0, 0, 6, 8, baseMultiplier = 18.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 210, 315, 0, 0, 0, 6, 8, baseMultiplier = 19.63, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 220, 330, 0, 0, 0, 6, 8, baseMultiplier = 20.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 231, 346, 0, 0, 0, 6, 8, baseMultiplier = 22.34, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 242, 362, 0, 0, 0, 6, 8, baseMultiplier = 23.82, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 253, 379, 0, 0, 0, 6, 8, baseMultiplier = 25.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 264, 396, 0, 0, 0, 6, 8, baseMultiplier = 27.1, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 275, 413, 0, 0, 0, 6, 8, baseMultiplier = 28.91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 287, 431, 0, 0, 0, 6, 8, baseMultiplier = 30.84, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 299, 449, 0, 0, 0, 6, 8, baseMultiplier = 32.89, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 5, 0, 0, 0, 6, 8, baseMultiplier = 0.6, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 5, 8, 0, 0, 0, 6, 8, baseMultiplier = 0.66, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 8, 12, 0, 0, 0, 6, 8, baseMultiplier = 0.73, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 11, 17, 0, 0, 0, 6, 8, baseMultiplier = 0.79, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 14, 21, 0, 0, 0, 6, 8, baseMultiplier = 0.86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 18, 26, 0, 0, 0, 6, 8, baseMultiplier = 0.93, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 32, 0, 0, 0, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 25, 37, 0, 0, 0, 6, 8, baseMultiplier = 1.06, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 29, 43, 0, 0, 0, 6, 8, baseMultiplier = 1.12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 33, 50, 0, 0, 0, 6, 8, baseMultiplier = 1.19, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 37, 56, 0, 0, 0, 6, 8, baseMultiplier = 1.25, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 42, 63, 0, 0, 0, 6, 8, baseMultiplier = 1.33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 47, 70, 0, 0, 0, 6, 8, baseMultiplier = 1.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 52, 78, 0, 0, 0, 6, 8, baseMultiplier = 1.5, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 57, 85, 0, 0, 0, 6, 8, baseMultiplier = 1.59, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 62, 93, 0, 0, 0, 6, 8, baseMultiplier = 1.69, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 68, 101, 0, 0, 0, 6, 8, baseMultiplier = 1.8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 73, 110, 0, 0, 0, 6, 8, baseMultiplier = 1.91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 79, 119, 0, 0, 0, 6, 8, baseMultiplier = 2.04, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 85, 128, 0, 0, 0, 6, 8, baseMultiplier = 2.17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 92, 137, 0, 0, 0, 6, 8, baseMultiplier = 2.32, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 98, 147, 0, 0, 0, 6, 8, baseMultiplier = 2.47, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 105, 157, 0, 0, 0, 6, 8, baseMultiplier = 2.64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 112, 167, 0, 0, 0, 6, 8, baseMultiplier = 2.81, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 119, 178, 0, 0, 0, 6, 8, baseMultiplier = 3, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 126, 189, 0, 0, 0, 6, 8, baseMultiplier = 3.2, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 133, 200, 0, 0, 0, 6, 8, baseMultiplier = 3.41, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 141, 211, 0, 0, 0, 6, 8, baseMultiplier = 3.64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 149, 223, 0, 0, 0, 6, 8, baseMultiplier = 3.88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 157, 235, 0, 0, 0, 6, 8, baseMultiplier = 4.14, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 165, 247, 0, 0, 0, 6, 8, baseMultiplier = 4.42, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 173, 260, 0, 0, 0, 6, 8, baseMultiplier = 4.71, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 182, 273, 0, 0, 0, 6, 8, baseMultiplier = 5.03, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 191, 286, 0, 0, 0, 6, 8, baseMultiplier = 5.36, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 200, 299, 0, 0, 0, 6, 8, baseMultiplier = 5.72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 209, 313, 0, 0, 0, 6, 8, baseMultiplier = 6.1, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 218, 327, 0, 0, 0, 6, 8, baseMultiplier = 6.51, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 228, 342, 0, 0, 0, 6, 8, baseMultiplier = 6.94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 237, 356, 0, 0, 0, 6, 8, baseMultiplier = 7.4, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 247, 371, 0, 0, 0, 6, 8, baseMultiplier = 7.89, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11496,53 +12771,53 @@ skills["ShieldWallPlayer"] = {
name = "Shield Wall",
baseTypeName = "Shield Wall",
color = 1,
- description = "Ram your Shield into the ground, throwing up a semi-circular wall of earth. Enemies can attack the walls and your Slams or Warcries will instantly destroy them. Each wall segment explodes when destroyed, damaging enemies around it.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Wall] = true, [SkillType.Duration] = true, [SkillType.RequiresShield] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.SupportedByFountains] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Melee] = true, },
+ description = "Ram your Shield into the ground, throwing up a wall of earth. Enemies can attack your wall segments, and your Slams, Warcries, and Shield Charge will instantly shatter them all. The segments explode when shattered, damaging enemies in front of and around them.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Wall] = true, [SkillType.Duration] = true, [SkillType.RequiresShield] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.SupportedByFountains] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CanCreateStoneElementals] = true, },
castTime = 1,
qualityStats = {
- { "base_number_of_shield_walls_allowed", 0.1 },
+ { "shield_wall_damage_+%_final_when_slammed", 2 },
},
levels = {
- [1] = { attackTime = 1250, baseMultiplier = 0.9, critChance = 5, levelRequirement = 0, cost = { Mana = 14, }, },
- [2] = { attackTime = 1250, baseMultiplier = 0.99, critChance = 5, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { attackTime = 1250, baseMultiplier = 1.09, critChance = 5, levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { attackTime = 1250, baseMultiplier = 1.19, critChance = 5, levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { attackTime = 1250, baseMultiplier = 1.28, critChance = 5, levelRequirement = 14, cost = { Mana = 21, }, },
- [6] = { attackTime = 1250, baseMultiplier = 1.38, critChance = 5, levelRequirement = 18, cost = { Mana = 23, }, },
- [7] = { attackTime = 1250, baseMultiplier = 1.47, critChance = 5, levelRequirement = 22, cost = { Mana = 25, }, },
- [8] = { attackTime = 1250, baseMultiplier = 1.56, critChance = 5, levelRequirement = 26, cost = { Mana = 28, }, },
- [9] = { attackTime = 1250, baseMultiplier = 1.64, critChance = 5, levelRequirement = 31, cost = { Mana = 31, }, },
- [10] = { attackTime = 1250, baseMultiplier = 1.72, critChance = 5, levelRequirement = 36, cost = { Mana = 35, }, },
- [11] = { attackTime = 1250, baseMultiplier = 1.81, critChance = 5, levelRequirement = 41, cost = { Mana = 39, }, },
- [12] = { attackTime = 1250, baseMultiplier = 1.9, critChance = 5, levelRequirement = 46, cost = { Mana = 43, }, },
- [13] = { attackTime = 1250, baseMultiplier = 1.99, critChance = 5, levelRequirement = 52, cost = { Mana = 48, }, },
- [14] = { attackTime = 1250, baseMultiplier = 2.09, critChance = 5, levelRequirement = 58, cost = { Mana = 53, }, },
- [15] = { attackTime = 1250, baseMultiplier = 2.2, critChance = 5, levelRequirement = 64, cost = { Mana = 59, }, },
- [16] = { attackTime = 1250, baseMultiplier = 2.31, critChance = 5, levelRequirement = 66, cost = { Mana = 65, }, },
- [17] = { attackTime = 1250, baseMultiplier = 2.42, critChance = 5, levelRequirement = 72, cost = { Mana = 72, }, },
- [18] = { attackTime = 1250, baseMultiplier = 2.55, critChance = 5, levelRequirement = 78, cost = { Mana = 80, }, },
- [19] = { attackTime = 1250, baseMultiplier = 2.67, critChance = 5, levelRequirement = 84, cost = { Mana = 89, }, },
- [20] = { attackTime = 1250, baseMultiplier = 2.81, critChance = 5, levelRequirement = 90, cost = { Mana = 98, }, },
- [21] = { attackTime = 1250, baseMultiplier = 2.95, critChance = 5, levelRequirement = 90, cost = { Mana = 109, }, },
- [22] = { attackTime = 1250, baseMultiplier = 3.09, critChance = 5, levelRequirement = 90, cost = { Mana = 121, }, },
- [23] = { attackTime = 1250, baseMultiplier = 3.25, critChance = 5, levelRequirement = 90, cost = { Mana = 134, }, },
- [24] = { attackTime = 1250, baseMultiplier = 3.41, critChance = 5, levelRequirement = 90, cost = { Mana = 148, }, },
- [25] = { attackTime = 1250, baseMultiplier = 3.58, critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, },
- [26] = { attackTime = 1250, baseMultiplier = 3.76, critChance = 5, levelRequirement = 90, cost = { Mana = 182, }, },
- [27] = { attackTime = 1250, baseMultiplier = 3.95, critChance = 5, levelRequirement = 90, cost = { Mana = 202, }, },
- [28] = { attackTime = 1250, baseMultiplier = 4.15, critChance = 5, levelRequirement = 90, cost = { Mana = 224, }, },
- [29] = { attackTime = 1250, baseMultiplier = 4.35, critChance = 5, levelRequirement = 90, cost = { Mana = 248, }, },
- [30] = { attackTime = 1250, baseMultiplier = 4.57, critChance = 5, levelRequirement = 90, cost = { Mana = 275, }, },
- [31] = { attackTime = 1250, baseMultiplier = 4.8, critChance = 5, levelRequirement = 90, cost = { Mana = 305, }, },
- [32] = { attackTime = 1250, baseMultiplier = 5.04, critChance = 5, levelRequirement = 90, cost = { Mana = 338, }, },
- [33] = { attackTime = 1250, baseMultiplier = 5.29, critChance = 5, levelRequirement = 90, cost = { Mana = 374, }, },
- [34] = { attackTime = 1250, baseMultiplier = 5.56, critChance = 5, levelRequirement = 90, cost = { Mana = 415, }, },
- [35] = { attackTime = 1250, baseMultiplier = 5.84, critChance = 5, levelRequirement = 90, cost = { Mana = 460, }, },
- [36] = { attackTime = 1250, baseMultiplier = 6.13, critChance = 5, levelRequirement = 90, cost = { Mana = 510, }, },
- [37] = { attackTime = 1250, baseMultiplier = 6.43, critChance = 5, levelRequirement = 90, cost = { Mana = 565, }, },
- [38] = { attackTime = 1250, baseMultiplier = 6.76, critChance = 5, levelRequirement = 90, cost = { Mana = 626, }, },
- [39] = { attackTime = 1250, baseMultiplier = 7.09, critChance = 5, levelRequirement = 90, cost = { Mana = 694, }, },
- [40] = { attackTime = 1250, baseMultiplier = 7.45, critChance = 5, levelRequirement = 90, cost = { Mana = 769, }, },
+ [1] = { attackTime = 1250, baseMultiplier = 0.65, critChance = 5, levelRequirement = 0, cost = { Mana = 13, }, },
+ [2] = { attackTime = 1250, baseMultiplier = 0.71, critChance = 5, levelRequirement = 3, cost = { Mana = 15, }, },
+ [3] = { attackTime = 1250, baseMultiplier = 0.79, critChance = 5, levelRequirement = 6, cost = { Mana = 18, }, },
+ [4] = { attackTime = 1250, baseMultiplier = 0.86, critChance = 5, levelRequirement = 10, cost = { Mana = 20, }, },
+ [5] = { attackTime = 1250, baseMultiplier = 0.93, critChance = 5, levelRequirement = 14, cost = { Mana = 23, }, },
+ [6] = { attackTime = 1250, critChance = 5, levelRequirement = 18, cost = { Mana = 25, }, },
+ [7] = { attackTime = 1250, baseMultiplier = 1.08, critChance = 5, levelRequirement = 22, cost = { Mana = 28, }, },
+ [8] = { attackTime = 1250, baseMultiplier = 1.15, critChance = 5, levelRequirement = 26, cost = { Mana = 32, }, },
+ [9] = { attackTime = 1250, baseMultiplier = 1.21, critChance = 5, levelRequirement = 31, cost = { Mana = 35, }, },
+ [10] = { attackTime = 1250, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 39, }, },
+ [11] = { attackTime = 1250, baseMultiplier = 1.36, critChance = 5, levelRequirement = 41, cost = { Mana = 43, }, },
+ [12] = { attackTime = 1250, baseMultiplier = 1.44, critChance = 5, levelRequirement = 46, cost = { Mana = 47, }, },
+ [13] = { attackTime = 1250, baseMultiplier = 1.53, critChance = 5, levelRequirement = 52, cost = { Mana = 51, }, },
+ [14] = { attackTime = 1250, baseMultiplier = 1.62, critChance = 5, levelRequirement = 58, cost = { Mana = 56, }, },
+ [15] = { attackTime = 1250, baseMultiplier = 1.72, critChance = 5, levelRequirement = 64, cost = { Mana = 61, }, },
+ [16] = { attackTime = 1250, baseMultiplier = 1.83, critChance = 5, levelRequirement = 66, cost = { Mana = 66, }, },
+ [17] = { attackTime = 1250, baseMultiplier = 1.95, critChance = 5, levelRequirement = 72, cost = { Mana = 72, }, },
+ [18] = { attackTime = 1250, baseMultiplier = 2.07, critChance = 5, levelRequirement = 78, cost = { Mana = 78, }, },
+ [19] = { attackTime = 1250, baseMultiplier = 2.21, critChance = 5, levelRequirement = 84, cost = { Mana = 85, }, },
+ [20] = { attackTime = 1250, baseMultiplier = 2.35, critChance = 5, levelRequirement = 90, cost = { Mana = 92, }, },
+ [21] = { attackTime = 1250, baseMultiplier = 2.51, critChance = 5, levelRequirement = 90, cost = { Mana = 99, }, },
+ [22] = { attackTime = 1250, baseMultiplier = 2.68, critChance = 5, levelRequirement = 90, cost = { Mana = 107, }, },
+ [23] = { attackTime = 1250, baseMultiplier = 2.86, critChance = 5, levelRequirement = 90, cost = { Mana = 115, }, },
+ [24] = { attackTime = 1250, baseMultiplier = 3.05, critChance = 5, levelRequirement = 90, cost = { Mana = 123, }, },
+ [25] = { attackTime = 1250, baseMultiplier = 3.25, critChance = 5, levelRequirement = 90, cost = { Mana = 133, }, },
+ [26] = { attackTime = 1250, baseMultiplier = 3.47, critChance = 5, levelRequirement = 90, cost = { Mana = 142, }, },
+ [27] = { attackTime = 1250, baseMultiplier = 3.7, critChance = 5, levelRequirement = 90, cost = { Mana = 153, }, },
+ [28] = { attackTime = 1250, baseMultiplier = 3.94, critChance = 5, levelRequirement = 90, cost = { Mana = 164, }, },
+ [29] = { attackTime = 1250, baseMultiplier = 4.21, critChance = 5, levelRequirement = 90, cost = { Mana = 175, }, },
+ [30] = { attackTime = 1250, baseMultiplier = 4.49, critChance = 5, levelRequirement = 90, cost = { Mana = 188, }, },
+ [31] = { attackTime = 1250, baseMultiplier = 4.79, critChance = 5, levelRequirement = 90, cost = { Mana = 201, }, },
+ [32] = { attackTime = 1250, baseMultiplier = 5.1, critChance = 5, levelRequirement = 90, cost = { Mana = 215, }, },
+ [33] = { attackTime = 1250, baseMultiplier = 5.44, critChance = 5, levelRequirement = 90, cost = { Mana = 229, }, },
+ [34] = { attackTime = 1250, baseMultiplier = 5.81, critChance = 5, levelRequirement = 90, cost = { Mana = 245, }, },
+ [35] = { attackTime = 1250, baseMultiplier = 6.19, critChance = 5, levelRequirement = 90, cost = { Mana = 261, }, },
+ [36] = { attackTime = 1250, baseMultiplier = 6.61, critChance = 5, levelRequirement = 90, cost = { Mana = 279, }, },
+ [37] = { attackTime = 1250, baseMultiplier = 7.05, critChance = 5, levelRequirement = 90, cost = { Mana = 297, }, },
+ [38] = { attackTime = 1250, baseMultiplier = 7.52, critChance = 5, levelRequirement = 90, cost = { Mana = 316, }, },
+ [39] = { attackTime = 1250, baseMultiplier = 8.02, critChance = 5, levelRequirement = 90, cost = { Mana = 337, }, },
+ [40] = { attackTime = 1250, baseMultiplier = 8.55, critChance = 5, levelRequirement = 90, cost = { Mana = 358, }, },
},
statSets = {
[1] = {
@@ -11559,8 +12834,10 @@ skills["ShieldWallPlayer"] = {
{ "base_skill_effect_duration", 6000 },
{ "wall_expand_delay_ms", 40 },
{ "active_skill_base_area_of_effect_radius", 40 },
- { "active_skill_base_secondary_area_of_effect_radius", 8 },
+ { "active_skill_base_secondary_area_of_effect_radius", 14 },
{ "base_number_of_shield_walls_allowed", 2 },
+ { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 },
+ { "shield_wall_damage_+%_final_when_slammed", 100 },
},
stats = {
"off_hand_weapon_minimum_physical_damage",
@@ -11575,47 +12852,51 @@ skills["ShieldWallPlayer"] = {
"quality_display_shield_wall_is_gem",
"replace_off_hand_unarmed_attack_stats_with_shield_type",
},
+ notMinionStat = {
+ "off_hand_weapon_minimum_physical_damage",
+ "off_hand_weapon_maximum_physical_damage",
+ },
levels = {
- [1] = { 4, 6, 50, 36, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 50, 64, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, 50, 108, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, 50, 164, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 26, 50, 240, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 32, 50, 334, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 26, 38, 50, 460, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, 50, 624, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, 50, 832, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 40, 60, 50, 1100, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, 50, 1438, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 51, 76, 50, 1866, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 57, 85, 50, 2408, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 63, 94, 50, 3086, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 50, 3940, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 75, 113, 50, 5016, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, 123, 50, 6362, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 89, 133, 50, 8032, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 96, 144, 50, 10118, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 103, 155, 50, 12714, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 166, 50, 13254, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 119, 178, 50, 14371, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 127, 190, 50, 16378, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 135, 202, 50, 18862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 144, 215, 50, 21933, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 152, 228, 50, 23030, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 161, 242, 50, 24181, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 170, 256, 50, 25390, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 180, 270, 50, 26660, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 190, 284, 50, 27993, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 200, 299, 50, 29392, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 210, 315, 50, 30862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 220, 330, 50, 32405, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 231, 346, 50, 34025, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 242, 362, 50, 35727, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 253, 379, 50, 37513, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 264, 396, 50, 39389, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 275, 413, 50, 41358, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 287, 431, 50, 43426, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 299, 449, 50, 45597, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 4, 6, 70, 36, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6, 9, 70, 64, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 10, 15, 70, 108, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 13, 20, 70, 164, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 17, 26, 70, 240, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 21, 32, 70, 334, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 26, 38, 70, 460, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 30, 45, 70, 624, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 35, 53, 70, 832, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 40, 60, 70, 1100, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 45, 68, 70, 1438, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 51, 76, 70, 1866, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 57, 85, 70, 2408, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 63, 94, 70, 3086, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 69, 103, 70, 3940, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 75, 113, 70, 5016, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 82, 123, 70, 6362, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 89, 133, 70, 8032, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 96, 144, 70, 10118, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 103, 155, 70, 12714, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 111, 166, 70, 13254, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 119, 178, 70, 14371, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 127, 190, 70, 16378, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 135, 202, 70, 18862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 144, 215, 70, 21933, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 152, 228, 70, 23030, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 161, 242, 70, 24181, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 170, 256, 70, 25390, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 180, 270, 70, 26660, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 190, 284, 70, 27993, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 200, 299, 70, 29392, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 210, 315, 70, 30862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 220, 330, 70, 32405, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 231, 346, 70, 34025, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 242, 362, 70, 35727, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 253, 379, 70, 37513, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 264, 396, 70, 39389, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 275, 413, 70, 41358, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 287, 431, 70, 43426, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 299, 449, 70, 45597, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11624,8 +12905,8 @@ skills["ShockwaveTotemPlayer"] = {
name = "Shockwave Totem",
baseTypeName = "Shockwave Totem",
color = 1,
- description = "Raise a Totem that Slams the ground around it, repeatedly damaging nearby enemies. Jagged Ground erupts when hit by this Slam, damaging enemies standing on it.",
- skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, },
+ description = "Raise a Totem that Slams the ground around it, repeatedly damaging nearby enemies. Jagged Ground erupts when hit by this Slam, damaging enemies standing on it. The Totem cannot create Jagged Ground.",
+ skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.CannotCreateJaggedGround] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Flail"] = true,
@@ -11644,55 +12925,54 @@ skills["ShockwaveTotemPlayer"] = {
skillTotemId = 5,
castTime = 0.6,
qualityStats = {
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", -10 },
+ { "base_totem_duration", 200 },
},
levels = {
[1] = { levelRequirement = 0, cost = { Mana = 15, }, },
[2] = { levelRequirement = 3, cost = { Mana = 17, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 19, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 21, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 23, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 26, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 29, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 32, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 35, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 39, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 43, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 48, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 53, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 59, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 66, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 73, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 20, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 23, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 25, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 29, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 32, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 36, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 39, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 44, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 48, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 53, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 58, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 63, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 69, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 75, }, },
[17] = { levelRequirement = 72, cost = { Mana = 81, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 90, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 99, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 110, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 122, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 135, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 150, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 166, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 185, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 205, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 227, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 251, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 278, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 309, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 342, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 379, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 420, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 466, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 516, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 572, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 634, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 702, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 778, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 862, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 88, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 95, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 103, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 111, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 120, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 129, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 139, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 149, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 160, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 172, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 184, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 197, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 211, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 225, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 257, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 275, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 293, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 312, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 333, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 355, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 378, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 402, }, },
},
statSets = {
[1] = {
label = "Totem",
- baseEffectiveness = 1.210000038147,
- incrementalEffectiveness = 0.27349999547005,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
totem = true,
@@ -11700,63 +12980,59 @@ skills["ShockwaveTotemPlayer"] = {
constantStats = {
{ "base_totem_duration", 12000 },
{ "base_totem_range", 80 },
- { "alt_attack_container_main_hand_weapon_critical_strike_chance", 500 },
- { "alt_attack_container_main_hand_base_weapon_attack_duration_ms", 1500 },
{ "base_number_of_totems_allowed", 1 },
},
stats = {
- "alt_attack_container_main_hand_weapon_minimum_physical_damage",
- "alt_attack_container_main_hand_weapon_maximum_physical_damage",
"totem_elemental_resistance_%",
"totem_chaos_resistance_%",
"is_totem",
"skill_is_deploy_skill",
- "active_skill_has_alt_attack_container",
"totem_targets_ignoring_action_distance",
- "alt_attack_container_main_hand_unarmed_override_nothing_type",
"quality_display_base_totem_duration_is_gem",
+ "cannot_create_jagged_ground",
+ "is_melee_attack_totem",
},
levels = {
- [1] = { 4, 6, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 26, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 32, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 26, 38, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 40, 60, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 45, 68, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 51, 76, 0, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 57, 85, 5, 0, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 63, 94, 15, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 69, 103, 25, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 75, 113, 35, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 82, 123, 45, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 89, 133, 55, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 96, 144, 65, 30, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 103, 155, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 111, 166, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 119, 178, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 127, 190, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 135, 202, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 144, 215, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 152, 228, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 161, 242, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 170, 256, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 180, 270, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 190, 284, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 200, 299, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 210, 315, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 220, 330, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 231, 346, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 242, 362, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 253, 379, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 264, 396, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 275, 413, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 287, 431, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 299, 449, 75, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -11764,72 +13040,403 @@ skills["ShockwaveTotemPlayer"] = {
skills["ShockwaveTotemQuakePlayer"] = {
name = "Shockwave Slam",
hidden = true,
- skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, },
- castTime = 0.6,
+ skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, [SkillType.CannotCreateJaggedGround] = true, },
+ weaponTypes = {
+ ["One Handed Mace"] = true,
+ ["Flail"] = true,
+ ["Two Handed Sword"] = true,
+ ["Dagger"] = true,
+ ["Claw"] = true,
+ ["Crossbow"] = true,
+ ["Bow"] = true,
+ ["Spear"] = true,
+ ["Two Handed Axe"] = true,
+ ["Two Handed Mace"] = true,
+ ["One Handed Axe"] = true,
+ ["Staff"] = true,
+ ["One Handed Sword"] = true,
+ },
+ castTime = 0.6,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { attackSpeedMultiplier = -50, baseMultiplier = 0.25, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = -50, baseMultiplier = 0.27, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = -50, baseMultiplier = 0.3, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = -50, baseMultiplier = 0.33, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = -50, baseMultiplier = 0.35, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = -50, baseMultiplier = 0.38, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = -50, baseMultiplier = 0.4, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = -50, baseMultiplier = 0.42, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = -50, baseMultiplier = 0.44, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = -50, baseMultiplier = 0.46, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = -50, baseMultiplier = 0.48, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = -50, baseMultiplier = 0.5, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = -50, baseMultiplier = 0.52, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = -50, baseMultiplier = 0.54, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = -50, baseMultiplier = 0.56, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = -50, baseMultiplier = 0.58, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = -50, baseMultiplier = 0.6, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = -50, baseMultiplier = 0.62, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = -50, baseMultiplier = 0.64, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = -50, baseMultiplier = 0.66, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = -50, baseMultiplier = 0.68, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = -50, baseMultiplier = 0.7, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = -50, baseMultiplier = 0.73, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = -50, baseMultiplier = 0.75, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = -50, baseMultiplier = 0.78, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = -50, baseMultiplier = 0.8, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = -50, baseMultiplier = 0.83, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = -50, baseMultiplier = 0.86, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = -50, baseMultiplier = 0.88, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = -50, baseMultiplier = 0.91, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = -50, baseMultiplier = 0.94, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = -50, baseMultiplier = 0.98, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = -50, baseMultiplier = 1.01, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = -50, baseMultiplier = 1.04, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = -50, baseMultiplier = 1.08, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = -50, baseMultiplier = 1.11, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = -50, baseMultiplier = 1.15, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = -50, baseMultiplier = 1.19, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = -50, baseMultiplier = 1.23, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = -50, baseMultiplier = 1.27, levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Slam",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "totem_shockwave_quake",
+ baseFlags = {
+ totem = true,
+ attack = true,
+ area = true,
+ melee = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 30 },
+ { "skill_disabled_unless_cloned", 2 },
+ },
+ stats = {
+ "is_area_damage",
+ "attack_is_melee_override",
+ "base_skill_is_totemified",
+ "cannot_create_jagged_ground",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Jagged Ground Eruption",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "totem_shockwave_quake",
+ baseFlags = {
+ totem = true,
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 30 },
+ { "skill_disabled_unless_cloned", 2 },
+ },
+ stats = {
+ "is_area_damage",
+ "attack_is_melee_override",
+ "base_skill_is_totemified",
+ "cannot_create_jagged_ground",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.9, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.99, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 1.08, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 1.18, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 1.27, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 1.36, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 1.44, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 1.52, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 1.58, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 1.65, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.72, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.79, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.86, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.93, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 2, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 2.07, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 2.15, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 2.22, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 2.3, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 2.37, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 2.45, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.53, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.62, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.7, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.79, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 2.89, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 2.98, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.08, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.18, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 3.29, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 3.4, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 3.51, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 3.63, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 3.75, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 3.87, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 4, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 4.13, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 4.27, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 4.41, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 4.56, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["SiegeBallistaPlayer"] = {
+ name = "Siege Ballista",
+ baseTypeName = "Siege Ballista",
+ color = 1,
+ description = "Deploy a Ballista Totem that fires bolts skyward, to explode a short time after landing.",
+ skillTypes = { [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.TotemsAreBallistae] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
+ skillTotemId = 19,
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 18, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 20, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 23, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 27, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 30, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 34, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 38, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 42, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 47, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 51, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 57, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 62, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 68, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 74, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 81, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 88, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 95, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 103, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 112, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 121, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 131, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 141, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 152, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 163, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 175, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 202, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 217, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 232, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 248, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 284, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 303, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 323, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 345, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 368, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 392, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 418, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 445, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 473, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Ballista",
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ totem = true,
+ },
+ constantStats = {
+ { "base_totem_range", 80 },
+ { "base_totem_duration", 8000 },
+ { "base_number_of_totems_allowed", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ },
+ stats = {
+ "totem_elemental_resistance_%",
+ "totem_chaos_resistance_%",
+ "skill_is_deploy_skill",
+ "is_totem",
+ "is_ranged_attack_totem",
+ "can_perform_skill_while_moving",
+ "totem_targets_ignoring_action_distance",
+ "base_deal_no_damage",
+ "quality_display_base_totem_duration_is_gem",
+ },
+ levels = {
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 5, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 25, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 35, 15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 45, 20, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 55, 25, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 65, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 75, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["SiegeBallistaProjectilePlayer"] = {
+ name = "Artillery",
+ hidden = true,
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, },
+ weaponTypes = {
+ ["Crossbow"] = true,
+ },
+ castTime = 1,
qualityStats = {
+ { "active_skill_base_secondary_area_of_effect_radius", 0.15 },
},
levels = {
- [1] = { baseMultiplier = 0.8, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.88, levelRequirement = 0, },
- [3] = { baseMultiplier = 0.96, levelRequirement = 0, },
- [4] = { baseMultiplier = 1.05, levelRequirement = 0, },
- [5] = { baseMultiplier = 1.13, levelRequirement = 0, },
- [6] = { baseMultiplier = 1.21, levelRequirement = 0, },
- [7] = { baseMultiplier = 1.28, levelRequirement = 0, },
- [8] = { baseMultiplier = 1.35, levelRequirement = 0, },
- [9] = { baseMultiplier = 1.41, levelRequirement = 0, },
- [10] = { baseMultiplier = 1.47, levelRequirement = 0, },
- [11] = { baseMultiplier = 1.53, levelRequirement = 0, },
- [12] = { baseMultiplier = 1.59, levelRequirement = 0, },
- [13] = { baseMultiplier = 1.65, levelRequirement = 0, },
- [14] = { baseMultiplier = 1.71, levelRequirement = 0, },
- [15] = { baseMultiplier = 1.78, levelRequirement = 0, },
- [16] = { baseMultiplier = 1.84, levelRequirement = 0, },
- [17] = { baseMultiplier = 1.91, levelRequirement = 0, },
- [18] = { baseMultiplier = 1.97, levelRequirement = 0, },
- [19] = { baseMultiplier = 2.04, levelRequirement = 0, },
- [20] = { baseMultiplier = 2.11, levelRequirement = 0, },
- [21] = { baseMultiplier = 2.18, levelRequirement = 0, },
- [22] = { baseMultiplier = 2.25, levelRequirement = 0, },
- [23] = { baseMultiplier = 2.33, levelRequirement = 0, },
- [24] = { baseMultiplier = 2.4, levelRequirement = 0, },
- [25] = { baseMultiplier = 2.48, levelRequirement = 0, },
- [26] = { baseMultiplier = 2.57, levelRequirement = 0, },
- [27] = { baseMultiplier = 2.65, levelRequirement = 0, },
- [28] = { baseMultiplier = 2.74, levelRequirement = 0, },
- [29] = { baseMultiplier = 2.83, levelRequirement = 0, },
- [30] = { baseMultiplier = 2.92, levelRequirement = 0, },
- [31] = { baseMultiplier = 3.02, levelRequirement = 0, },
- [32] = { baseMultiplier = 3.12, levelRequirement = 0, },
- [33] = { baseMultiplier = 3.22, levelRequirement = 0, },
- [34] = { baseMultiplier = 3.33, levelRequirement = 0, },
- [35] = { baseMultiplier = 3.44, levelRequirement = 0, },
- [36] = { baseMultiplier = 3.56, levelRequirement = 0, },
- [37] = { baseMultiplier = 3.67, levelRequirement = 0, },
- [38] = { baseMultiplier = 3.8, levelRequirement = 0, },
- [39] = { baseMultiplier = 3.92, levelRequirement = 0, },
- [40] = { baseMultiplier = 4.05, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = -75, baseMultiplier = 0.25, levelRequirement = 0, },
+ [2] = { attackSpeedMultiplier = -75, baseMultiplier = 0.27, levelRequirement = 0, },
+ [3] = { attackSpeedMultiplier = -75, baseMultiplier = 0.3, levelRequirement = 0, },
+ [4] = { attackSpeedMultiplier = -75, baseMultiplier = 0.33, levelRequirement = 0, },
+ [5] = { attackSpeedMultiplier = -75, baseMultiplier = 0.35, levelRequirement = 0, },
+ [6] = { attackSpeedMultiplier = -75, baseMultiplier = 0.38, levelRequirement = 0, },
+ [7] = { attackSpeedMultiplier = -75, baseMultiplier = 0.4, levelRequirement = 0, },
+ [8] = { attackSpeedMultiplier = -75, baseMultiplier = 0.42, levelRequirement = 0, },
+ [9] = { attackSpeedMultiplier = -75, baseMultiplier = 0.44, levelRequirement = 0, },
+ [10] = { attackSpeedMultiplier = -75, baseMultiplier = 0.46, levelRequirement = 0, },
+ [11] = { attackSpeedMultiplier = -75, baseMultiplier = 0.48, levelRequirement = 0, },
+ [12] = { attackSpeedMultiplier = -75, baseMultiplier = 0.5, levelRequirement = 0, },
+ [13] = { attackSpeedMultiplier = -75, baseMultiplier = 0.52, levelRequirement = 0, },
+ [14] = { attackSpeedMultiplier = -75, baseMultiplier = 0.54, levelRequirement = 0, },
+ [15] = { attackSpeedMultiplier = -75, baseMultiplier = 0.56, levelRequirement = 0, },
+ [16] = { attackSpeedMultiplier = -75, baseMultiplier = 0.58, levelRequirement = 0, },
+ [17] = { attackSpeedMultiplier = -75, baseMultiplier = 0.6, levelRequirement = 0, },
+ [18] = { attackSpeedMultiplier = -75, baseMultiplier = 0.62, levelRequirement = 0, },
+ [19] = { attackSpeedMultiplier = -75, baseMultiplier = 0.64, levelRequirement = 0, },
+ [20] = { attackSpeedMultiplier = -75, baseMultiplier = 0.66, levelRequirement = 0, },
+ [21] = { attackSpeedMultiplier = -75, baseMultiplier = 0.68, levelRequirement = 0, },
+ [22] = { attackSpeedMultiplier = -75, baseMultiplier = 0.7, levelRequirement = 0, },
+ [23] = { attackSpeedMultiplier = -75, baseMultiplier = 0.73, levelRequirement = 0, },
+ [24] = { attackSpeedMultiplier = -75, baseMultiplier = 0.75, levelRequirement = 0, },
+ [25] = { attackSpeedMultiplier = -75, baseMultiplier = 0.78, levelRequirement = 0, },
+ [26] = { attackSpeedMultiplier = -75, baseMultiplier = 0.8, levelRequirement = 0, },
+ [27] = { attackSpeedMultiplier = -75, baseMultiplier = 0.83, levelRequirement = 0, },
+ [28] = { attackSpeedMultiplier = -75, baseMultiplier = 0.86, levelRequirement = 0, },
+ [29] = { attackSpeedMultiplier = -75, baseMultiplier = 0.88, levelRequirement = 0, },
+ [30] = { attackSpeedMultiplier = -75, baseMultiplier = 0.91, levelRequirement = 0, },
+ [31] = { attackSpeedMultiplier = -75, baseMultiplier = 0.94, levelRequirement = 0, },
+ [32] = { attackSpeedMultiplier = -75, baseMultiplier = 0.98, levelRequirement = 0, },
+ [33] = { attackSpeedMultiplier = -75, baseMultiplier = 1.01, levelRequirement = 0, },
+ [34] = { attackSpeedMultiplier = -75, baseMultiplier = 1.04, levelRequirement = 0, },
+ [35] = { attackSpeedMultiplier = -75, baseMultiplier = 1.08, levelRequirement = 0, },
+ [36] = { attackSpeedMultiplier = -75, baseMultiplier = 1.11, levelRequirement = 0, },
+ [37] = { attackSpeedMultiplier = -75, baseMultiplier = 1.15, levelRequirement = 0, },
+ [38] = { attackSpeedMultiplier = -75, baseMultiplier = 1.19, levelRequirement = 0, },
+ [39] = { attackSpeedMultiplier = -75, baseMultiplier = 1.23, levelRequirement = 0, },
+ [40] = { attackSpeedMultiplier = -75, baseMultiplier = 1.27, levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Slam",
+ label = "Artillery",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "totem_shockwave_quake",
+ statDescriptionScope = "artillery_ballista_projectile",
baseFlags = {
- totem = true,
attack = true,
- area = true,
- melee = true,
+ projectile = true,
+ totem = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 30 },
- { "active_skill_base_secondary_area_of_effect_radius", 60 },
- { "skill_disabled_unless_cloned", 2 },
+ { "action_required_target_facing_angle_tolerance_degrees", 90 },
+ { "base_number_of_projectiles", 3 },
+ { "siege_cascade_fall_time_ms", 800 },
+ { "active_skill_base_secondary_area_of_effect_radius", 5 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 45 },
+ { "siege_cascade_visual_fall_time_delay_%", 70 },
+ { "skill_disabled_unless_cloned", 1 },
+ { "projectile_minimum_range", 16 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
+ { "main_hand_base_maximum_attack_distance", 90 },
},
stats = {
+ "base_is_projectile",
"is_area_damage",
- "attack_is_melee_override",
+ "siege_cascade_is_artillery_ballista",
"base_skill_is_totemified",
+ "active_skill_ignores_crossbow_manager",
+ "base_skill_is_ballistified",
},
levels = {
[1] = { actorLevel = 1, },
@@ -11875,65 +13482,77 @@ skills["ShockwaveTotemQuakePlayer"] = {
},
},
[2] = {
- label = "Jagged Ground Eruption",
+ label = "Explosion",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "totem_shockwave_quake",
+ statDescriptionScope = "artillery_ballista_projectile",
baseFlags = {
- totem = true,
attack = true,
- area = true,
+ projectile = true,
+ totem = true,
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 30 },
- { "active_skill_base_secondary_area_of_effect_radius", 60 },
- { "skill_disabled_unless_cloned", 2 },
+ { "action_required_target_facing_angle_tolerance_degrees", 90 },
+ { "base_number_of_projectiles", 3 },
+ { "siege_cascade_fall_time_ms", 800 },
+ { "active_skill_base_secondary_area_of_effect_radius", 5 },
+ { "active_skill_base_tertiary_area_of_effect_radius", 45 },
+ { "siege_cascade_visual_fall_time_delay_%", 70 },
+ { "skill_disabled_unless_cloned", 1 },
+ { "projectile_minimum_range", 16 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
+ { "main_hand_base_maximum_attack_distance", 90 },
+ { "active_skill_base_secondary_area_of_effect_radius", 9 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 },
},
stats = {
+ "base_is_projectile",
"is_area_damage",
- "attack_is_melee_override",
+ "siege_cascade_is_artillery_ballista",
"base_skill_is_totemified",
+ "active_skill_ignores_crossbow_manager",
+ "base_skill_is_ballistified",
},
levels = {
- [1] = { baseMultiplier = 0.2, actorLevel = 1, },
- [2] = { baseMultiplier = 0.22, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.24, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.26, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.28, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.3, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.32, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.34, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.35, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.37, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 0.38, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 0.4, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 0.41, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 0.43, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 0.44, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 0.46, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 0.48, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 0.49, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 0.51, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 0.53, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 0.54, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 0.56, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 0.58, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 0.6, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 0.62, actorLevel = 136.875, },
- [26] = { baseMultiplier = 0.64, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 0.66, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 0.68, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 0.71, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 0.73, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 0.76, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 0.78, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 0.81, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 0.83, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 0.86, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 0.89, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 0.92, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 0.95, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 0.98, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 1.01, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.6, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.65, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.7, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.75, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.8, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.84, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.88, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.92, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 0.95, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 0.99, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.03, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.07, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.11, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.15, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.19, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.23, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.28, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.32, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.36, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 1.41, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 1.45, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 1.5, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 1.55, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 1.6, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 1.66, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 1.71, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 1.77, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 1.83, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 1.89, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 1.95, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 2.02, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 2.08, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 2.15, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 2.22, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 2.3, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 2.37, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 2.45, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 2.53, actorLevel = 288.29998779297, },
},
},
}
@@ -11943,7 +13562,7 @@ skills["StampedePlayer"] = {
baseTypeName = "Stampede",
color = 1,
description = "Charges forward, cracking the earth and leaving a patch of Jagged Ground with every footstep. At the end of your charge, a massive leaping Slam damages enemies and causes all nearby patches of Jagged Ground to explode, damaging enemies standing on them.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Jumping] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -11953,46 +13572,46 @@ skills["StampedePlayer"] = {
{ "slam_aftershock_chance_%", 1 },
},
levels = {
- [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 10, }, },
+ [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 9, }, },
[2] = { baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 11, }, },
[3] = { baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 12, }, },
- [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 13, }, },
- [5] = { baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 15, }, },
- [6] = { baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 16, }, },
- [7] = { baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 18, }, },
- [8] = { baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 20, }, },
- [9] = { baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 22, }, },
- [10] = { baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 25, }, },
- [11] = { baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 27, }, },
- [12] = { baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 30, }, },
- [13] = { baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 34, }, },
- [14] = { baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 38, }, },
- [15] = { baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 42, }, },
- [16] = { baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 46, }, },
+ [4] = { baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 14, }, },
+ [5] = { baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 16, }, },
+ [6] = { baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 18, }, },
+ [7] = { baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 20, }, },
+ [8] = { baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 22, }, },
+ [9] = { baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 25, }, },
+ [10] = { baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 27, }, },
+ [11] = { baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 30, }, },
+ [12] = { baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 33, }, },
+ [13] = { baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 36, }, },
+ [14] = { baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 40, }, },
+ [15] = { baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 43, }, },
+ [16] = { baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 47, }, },
[17] = { baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 51, }, },
- [18] = { baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 57, }, },
- [19] = { baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 63, }, },
- [20] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 70, }, },
- [21] = { baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 77, }, },
- [22] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 86, }, },
- [23] = { baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 95, }, },
- [24] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 106, }, },
- [25] = { baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 117, }, },
- [26] = { baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 130, }, },
- [27] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 144, }, },
- [28] = { baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 159, }, },
- [29] = { baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 177, }, },
- [30] = { baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 196, }, },
- [31] = { baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 217, }, },
- [32] = { baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 241, }, },
- [33] = { baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 267, }, },
- [34] = { baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 296, }, },
- [35] = { baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 328, }, },
- [36] = { baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 363, }, },
- [37] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 402, }, },
- [38] = { baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 446, }, },
- [39] = { baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 494, }, },
- [40] = { baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 548, }, },
+ [18] = { baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 56, }, },
+ [19] = { baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 60, }, },
+ [20] = { baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 65, }, },
+ [21] = { baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 70, }, },
+ [22] = { baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 76, }, },
+ [23] = { baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 82, }, },
+ [24] = { baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 88, }, },
+ [25] = { baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 94, }, },
+ [26] = { baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 101, }, },
+ [27] = { baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 109, }, },
+ [28] = { baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 117, }, },
+ [29] = { baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 125, }, },
+ [30] = { baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 134, }, },
+ [31] = { baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 143, }, },
+ [32] = { baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 153, }, },
+ [33] = { baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 163, }, },
+ [34] = { baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 174, }, },
+ [35] = { baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 186, }, },
+ [36] = { baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 198, }, },
+ [37] = { baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 211, }, },
+ [38] = { baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 225, }, },
+ [39] = { baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 240, }, },
+ [40] = { baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 255, }, },
},
statSets = {
[1] = {
@@ -12208,8 +13827,8 @@ skills["SunderPlayer"] = {
name = "Sunder",
baseTypeName = "Sunder",
color = 1,
- description = "Slam the ground, creating a roiling fissure that damages enemies in a sequence of areas in front of you. A number of enemies hit by the wave will release a shockwave, damaging other enemies.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.CreatesFissure] = true, },
+ description = "Slam the ground, creating a roiling fissure that damages enemies in a sequence of areas in front of you. A number of enemies hit by the wave will release a shockwave, damaging other enemies. Hitting an enemy with Fully Broken Armour applies Sundered Armour, making it take additional increased Physical damage.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.CreatesFissure] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Two Handed Mace"] = true,
@@ -12219,46 +13838,46 @@ skills["SunderPlayer"] = {
{ "accuracy_range_penalty_+%", -2.5 },
},
levels = {
- [1] = { attackSpeedMultiplier = -35, baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 16, }, },
- [2] = { attackSpeedMultiplier = -35, baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 17, }, },
- [3] = { attackSpeedMultiplier = -35, baseMultiplier = 1.95, levelRequirement = 6, cost = { Mana = 19, }, },
- [4] = { attackSpeedMultiplier = -35, baseMultiplier = 2.14, levelRequirement = 10, cost = { Mana = 22, }, },
- [5] = { attackSpeedMultiplier = -35, baseMultiplier = 2.32, levelRequirement = 14, cost = { Mana = 24, }, },
- [6] = { attackSpeedMultiplier = -35, baseMultiplier = 2.51, levelRequirement = 18, cost = { Mana = 27, }, },
- [7] = { attackSpeedMultiplier = -35, baseMultiplier = 2.71, levelRequirement = 22, cost = { Mana = 30, }, },
- [8] = { attackSpeedMultiplier = -35, baseMultiplier = 2.91, levelRequirement = 26, cost = { Mana = 33, }, },
- [9] = { attackSpeedMultiplier = -35, baseMultiplier = 3.09, levelRequirement = 31, cost = { Mana = 36, }, },
- [10] = { attackSpeedMultiplier = -35, baseMultiplier = 3.29, levelRequirement = 36, cost = { Mana = 40, }, },
- [11] = { attackSpeedMultiplier = -35, baseMultiplier = 3.5, levelRequirement = 41, cost = { Mana = 45, }, },
- [12] = { attackSpeedMultiplier = -35, baseMultiplier = 3.73, levelRequirement = 46, cost = { Mana = 50, }, },
- [13] = { attackSpeedMultiplier = -35, baseMultiplier = 3.98, levelRequirement = 52, cost = { Mana = 55, }, },
- [14] = { attackSpeedMultiplier = -35, baseMultiplier = 4.26, levelRequirement = 58, cost = { Mana = 61, }, },
- [15] = { attackSpeedMultiplier = -35, baseMultiplier = 4.56, levelRequirement = 64, cost = { Mana = 68, }, },
- [16] = { attackSpeedMultiplier = -35, baseMultiplier = 4.89, levelRequirement = 66, cost = { Mana = 75, }, },
- [17] = { attackSpeedMultiplier = -35, baseMultiplier = 5.24, levelRequirement = 72, cost = { Mana = 83, }, },
- [18] = { attackSpeedMultiplier = -35, baseMultiplier = 5.64, levelRequirement = 78, cost = { Mana = 92, }, },
- [19] = { attackSpeedMultiplier = -35, baseMultiplier = 6.06, levelRequirement = 84, cost = { Mana = 102, }, },
- [20] = { attackSpeedMultiplier = -35, baseMultiplier = 6.53, levelRequirement = 90, cost = { Mana = 114, }, },
- [21] = { attackSpeedMultiplier = -35, baseMultiplier = 7.04, levelRequirement = 90, cost = { Mana = 126, }, },
- [22] = { attackSpeedMultiplier = -35, baseMultiplier = 7.58, levelRequirement = 90, cost = { Mana = 140, }, },
- [23] = { attackSpeedMultiplier = -35, baseMultiplier = 8.17, levelRequirement = 90, cost = { Mana = 155, }, },
- [24] = { attackSpeedMultiplier = -35, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 171, }, },
- [25] = { attackSpeedMultiplier = -35, baseMultiplier = 9.48, levelRequirement = 90, cost = { Mana = 190, }, },
- [26] = { attackSpeedMultiplier = -35, baseMultiplier = 10.21, levelRequirement = 90, cost = { Mana = 211, }, },
- [27] = { attackSpeedMultiplier = -35, baseMultiplier = 11, levelRequirement = 90, cost = { Mana = 233, }, },
- [28] = { attackSpeedMultiplier = -35, baseMultiplier = 11.85, levelRequirement = 90, cost = { Mana = 259, }, },
- [29] = { attackSpeedMultiplier = -35, baseMultiplier = 12.77, levelRequirement = 90, cost = { Mana = 287, }, },
- [30] = { attackSpeedMultiplier = -35, baseMultiplier = 13.75, levelRequirement = 90, cost = { Mana = 318, }, },
- [31] = { attackSpeedMultiplier = -35, baseMultiplier = 14.82, levelRequirement = 90, cost = { Mana = 352, }, },
- [32] = { attackSpeedMultiplier = -35, baseMultiplier = 15.96, levelRequirement = 90, cost = { Mana = 390, }, },
- [33] = { attackSpeedMultiplier = -35, baseMultiplier = 17.2, levelRequirement = 90, cost = { Mana = 433, }, },
- [34] = { attackSpeedMultiplier = -35, baseMultiplier = 18.52, levelRequirement = 90, cost = { Mana = 479, }, },
- [35] = { attackSpeedMultiplier = -35, baseMultiplier = 19.96, levelRequirement = 90, cost = { Mana = 531, }, },
- [36] = { attackSpeedMultiplier = -35, baseMultiplier = 21.5, levelRequirement = 90, cost = { Mana = 589, }, },
- [37] = { attackSpeedMultiplier = -35, baseMultiplier = 23.16, levelRequirement = 90, cost = { Mana = 652, }, },
- [38] = { attackSpeedMultiplier = -35, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 723, }, },
- [39] = { attackSpeedMultiplier = -35, baseMultiplier = 26.88, levelRequirement = 90, cost = { Mana = 801, }, },
- [40] = { attackSpeedMultiplier = -35, baseMultiplier = 28.96, levelRequirement = 90, cost = { Mana = 888, }, },
+ [1] = { attackSpeedMultiplier = -65, baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 15, }, },
+ [2] = { attackSpeedMultiplier = -65, baseMultiplier = 1.76, levelRequirement = 3, cost = { Mana = 18, }, },
+ [3] = { attackSpeedMultiplier = -65, baseMultiplier = 1.95, levelRequirement = 6, cost = { Mana = 20, }, },
+ [4] = { attackSpeedMultiplier = -65, baseMultiplier = 2.14, levelRequirement = 10, cost = { Mana = 23, }, },
+ [5] = { attackSpeedMultiplier = -65, baseMultiplier = 2.32, levelRequirement = 14, cost = { Mana = 26, }, },
+ [6] = { attackSpeedMultiplier = -65, baseMultiplier = 2.51, levelRequirement = 18, cost = { Mana = 29, }, },
+ [7] = { attackSpeedMultiplier = -65, baseMultiplier = 2.71, levelRequirement = 22, cost = { Mana = 33, }, },
+ [8] = { attackSpeedMultiplier = -65, baseMultiplier = 2.91, levelRequirement = 26, cost = { Mana = 37, }, },
+ [9] = { attackSpeedMultiplier = -65, baseMultiplier = 3.09, levelRequirement = 31, cost = { Mana = 41, }, },
+ [10] = { attackSpeedMultiplier = -65, baseMultiplier = 3.29, levelRequirement = 36, cost = { Mana = 45, }, },
+ [11] = { attackSpeedMultiplier = -65, baseMultiplier = 3.5, levelRequirement = 41, cost = { Mana = 49, }, },
+ [12] = { attackSpeedMultiplier = -65, baseMultiplier = 3.73, levelRequirement = 46, cost = { Mana = 54, }, },
+ [13] = { attackSpeedMultiplier = -65, baseMultiplier = 3.98, levelRequirement = 52, cost = { Mana = 59, }, },
+ [14] = { attackSpeedMultiplier = -65, baseMultiplier = 4.26, levelRequirement = 58, cost = { Mana = 65, }, },
+ [15] = { attackSpeedMultiplier = -65, baseMultiplier = 4.56, levelRequirement = 64, cost = { Mana = 71, }, },
+ [16] = { attackSpeedMultiplier = -65, baseMultiplier = 4.89, levelRequirement = 66, cost = { Mana = 77, }, },
+ [17] = { attackSpeedMultiplier = -65, baseMultiplier = 5.24, levelRequirement = 72, cost = { Mana = 83, }, },
+ [18] = { attackSpeedMultiplier = -65, baseMultiplier = 5.64, levelRequirement = 78, cost = { Mana = 90, }, },
+ [19] = { attackSpeedMultiplier = -65, baseMultiplier = 6.06, levelRequirement = 84, cost = { Mana = 98, }, },
+ [20] = { attackSpeedMultiplier = -65, baseMultiplier = 6.53, levelRequirement = 90, cost = { Mana = 106, }, },
+ [21] = { attackSpeedMultiplier = -65, baseMultiplier = 7.04, levelRequirement = 90, cost = { Mana = 114, }, },
+ [22] = { attackSpeedMultiplier = -65, baseMultiplier = 7.58, levelRequirement = 90, cost = { Mana = 123, }, },
+ [23] = { attackSpeedMultiplier = -65, baseMultiplier = 8.17, levelRequirement = 90, cost = { Mana = 133, }, },
+ [24] = { attackSpeedMultiplier = -65, baseMultiplier = 8.8, levelRequirement = 90, cost = { Mana = 143, }, },
+ [25] = { attackSpeedMultiplier = -65, baseMultiplier = 9.48, levelRequirement = 90, cost = { Mana = 153, }, },
+ [26] = { attackSpeedMultiplier = -65, baseMultiplier = 10.21, levelRequirement = 90, cost = { Mana = 165, }, },
+ [27] = { attackSpeedMultiplier = -65, baseMultiplier = 11, levelRequirement = 90, cost = { Mana = 177, }, },
+ [28] = { attackSpeedMultiplier = -65, baseMultiplier = 11.85, levelRequirement = 90, cost = { Mana = 189, }, },
+ [29] = { attackSpeedMultiplier = -65, baseMultiplier = 12.77, levelRequirement = 90, cost = { Mana = 203, }, },
+ [30] = { attackSpeedMultiplier = -65, baseMultiplier = 13.75, levelRequirement = 90, cost = { Mana = 217, }, },
+ [31] = { attackSpeedMultiplier = -65, baseMultiplier = 14.82, levelRequirement = 90, cost = { Mana = 232, }, },
+ [32] = { attackSpeedMultiplier = -65, baseMultiplier = 15.96, levelRequirement = 90, cost = { Mana = 248, }, },
+ [33] = { attackSpeedMultiplier = -65, baseMultiplier = 17.2, levelRequirement = 90, cost = { Mana = 265, }, },
+ [34] = { attackSpeedMultiplier = -65, baseMultiplier = 18.52, levelRequirement = 90, cost = { Mana = 283, }, },
+ [35] = { attackSpeedMultiplier = -65, baseMultiplier = 19.96, levelRequirement = 90, cost = { Mana = 302, }, },
+ [36] = { attackSpeedMultiplier = -65, baseMultiplier = 21.5, levelRequirement = 90, cost = { Mana = 322, }, },
+ [37] = { attackSpeedMultiplier = -65, baseMultiplier = 23.16, levelRequirement = 90, cost = { Mana = 343, }, },
+ [38] = { attackSpeedMultiplier = -65, baseMultiplier = 24.95, levelRequirement = 90, cost = { Mana = 365, }, },
+ [39] = { attackSpeedMultiplier = -65, baseMultiplier = 26.88, levelRequirement = 90, cost = { Mana = 389, }, },
+ [40] = { attackSpeedMultiplier = -65, baseMultiplier = 28.96, levelRequirement = 90, cost = { Mana = 414, }, },
},
statSets = {
[1] = {
@@ -12271,23 +13890,22 @@ skills["SunderPlayer"] = {
melee = true,
},
constantStats = {
- { "broken_armour_consume_art_variation", 1 },
{ "sunder_wave_radius_+_per_step", 2 },
{ "sunder_wave_max_steps", 5 },
- { "sunder_shockwave_limit_per_cascade", 5 },
- { "total_attack_time_+_ms", 900 },
+ { "sunder_shockwave_limit_per_cascade", 7 },
{ "active_skill_area_of_effect_radius_+%_final", 0 },
{ "melee_conditional_step_distance", 11 },
{ "attack_maximum_action_distance_+", 24 },
- { "base_critical_strike_multiplier_+", 100 },
{ "active_skill_base_area_of_effect_radius", 9 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
+ { "base_skill_effect_duration", 6000 },
+ { "sunder_armor_break_extra_magnitude", 20 },
},
stats = {
"is_area_damage",
- "consume_enemy_fully_broken_armour_to_guarantee_crit",
"base_skill_show_average_damage_instead_of_dps",
"cannot_break_armour",
+ "skill_effect_duration_is_sundered_armour_duration",
},
levels = {
[1] = { actorLevel = 1, },
@@ -12341,20 +13959,20 @@ skills["SunderPlayer"] = {
area = true,
},
constantStats = {
- { "broken_armour_consume_art_variation", 1 },
- { "sunder_shockwave_limit_per_cascade", 5 },
+ { "sunder_shockwave_limit_per_cascade", 7 },
{ "active_skill_area_of_effect_radius_+%_final", 0 },
{ "melee_conditional_step_distance", 11 },
{ "attack_maximum_action_distance_+", 24 },
- { "base_critical_strike_multiplier_+", 100 },
{ "active_skill_damage_+%_final_while_dual_wielding", -30 },
+ { "base_skill_effect_duration", 6000 },
+ { "sunder_armor_break_extra_magnitude", 20 },
{ "active_skill_base_secondary_area_of_effect_radius", 12 },
},
stats = {
"is_area_damage",
- "consume_enemy_fully_broken_armour_to_guarantee_crit",
"base_skill_show_average_damage_instead_of_dps",
"cannot_break_armour",
+ "skill_effect_duration_is_sundered_armour_duration",
"display_statset_hide_usage_stats",
},
levels = {
@@ -12407,55 +14025,55 @@ skills["SuperchargedSlamPlayer"] = {
baseTypeName = "Supercharged Slam",
color = 1,
description = "Channel to charge up a heavy swing, drawing earth from the ground to enlarge your mace. Release to Slam the ground, dealing damage in an area around the impact, followed by Aftershocks dealing damage in a larger area.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.NoDualWield] = true, [SkillType.GainsStages] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.NoDualWield] = true, [SkillType.GainsStages] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Two Handed Mace"] = true,
},
castTime = 1,
qualityStats = {
- { "channelled_slam_max_stages", 0.1 },
+ { "channelled_slam_max_stages", 0.05 },
},
levels = {
- [1] = { attackTime = 1000, baseMultiplier = 0.5, levelRequirement = 0, cost = { ManaPerMinute = 489, }, },
- [2] = { attackTime = 1000, baseMultiplier = 0.55, levelRequirement = 3, cost = { ManaPerMinute = 541, }, },
- [3] = { attackTime = 1000, baseMultiplier = 0.6, levelRequirement = 6, cost = { ManaPerMinute = 600, }, },
- [4] = { attackTime = 1000, baseMultiplier = 0.66, levelRequirement = 10, cost = { ManaPerMinute = 665, }, },
- [5] = { attackTime = 1000, baseMultiplier = 0.71, levelRequirement = 14, cost = { ManaPerMinute = 737, }, },
- [6] = { attackTime = 1000, baseMultiplier = 0.77, levelRequirement = 18, cost = { ManaPerMinute = 816, }, },
- [7] = { attackTime = 1000, baseMultiplier = 0.82, levelRequirement = 22, cost = { ManaPerMinute = 905, }, },
- [8] = { attackTime = 1000, baseMultiplier = 0.87, levelRequirement = 26, cost = { ManaPerMinute = 1003, }, },
- [9] = { attackTime = 1000, baseMultiplier = 0.91, levelRequirement = 31, cost = { ManaPerMinute = 1111, }, },
- [10] = { attackTime = 1000, baseMultiplier = 0.96, levelRequirement = 36, cost = { ManaPerMinute = 1231, }, },
- [11] = { attackTime = 1000, baseMultiplier = 1.01, levelRequirement = 41, cost = { ManaPerMinute = 1364, }, },
- [12] = { attackTime = 1000, baseMultiplier = 1.06, levelRequirement = 46, cost = { ManaPerMinute = 1512, }, },
- [13] = { attackTime = 1000, baseMultiplier = 1.11, levelRequirement = 52, cost = { ManaPerMinute = 1675, }, },
- [14] = { attackTime = 1000, baseMultiplier = 1.16, levelRequirement = 58, cost = { ManaPerMinute = 1857, }, },
- [15] = { attackTime = 1000, baseMultiplier = 1.22, levelRequirement = 64, cost = { ManaPerMinute = 2057, }, },
- [16] = { attackTime = 1000, baseMultiplier = 1.28, levelRequirement = 66, cost = { ManaPerMinute = 2280, }, },
- [17] = { attackTime = 1000, baseMultiplier = 1.35, levelRequirement = 72, cost = { ManaPerMinute = 2526, }, },
- [18] = { attackTime = 1000, baseMultiplier = 1.41, levelRequirement = 78, cost = { ManaPerMinute = 2799, }, },
- [19] = { attackTime = 1000, baseMultiplier = 1.49, levelRequirement = 84, cost = { ManaPerMinute = 3102, }, },
- [20] = { attackTime = 1000, baseMultiplier = 1.56, levelRequirement = 90, cost = { ManaPerMinute = 3438, }, },
- [21] = { attackTime = 1000, baseMultiplier = 1.64, levelRequirement = 90, cost = { ManaPerMinute = 3809, }, },
- [22] = { attackTime = 1000, baseMultiplier = 1.72, levelRequirement = 90, cost = { ManaPerMinute = 4221, }, },
- [23] = { attackTime = 1000, baseMultiplier = 1.81, levelRequirement = 90, cost = { ManaPerMinute = 4677, }, },
- [24] = { attackTime = 1000, baseMultiplier = 1.9, levelRequirement = 90, cost = { ManaPerMinute = 5183, }, },
- [25] = { attackTime = 1000, baseMultiplier = 1.99, levelRequirement = 90, cost = { ManaPerMinute = 5743, }, },
- [26] = { attackTime = 1000, baseMultiplier = 2.09, levelRequirement = 90, cost = { ManaPerMinute = 6364, }, },
- [27] = { attackTime = 1000, baseMultiplier = 2.19, levelRequirement = 90, cost = { ManaPerMinute = 7052, }, },
- [28] = { attackTime = 1000, baseMultiplier = 2.3, levelRequirement = 90, cost = { ManaPerMinute = 7815, }, },
- [29] = { attackTime = 1000, baseMultiplier = 2.42, levelRequirement = 90, cost = { ManaPerMinute = 8660, }, },
- [30] = { attackTime = 1000, baseMultiplier = 2.54, levelRequirement = 90, cost = { ManaPerMinute = 9596, }, },
- [31] = { attackTime = 1000, baseMultiplier = 2.67, levelRequirement = 90, cost = { ManaPerMinute = 10633, }, },
- [32] = { attackTime = 1000, baseMultiplier = 2.8, levelRequirement = 90, cost = { ManaPerMinute = 11783, }, },
- [33] = { attackTime = 1000, baseMultiplier = 2.94, levelRequirement = 90, cost = { ManaPerMinute = 13056, }, },
- [34] = { attackTime = 1000, baseMultiplier = 3.09, levelRequirement = 90, cost = { ManaPerMinute = 14468, }, },
- [35] = { attackTime = 1000, baseMultiplier = 3.24, levelRequirement = 90, cost = { ManaPerMinute = 16032, }, },
- [36] = { attackTime = 1000, baseMultiplier = 3.4, levelRequirement = 90, cost = { ManaPerMinute = 17765, }, },
- [37] = { attackTime = 1000, baseMultiplier = 3.57, levelRequirement = 90, cost = { ManaPerMinute = 19685, }, },
- [38] = { attackTime = 1000, baseMultiplier = 3.75, levelRequirement = 90, cost = { ManaPerMinute = 21813, }, },
- [39] = { attackTime = 1000, baseMultiplier = 3.94, levelRequirement = 90, cost = { ManaPerMinute = 24171, }, },
- [40] = { attackTime = 1000, baseMultiplier = 4.14, levelRequirement = 90, cost = { ManaPerMinute = 26784, }, },
+ [1] = { attackTime = 1000, baseMultiplier = 0.7, levelRequirement = 0, cost = { ManaPerMinute = 474, }, },
+ [2] = { attackTime = 1000, baseMultiplier = 0.77, levelRequirement = 3, cost = { ManaPerMinute = 548, }, },
+ [3] = { attackTime = 1000, baseMultiplier = 0.85, levelRequirement = 6, cost = { ManaPerMinute = 628, }, },
+ [4] = { attackTime = 1000, baseMultiplier = 0.93, levelRequirement = 10, cost = { ManaPerMinute = 713, }, },
+ [5] = { attackTime = 1000, levelRequirement = 14, cost = { ManaPerMinute = 805, }, },
+ [6] = { attackTime = 1000, baseMultiplier = 1.08, levelRequirement = 18, cost = { ManaPerMinute = 903, }, },
+ [7] = { attackTime = 1000, baseMultiplier = 1.16, levelRequirement = 22, cost = { ManaPerMinute = 1008, }, },
+ [8] = { attackTime = 1000, baseMultiplier = 1.24, levelRequirement = 26, cost = { ManaPerMinute = 1120, }, },
+ [9] = { attackTime = 1000, baseMultiplier = 1.31, levelRequirement = 31, cost = { ManaPerMinute = 1239, }, },
+ [10] = { attackTime = 1000, baseMultiplier = 1.38, levelRequirement = 36, cost = { ManaPerMinute = 1367, }, },
+ [11] = { attackTime = 1000, baseMultiplier = 1.46, levelRequirement = 41, cost = { ManaPerMinute = 1503, }, },
+ [12] = { attackTime = 1000, baseMultiplier = 1.55, levelRequirement = 46, cost = { ManaPerMinute = 1648, }, },
+ [13] = { attackTime = 1000, baseMultiplier = 1.64, levelRequirement = 52, cost = { ManaPerMinute = 1803, }, },
+ [14] = { attackTime = 1000, baseMultiplier = 1.74, levelRequirement = 58, cost = { ManaPerMinute = 1968, }, },
+ [15] = { attackTime = 1000, baseMultiplier = 1.85, levelRequirement = 64, cost = { ManaPerMinute = 2143, }, },
+ [16] = { attackTime = 1000, baseMultiplier = 1.97, levelRequirement = 66, cost = { ManaPerMinute = 2330, }, },
+ [17] = { attackTime = 1000, baseMultiplier = 2.09, levelRequirement = 72, cost = { ManaPerMinute = 2529, }, },
+ [18] = { attackTime = 1000, baseMultiplier = 2.23, levelRequirement = 78, cost = { ManaPerMinute = 2740, }, },
+ [19] = { attackTime = 1000, baseMultiplier = 2.38, levelRequirement = 84, cost = { ManaPerMinute = 2964, }, },
+ [20] = { attackTime = 1000, baseMultiplier = 2.54, levelRequirement = 90, cost = { ManaPerMinute = 3203, }, },
+ [21] = { attackTime = 1000, baseMultiplier = 2.7, levelRequirement = 90, cost = { ManaPerMinute = 3456, }, },
+ [22] = { attackTime = 1000, baseMultiplier = 2.88, levelRequirement = 90, cost = { ManaPerMinute = 3725, }, },
+ [23] = { attackTime = 1000, baseMultiplier = 3.08, levelRequirement = 90, cost = { ManaPerMinute = 4011, }, },
+ [24] = { attackTime = 1000, baseMultiplier = 3.28, levelRequirement = 90, cost = { ManaPerMinute = 4314, }, },
+ [25] = { attackTime = 1000, baseMultiplier = 3.5, levelRequirement = 90, cost = { ManaPerMinute = 4635, }, },
+ [26] = { attackTime = 1000, baseMultiplier = 3.73, levelRequirement = 90, cost = { ManaPerMinute = 4976, }, },
+ [27] = { attackTime = 1000, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 5337, }, },
+ [28] = { attackTime = 1000, baseMultiplier = 4.25, levelRequirement = 90, cost = { ManaPerMinute = 5719, }, },
+ [29] = { attackTime = 1000, baseMultiplier = 4.53, levelRequirement = 90, cost = { ManaPerMinute = 6125, }, },
+ [30] = { attackTime = 1000, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 6554, }, },
+ [31] = { attackTime = 1000, baseMultiplier = 5.15, levelRequirement = 90, cost = { ManaPerMinute = 7009, }, },
+ [32] = { attackTime = 1000, baseMultiplier = 5.5, levelRequirement = 90, cost = { ManaPerMinute = 7490, }, },
+ [33] = { attackTime = 1000, baseMultiplier = 5.86, levelRequirement = 90, cost = { ManaPerMinute = 7999, }, },
+ [34] = { attackTime = 1000, baseMultiplier = 6.25, levelRequirement = 90, cost = { ManaPerMinute = 8538, }, },
+ [35] = { attackTime = 1000, baseMultiplier = 6.67, levelRequirement = 90, cost = { ManaPerMinute = 9108, }, },
+ [36] = { attackTime = 1000, baseMultiplier = 7.12, levelRequirement = 90, cost = { ManaPerMinute = 9711, }, },
+ [37] = { attackTime = 1000, baseMultiplier = 7.59, levelRequirement = 90, cost = { ManaPerMinute = 10348, }, },
+ [38] = { attackTime = 1000, baseMultiplier = 8.09, levelRequirement = 90, cost = { ManaPerMinute = 11022, }, },
+ [39] = { attackTime = 1000, baseMultiplier = 8.63, levelRequirement = 90, cost = { ManaPerMinute = 11734, }, },
+ [40] = { attackTime = 1000, baseMultiplier = 9.21, levelRequirement = 90, cost = { ManaPerMinute = 12487, }, },
},
statSets = {
[1] = {
@@ -12469,7 +14087,7 @@ skills["SuperchargedSlamPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 16 },
- { "channelled_slam_damage_+%_final_per_stage", 60 },
+ { "channelled_slam_damage_+%_final_per_stage", 40 },
{ "channelled_slam_max_stages", 3 },
{ "skill_animation_duration_multiplier_override", 3 },
{ "channel_skill_end_animation_duration_override_ms", 1000 },
@@ -12529,69 +14147,296 @@ skills["SuperchargedSlamPlayer"] = {
incrementalEffectiveness = 0.092720001935959,
statDescriptionScope = "channelled_slam_statset_1",
baseFlags = {
- attack = true,
- area = true,
- melee = true,
+ attack = true,
+ area = true,
+ melee = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 16 },
+ { "channelled_slam_damage_+%_final_per_stage", 40 },
+ { "channelled_slam_max_stages", 3 },
+ { "skill_animation_duration_multiplier_override", 3 },
+ { "channel_skill_end_animation_duration_override_ms", 1000 },
+ { "base_minimum_channel_time_ms", 1000 },
+ { "active_skill_base_area_of_effect_radius", 12 },
+ { "aftershock_radius_+_per_previous_aftershock", 4 },
+ { "aftershock_delay_ms", 250 },
+ },
+ stats = {
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "channel_start_lock_cancelling_scales_with_attack_speed",
+ "quality_display_supercharged_slam_is_gem",
+ "display_statset_hide_usage_stats",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["MetaCastLightningSpellOnHitPlayer"] = {
+ name = "Thundergod's Wrath",
+ baseTypeName = "Thundergod's Wrath",
+ color = 1,
+ description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Lightning spells on reaching maximum Energy.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "energy_generated_+%", 0.75 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Thundergod's Wrath",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "cast_lightning_spell_on_hit",
+ baseFlags = {
+ },
+ constantStats = {
+ { "cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 },
+ { "skill_desired_amount_override", 1 },
+ },
+ stats = {
+ "energy_generated_+%",
+ "generic_ongoing_trigger_triggers_at_maximum_energy",
+ "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["SupportMetaCastLightningSpellOnHitPlayer"] = {
+ name = "SupportMetaCastLightningSpellOnHitPlayer",
+ hidden = true,
+ support = true,
+ requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.Lightning, SkillType.AND, SkillType.AND, },
+ addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
+ excludeSkillTypes = { SkillType.SupportedByHourglass, },
+ isTrigger = true,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "SupportMetaCastLightningSpellOnHitPlayer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_gem_stat_descriptions",
+ baseFlags = {
},
constantStats = {
- { "active_skill_base_area_of_effect_radius", 16 },
- { "channelled_slam_damage_+%_final_per_stage", 60 },
- { "channelled_slam_max_stages", 3 },
- { "skill_animation_duration_multiplier_override", 3 },
- { "channel_skill_end_animation_duration_override_ms", 1000 },
- { "base_minimum_channel_time_ms", 1000 },
- { "active_skill_base_area_of_effect_radius", 12 },
- { "aftershock_radius_+_per_previous_aftershock", 4 },
- { "aftershock_delay_ms", 250 },
+ { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
},
stats = {
- "is_area_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "channel_start_lock_cancelling_scales_with_attack_speed",
- "quality_display_supercharged_slam_is_gem",
- "display_statset_hide_usage_stats",
+ "damage_+%",
+ "triggered_by_generic_ongoing_trigger",
+ "generic_ongoing_trigger_triggers_at_maximum_energy",
+ "no_cost",
},
levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 30, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 40, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 70, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 80, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 90, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 100, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 110, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 120, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 130, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 140, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 150, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 160, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 170, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 180, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 190, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 200, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 210, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 220, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 230, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 240, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 250, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 260, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 270, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 280, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 290, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 300, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 310, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 320, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 330, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 340, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 350, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 360, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 370, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 380, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 390, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 400, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -12661,6 +14506,9 @@ skills["TimeOfNeedPlayer"] = {
"skill_time_of_need_gain_x_life",
"base_deal_no_damage",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 12000, 17, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 11900, 26, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
@@ -12706,11 +14554,201 @@ skills["TimeOfNeedPlayer"] = {
},
}
}
+skills["ValakosChargePlayer"] = {
+ name = "Valako's Charge",
+ baseTypeName = "Valako's Charge",
+ color = 1,
+ description = "While active, taking Lightning damage builds up charge on you. Reaching full charge expends all charge to Trigger this skill, creating a Chaining lightning bolt that arcs to nearby enemies.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, [SkillType.NoAttackOrCastTime] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "number_of_chains", 0.1 },
+ },
+ levels = {
+ [1] = { critChance = 9, storedUses = 1, levelRequirement = 0, cooldown = 1, },
+ [2] = { critChance = 9, storedUses = 1, levelRequirement = 3, cooldown = 1, },
+ [3] = { critChance = 9, storedUses = 1, levelRequirement = 6, cooldown = 1, },
+ [4] = { critChance = 9, storedUses = 1, levelRequirement = 10, cooldown = 1, },
+ [5] = { critChance = 9, storedUses = 1, levelRequirement = 14, cooldown = 1, },
+ [6] = { critChance = 9, storedUses = 1, levelRequirement = 18, cooldown = 1, },
+ [7] = { critChance = 9, storedUses = 1, levelRequirement = 22, cooldown = 1, },
+ [8] = { critChance = 9, storedUses = 1, levelRequirement = 26, cooldown = 1, },
+ [9] = { critChance = 9, storedUses = 1, levelRequirement = 31, cooldown = 1, },
+ [10] = { critChance = 9, storedUses = 1, levelRequirement = 36, cooldown = 1, },
+ [11] = { critChance = 9, storedUses = 1, levelRequirement = 41, cooldown = 1, },
+ [12] = { critChance = 9, storedUses = 1, levelRequirement = 46, cooldown = 1, },
+ [13] = { critChance = 9, storedUses = 1, levelRequirement = 52, cooldown = 1, },
+ [14] = { critChance = 9, storedUses = 1, levelRequirement = 58, cooldown = 1, },
+ [15] = { critChance = 9, storedUses = 1, levelRequirement = 64, cooldown = 1, },
+ [16] = { critChance = 9, storedUses = 1, levelRequirement = 66, cooldown = 1, },
+ [17] = { critChance = 9, storedUses = 1, levelRequirement = 72, cooldown = 1, },
+ [18] = { critChance = 9, storedUses = 1, levelRequirement = 78, cooldown = 1, },
+ [19] = { critChance = 9, storedUses = 1, levelRequirement = 84, cooldown = 1, },
+ [20] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [21] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [22] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [23] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [24] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [25] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [26] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [27] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [28] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [29] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [30] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [31] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [32] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [33] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [34] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [35] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [36] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [37] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [38] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [39] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ [40] = { critChance = 9, storedUses = 1, levelRequirement = 90, cooldown = 1, },
+ },
+ statSets = {
+ [1] = {
+ label = "Buff",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "valakos_luck",
+ baseFlags = {
+ area = true,
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 30 },
+ { "cast_on_damage_taken_%", 100 },
+ },
+ stats = {
+ "cast_on_damage_taken_threshold",
+ "cast_on_damage_taken_only_tracks_lightning",
+ "should_have_cast_when_damage_taken_charge_buff",
+ },
+ notMinionStat = {
+ "cast_on_damage_taken_threshold",
+ },
+ levels = {
+ [1] = { 17, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 26, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 37, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 49, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 63, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 79, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 97, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 117, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 140, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 166, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 194, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 226, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 262, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 301, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 344, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 392, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 443, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 500, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 561, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 628, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 701, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 777, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 857, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 940, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1027, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 1118, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1212, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1310, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1411, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1516, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1625, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1737, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1853, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1972, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 2095, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 2222, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2351, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2485, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2622, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2763, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Bolt",
+ baseEffectiveness = 4.4000000953674,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "valakos_luck",
+ baseFlags = {
+ spell = true,
+ chaining = true,
+ },
+ constantStats = {
+ { "arc_chain_distance", 40 },
+ { "electrocute_threshold_+%_final", 100 },
+ },
+ stats = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "cast_on_damage_taken_threshold",
+ "number_of_chains",
+ "disable_visual_hit_effect",
+ "can_perform_skill_while_moving",
+ "should_use_additive_aiming_animation",
+ "base_lightning_damage_can_electrocute",
+ "never_shock",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ "cast_on_damage_taken_threshold",
+ },
+ levels = {
+ [1] = { 2, 32, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 44, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 3, 60, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4, 77, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 5, 98, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6, 120, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 8, 146, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 9, 174, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 11, 206, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 13, 242, 0, 2, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 15, 283, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 17, 328, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 20, 379, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 23, 437, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 26, 501, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 30, 574, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 35, 656, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 39, 749, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 45, 853, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 51, 971, 0, 3, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 58, 1104, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 66, 1255, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 75, 1426, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 85, 1619, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 97, 1839, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 110, 2088, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 125, 2371, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 142, 2694, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 161, 3061, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 183, 3479, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 208, 3957, 0, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 237, 4503, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 270, 5128, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 308, 5843, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 351, 6662, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 400, 7603, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 457, 8684, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 523, 9928, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 598, 11360, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 685, 13012, 0, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["VolcanicFissurePlayer"] = {
name = "Volcanic Fissure",
baseTypeName = "Volcanic Fissure",
color = 1,
- description = "Slam the ground, creating a winding fissure that deals damage as it travels and remains for a duration. Using a different Slam on a fissure will cause an Aftershock, which spreads to all connected fissures.",
+ description = "Slam the ground, creating a branching Molten Fissure that deals damage as it travels and remains for a duration. Using a different Slam on a Molten Fissure creates a spreading Aftershock.",
skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, },
weaponTypes = {
["One Handed Mace"] = true,
@@ -12718,49 +14756,49 @@ skills["VolcanicFissurePlayer"] = {
},
castTime = 1,
qualityStats = {
- { "base_skill_effect_duration", 200 },
+ { "slam_aftershock_chance_%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 6, }, },
- [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.49, levelRequirement = 3, cost = { Mana = 7, }, },
- [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.54, levelRequirement = 6, cost = { Mana = 7, }, },
- [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 10, cost = { Mana = 8, }, },
- [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.64, levelRequirement = 14, cost = { Mana = 9, }, },
- [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.7, levelRequirement = 18, cost = { Mana = 10, }, },
- [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.75, levelRequirement = 22, cost = { Mana = 11, }, },
- [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.8, levelRequirement = 26, cost = { Mana = 13, }, },
- [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.84, levelRequirement = 31, cost = { Mana = 14, }, },
- [10] = { attackSpeedMultiplier = -20, baseMultiplier = 0.89, levelRequirement = 36, cost = { Mana = 16, }, },
- [11] = { attackSpeedMultiplier = -20, baseMultiplier = 0.94, levelRequirement = 41, cost = { Mana = 17, }, },
- [12] = { attackSpeedMultiplier = -20, levelRequirement = 46, cost = { Mana = 19, }, },
- [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.06, levelRequirement = 52, cost = { Mana = 21, }, },
- [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.12, levelRequirement = 58, cost = { Mana = 24, }, },
- [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.19, levelRequirement = 64, cost = { Mana = 26, }, },
- [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 66, cost = { Mana = 29, }, },
- [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 33, }, },
- [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.43, levelRequirement = 78, cost = { Mana = 36, }, },
- [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.53, levelRequirement = 84, cost = { Mana = 40, }, },
- [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.63, levelRequirement = 90, cost = { Mana = 44, }, },
- [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.74, levelRequirement = 90, cost = { Mana = 49, }, },
- [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 55, }, },
- [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.98, levelRequirement = 90, cost = { Mana = 61, }, },
- [24] = { attackSpeedMultiplier = -20, baseMultiplier = 2.11, levelRequirement = 90, cost = { Mana = 67, }, },
- [25] = { attackSpeedMultiplier = -20, baseMultiplier = 2.25, levelRequirement = 90, cost = { Mana = 75, }, },
- [26] = { attackSpeedMultiplier = -20, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 83, }, },
- [27] = { attackSpeedMultiplier = -20, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 92, }, },
- [28] = { attackSpeedMultiplier = -20, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 102, }, },
- [29] = { attackSpeedMultiplier = -20, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 113, }, },
- [30] = { attackSpeedMultiplier = -20, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 125, }, },
- [31] = { attackSpeedMultiplier = -20, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 139, }, },
- [32] = { attackSpeedMultiplier = -20, baseMultiplier = 3.53, levelRequirement = 90, cost = { Mana = 154, }, },
- [33] = { attackSpeedMultiplier = -20, baseMultiplier = 3.77, levelRequirement = 90, cost = { Mana = 170, }, },
- [34] = { attackSpeedMultiplier = -20, baseMultiplier = 4.02, levelRequirement = 90, cost = { Mana = 189, }, },
- [35] = { attackSpeedMultiplier = -20, baseMultiplier = 4.29, levelRequirement = 90, cost = { Mana = 209, }, },
- [36] = { attackSpeedMultiplier = -20, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 232, }, },
- [37] = { attackSpeedMultiplier = -20, baseMultiplier = 4.88, levelRequirement = 90, cost = { Mana = 257, }, },
- [38] = { attackSpeedMultiplier = -20, baseMultiplier = 5.2, levelRequirement = 90, cost = { Mana = 285, }, },
- [39] = { attackSpeedMultiplier = -20, baseMultiplier = 5.55, levelRequirement = 90, cost = { Mana = 316, }, },
- [40] = { attackSpeedMultiplier = -20, baseMultiplier = 5.92, levelRequirement = 90, cost = { Mana = 350, }, },
+ [1] = { attackSpeedMultiplier = -20, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 6, }, },
+ [2] = { attackSpeedMultiplier = -20, baseMultiplier = 0.6, levelRequirement = 3, cost = { Mana = 7, }, },
+ [3] = { attackSpeedMultiplier = -20, baseMultiplier = 0.66, levelRequirement = 6, cost = { Mana = 8, }, },
+ [4] = { attackSpeedMultiplier = -20, baseMultiplier = 0.72, levelRequirement = 10, cost = { Mana = 9, }, },
+ [5] = { attackSpeedMultiplier = -20, baseMultiplier = 0.77, levelRequirement = 14, cost = { Mana = 10, }, },
+ [6] = { attackSpeedMultiplier = -20, baseMultiplier = 0.83, levelRequirement = 18, cost = { Mana = 11, }, },
+ [7] = { attackSpeedMultiplier = -20, baseMultiplier = 0.88, levelRequirement = 22, cost = { Mana = 13, }, },
+ [8] = { attackSpeedMultiplier = -20, baseMultiplier = 0.93, levelRequirement = 26, cost = { Mana = 14, }, },
+ [9] = { attackSpeedMultiplier = -20, baseMultiplier = 0.97, levelRequirement = 31, cost = { Mana = 16, }, },
+ [10] = { attackSpeedMultiplier = -20, baseMultiplier = 1.01, levelRequirement = 36, cost = { Mana = 17, }, },
+ [11] = { attackSpeedMultiplier = -20, baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 19, }, },
+ [12] = { attackSpeedMultiplier = -20, baseMultiplier = 1.09, levelRequirement = 46, cost = { Mana = 21, }, },
+ [13] = { attackSpeedMultiplier = -20, baseMultiplier = 1.13, levelRequirement = 52, cost = { Mana = 23, }, },
+ [14] = { attackSpeedMultiplier = -20, baseMultiplier = 1.18, levelRequirement = 58, cost = { Mana = 25, }, },
+ [15] = { attackSpeedMultiplier = -20, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 28, }, },
+ [16] = { attackSpeedMultiplier = -20, baseMultiplier = 1.27, levelRequirement = 66, cost = { Mana = 30, }, },
+ [17] = { attackSpeedMultiplier = -20, baseMultiplier = 1.31, levelRequirement = 72, cost = { Mana = 33, }, },
+ [18] = { attackSpeedMultiplier = -20, baseMultiplier = 1.36, levelRequirement = 78, cost = { Mana = 35, }, },
+ [19] = { attackSpeedMultiplier = -20, baseMultiplier = 1.4, levelRequirement = 84, cost = { Mana = 38, }, },
+ [20] = { attackSpeedMultiplier = -20, baseMultiplier = 1.45, levelRequirement = 90, cost = { Mana = 41, }, },
+ [21] = { attackSpeedMultiplier = -20, baseMultiplier = 1.5, levelRequirement = 90, cost = { Mana = 45, }, },
+ [22] = { attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 90, cost = { Mana = 48, }, },
+ [23] = { attackSpeedMultiplier = -20, baseMultiplier = 1.6, levelRequirement = 90, cost = { Mana = 52, }, },
+ [24] = { attackSpeedMultiplier = -20, baseMultiplier = 1.65, levelRequirement = 90, cost = { Mana = 56, }, },
+ [25] = { attackSpeedMultiplier = -20, baseMultiplier = 1.71, levelRequirement = 90, cost = { Mana = 60, }, },
+ [26] = { attackSpeedMultiplier = -20, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 65, }, },
+ [27] = { attackSpeedMultiplier = -20, baseMultiplier = 1.82, levelRequirement = 90, cost = { Mana = 69, }, },
+ [28] = { attackSpeedMultiplier = -20, baseMultiplier = 1.88, levelRequirement = 90, cost = { Mana = 74, }, },
+ [29] = { attackSpeedMultiplier = -20, baseMultiplier = 1.95, levelRequirement = 90, cost = { Mana = 80, }, },
+ [30] = { attackSpeedMultiplier = -20, baseMultiplier = 2.01, levelRequirement = 90, cost = { Mana = 85, }, },
+ [31] = { attackSpeedMultiplier = -20, baseMultiplier = 2.08, levelRequirement = 90, cost = { Mana = 91, }, },
+ [32] = { attackSpeedMultiplier = -20, baseMultiplier = 2.15, levelRequirement = 90, cost = { Mana = 98, }, },
+ [33] = { attackSpeedMultiplier = -20, baseMultiplier = 2.22, levelRequirement = 90, cost = { Mana = 104, }, },
+ [34] = { attackSpeedMultiplier = -20, baseMultiplier = 2.29, levelRequirement = 90, cost = { Mana = 111, }, },
+ [35] = { attackSpeedMultiplier = -20, baseMultiplier = 2.37, levelRequirement = 90, cost = { Mana = 119, }, },
+ [36] = { attackSpeedMultiplier = -20, baseMultiplier = 2.44, levelRequirement = 90, cost = { Mana = 127, }, },
+ [37] = { attackSpeedMultiplier = -20, baseMultiplier = 2.53, levelRequirement = 90, cost = { Mana = 135, }, },
+ [38] = { attackSpeedMultiplier = -20, baseMultiplier = 2.61, levelRequirement = 90, cost = { Mana = 144, }, },
+ [39] = { attackSpeedMultiplier = -20, baseMultiplier = 2.7, levelRequirement = 90, cost = { Mana = 153, }, },
+ [40] = { attackSpeedMultiplier = -20, baseMultiplier = 2.79, levelRequirement = 90, cost = { Mana = 163, }, },
},
statSets = {
[1] = {
@@ -12775,10 +14813,11 @@ skills["VolcanicFissurePlayer"] = {
},
constantStats = {
{ "base_skill_effect_duration", 12000 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 60 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 },
{ "melee_conditional_step_distance", 8 },
{ "active_skill_attack_speed_+%_final_while_dual_wielding", -30 },
{ "volcanic_fissure_base_maximum_number_of_fissures", 8 },
+ { "number_of_branching_fissures", 2 },
},
stats = {
"is_area_damage",
@@ -12833,8 +14872,8 @@ skills["ShockGrenadePlayer"] = {
name = "Voltaic Grenade",
baseTypeName = "Voltaic Grenade",
color = 1,
- description = "Fire a bouncing Grenade that discharges an Electrocuting Lightning blast when its fuse expires.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ description = "Fire a bouncing Grenade that discharges an Electrocuting Lightning blast when its fuse expires, causing all Lightning Hits against enemies to contribute to Electrocution buildup for a duration.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Duration] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -12843,46 +14882,46 @@ skills["ShockGrenadePlayer"] = {
{ "base_cooldown_speed_+%", 1 },
},
levels = {
- [1] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.75, cooldown = 5, levelRequirement = 0, cost = { Mana = 11, }, },
- [2] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.93, cooldown = 5, levelRequirement = 3, cost = { Mana = 12, }, },
- [3] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.13, cooldown = 5, levelRequirement = 6, cost = { Mana = 13, }, },
- [4] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.34, cooldown = 5, levelRequirement = 10, cost = { Mana = 15, }, },
- [5] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.54, cooldown = 5, levelRequirement = 14, cost = { Mana = 16, }, },
- [6] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.75, cooldown = 5, levelRequirement = 18, cost = { Mana = 18, }, },
- [7] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.97, cooldown = 5, levelRequirement = 22, cost = { Mana = 20, }, },
- [8] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.18, cooldown = 5, levelRequirement = 26, cost = { Mana = 23, }, },
- [9] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.38, cooldown = 5, levelRequirement = 31, cost = { Mana = 25, }, },
- [10] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.59, cooldown = 5, levelRequirement = 36, cost = { Mana = 28, }, },
- [11] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.83, cooldown = 5, levelRequirement = 41, cost = { Mana = 31, }, },
- [12] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 46, cost = { Mana = 34, }, },
- [13] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.36, cooldown = 5, levelRequirement = 52, cost = { Mana = 38, }, },
- [14] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.66, cooldown = 5, levelRequirement = 58, cost = { Mana = 42, }, },
- [15] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.99, cooldown = 5, levelRequirement = 64, cost = { Mana = 47, }, },
- [16] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.35, cooldown = 5, levelRequirement = 66, cost = { Mana = 52, }, },
- [17] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.74, cooldown = 5, levelRequirement = 72, cost = { Mana = 58, }, },
- [18] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.16, cooldown = 5, levelRequirement = 78, cost = { Mana = 64, }, },
- [19] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.63, cooldown = 5, levelRequirement = 84, cost = { Mana = 71, }, },
- [20] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.14, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, },
- [21] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.7, cooldown = 5, levelRequirement = 90, cost = { Mana = 87, }, },
- [22] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.29, cooldown = 5, levelRequirement = 90, cost = { Mana = 97, }, },
- [23] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.93, cooldown = 5, levelRequirement = 90, cost = { Mana = 107, }, },
- [24] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.62, cooldown = 5, levelRequirement = 90, cost = { Mana = 119, }, },
- [25] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 10.37, cooldown = 5, levelRequirement = 90, cost = { Mana = 132, }, },
- [26] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 11.17, cooldown = 5, levelRequirement = 90, cost = { Mana = 146, }, },
- [27] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.03, cooldown = 5, levelRequirement = 90, cost = { Mana = 162, }, },
- [28] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 179, }, },
- [29] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 13.96, cooldown = 5, levelRequirement = 90, cost = { Mana = 199, }, },
- [30] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 15.04, cooldown = 5, levelRequirement = 90, cost = { Mana = 220, }, },
- [31] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 16.21, cooldown = 5, levelRequirement = 90, cost = { Mana = 244, }, },
- [32] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 17.46, cooldown = 5, levelRequirement = 90, cost = { Mana = 271, }, },
- [33] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 18.81, cooldown = 5, levelRequirement = 90, cost = { Mana = 300, }, },
- [34] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 20.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 332, }, },
- [35] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 21.83, cooldown = 5, levelRequirement = 90, cost = { Mana = 368, }, },
- [36] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 23.51, cooldown = 5, levelRequirement = 90, cost = { Mana = 408, }, },
- [37] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 25.33, cooldown = 5, levelRequirement = 90, cost = { Mana = 452, }, },
- [38] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 27.29, cooldown = 5, levelRequirement = 90, cost = { Mana = 501, }, },
- [39] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 29.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 556, }, },
- [40] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 31.67, cooldown = 5, levelRequirement = 90, cost = { Mana = 616, }, },
+ [1] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.8, cooldown = 5, levelRequirement = 0, cost = { Mana = 10, }, },
+ [2] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.88, cooldown = 5, levelRequirement = 3, cost = { Mana = 12, }, },
+ [3] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 0.97, cooldown = 5, levelRequirement = 6, cost = { Mana = 14, }, },
+ [4] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.07, cooldown = 5, levelRequirement = 10, cost = { Mana = 16, }, },
+ [5] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.16, cooldown = 5, levelRequirement = 14, cost = { Mana = 18, }, },
+ [6] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.26, cooldown = 5, levelRequirement = 18, cost = { Mana = 20, }, },
+ [7] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.36, cooldown = 5, levelRequirement = 22, cost = { Mana = 23, }, },
+ [8] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.45, cooldown = 5, levelRequirement = 26, cost = { Mana = 25, }, },
+ [9] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.54, cooldown = 5, levelRequirement = 31, cost = { Mana = 28, }, },
+ [10] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.64, cooldown = 5, levelRequirement = 36, cost = { Mana = 31, }, },
+ [11] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.75, cooldown = 5, levelRequirement = 41, cost = { Mana = 34, }, },
+ [12] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.87, cooldown = 5, levelRequirement = 46, cost = { Mana = 37, }, },
+ [13] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 1.99, cooldown = 5, levelRequirement = 52, cost = { Mana = 41, }, },
+ [14] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.13, cooldown = 5, levelRequirement = 58, cost = { Mana = 45, }, },
+ [15] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.28, cooldown = 5, levelRequirement = 64, cost = { Mana = 49, }, },
+ [16] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.44, cooldown = 5, levelRequirement = 66, cost = { Mana = 53, }, },
+ [17] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.62, cooldown = 5, levelRequirement = 72, cost = { Mana = 58, }, },
+ [18] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 2.82, cooldown = 5, levelRequirement = 78, cost = { Mana = 63, }, },
+ [19] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.03, cooldown = 5, levelRequirement = 84, cost = { Mana = 68, }, },
+ [20] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.27, cooldown = 5, levelRequirement = 90, cost = { Mana = 73, }, },
+ [21] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.52, cooldown = 5, levelRequirement = 90, cost = { Mana = 79, }, },
+ [22] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 3.79, cooldown = 5, levelRequirement = 90, cost = { Mana = 85, }, },
+ [23] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.08, cooldown = 5, levelRequirement = 90, cost = { Mana = 92, }, },
+ [24] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.4, cooldown = 5, levelRequirement = 90, cost = { Mana = 99, }, },
+ [25] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 4.74, cooldown = 5, levelRequirement = 90, cost = { Mana = 106, }, },
+ [26] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.11, cooldown = 5, levelRequirement = 90, cost = { Mana = 114, }, },
+ [27] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.5, cooldown = 5, levelRequirement = 90, cost = { Mana = 122, }, },
+ [28] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 5.93, cooldown = 5, levelRequirement = 90, cost = { Mana = 131, }, },
+ [29] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.38, cooldown = 5, levelRequirement = 90, cost = { Mana = 140, }, },
+ [30] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 6.88, cooldown = 5, levelRequirement = 90, cost = { Mana = 150, }, },
+ [31] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.41, cooldown = 5, levelRequirement = 90, cost = { Mana = 161, }, },
+ [32] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 7.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 172, }, },
+ [33] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 8.6, cooldown = 5, levelRequirement = 90, cost = { Mana = 184, }, },
+ [34] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.26, cooldown = 5, levelRequirement = 90, cost = { Mana = 196, }, },
+ [35] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 9.98, cooldown = 5, levelRequirement = 90, cost = { Mana = 209, }, },
+ [36] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 10.75, cooldown = 5, levelRequirement = 90, cost = { Mana = 223, }, },
+ [37] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 11.58, cooldown = 5, levelRequirement = 90, cost = { Mana = 238, }, },
+ [38] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 12.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 253, }, },
+ [39] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 13.44, cooldown = 5, levelRequirement = 90, cost = { Mana = 270, }, },
+ [40] = { attackSpeedMultiplier = -25, storedUses = 2, baseMultiplier = 14.48, cooldown = 5, levelRequirement = 90, cost = { Mana = 287, }, },
},
statSets = {
[1] = {
@@ -12901,13 +14940,14 @@ skills["ShockGrenadePlayer"] = {
{ "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "fixed_projectile_spread", 30 },
- { "active_skill_electrocutes_as_though_dealt_damage_+%_final", 50 },
{ "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 },
+ { "base_secondary_skill_effect_duration", 6000 },
},
stats = {
"active_skill_base_area_of_effect_radius",
+ "active_skill_electrocutes_as_though_dealt_damage_+%_final",
"base_is_projectile",
"projectile_ballistic_angle_from_reference_event",
"projectile_uses_contact_position",
@@ -12921,46 +14961,46 @@ skills["ShockGrenadePlayer"] = {
"projectiles_cannot_fork",
},
levels = {
- [1] = { 20, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 20, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 21, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 21, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 21, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 22, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 22, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 22, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 23, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 23, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 23, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 23, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 24, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 24, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 24, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 24, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 24, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 25, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 25, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 25, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 25, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 25, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 26, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 26, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 26, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 26, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 26, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 26, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 27, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 27, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 27, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 27, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 27, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 27, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 27, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 20, 150, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 20, 160, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 20, 170, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 21, 180, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 21, 190, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 21, 200, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 21, 210, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 21, 220, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 22, 230, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 22, 240, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 22, 250, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 22, 260, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 23, 270, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 23, 280, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 23, 290, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 23, 300, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 23, 310, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 24, 320, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 24, 330, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 24, 340, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 24, 350, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 24, 360, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 25, 370, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 25, 380, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 25, 390, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 25, 400, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 25, 410, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 26, 420, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 26, 430, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 26, 440, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 26, 445, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 26, 450, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 26, 455, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 27, 460, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 27, 465, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 27, 470, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 27, 475, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 27, 480, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 27, 485, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 27, 490, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -12969,8 +15009,8 @@ skills["WarBannerReservationPlayer"] = {
name = "War Banner",
baseTypeName = "War Banner",
color = 1,
- description = "While active, killing enemies with Attacks or standing near a Unique enemy generates Valour. Using this Skill consumes its Valour to place an inspiring Banner with an Aura that grants you and nearby Allies Attack damage and Accuracy while the Banner lasts. The Banner cannot gain Valour while placed, and you cannot place a Banner while you already have a Banner placed.",
- skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, },
+ description = "While active, Attacking enemies builds Glory. When you have maximum Glory, you can place an inspiring Banner for a duration with an Aura that grants you and nearby Allies Attack damage, Attack speed and Accuracy.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Banner] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -13016,14 +15056,68 @@ skills["WarBannerReservationPlayer"] = {
[39] = { spiritReservationFlat = 30, levelRequirement = 90, },
[40] = { spiritReservationFlat = 30, levelRequirement = 90, },
},
+ statSets = {
+ [1] = {
+ label = "War Banner",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ },
+ stats = {
+ "base_deal_no_damage",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
}
skills["WarBannerPlayer"] = {
name = "War Banner",
hidden = true,
- skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, },
- castTime = 1,
+ skillTypes = { [SkillType.Banner] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.NoAttackInPlace] = true, [SkillType.HasUsageCondition] = true, },
+ castTime = 0.5,
qualityStats = {
- { "banner_aura_magnitude_+%_final_per_resource", 0.1 },
+ { "base_reservation_efficiency_+%", 0.5 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -13085,60 +15179,65 @@ skills["WarBannerPlayer"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 45 },
- { "banner_aura_magnitude_+%_final_per_resource", 10 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "active_skill_requires_X_glory", 200 },
+ { "active_skill_generates_mp_%_glory_per_attack_hit", 100 },
},
stats = {
"base_skill_effect_duration",
"base_skill_buff_attack_damage_+%_final_to_apply",
"base_skill_buff_banner_accuracy_+%_to_apply",
+ "base_skill_buff_banner_attack_speed_+%_to_apply",
"can_perform_skill_while_moving",
"base_deal_no_damage",
- "quality_display_banner_buff_effect_+%_final_per_resource_is_gem",
- },
- levels = {
- [1] = { 6000, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 6050, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6100, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 6150, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6200, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 6250, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6300, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 6350, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6400, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 6450, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 6500, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 6550, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 6600, 5, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 6650, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 6700, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 6750, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 6800, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 6850, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 6900, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 6950, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 7000, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 7050, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 7100, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 7150, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 7200, 6, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 7250, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 7300, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 7350, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 7400, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 7450, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 7500, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 7550, 7, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 7600, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 7650, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 7700, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 7750, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 7800, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 7850, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 7900, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 7950, 8, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
+ "active_skill_can_generate_glory_even_if_an_instance_of_this_skill_is_active",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 6000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 7000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 7200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 7600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 7800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 8000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 8200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 8400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 8600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 8800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 9000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 9200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 9400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 9600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 9800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 10000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 10200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 10400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 10600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 10800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 11000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 11200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 11400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 11600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 11800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 11900, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 12000, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 12100, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 12200, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 12300, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 12400, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 12500, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 12600, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 12700, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 12800, 25, 50, 25, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua
index f8c7940d30..facaa3f399 100644
--- a/src/Data/Skills/minion.lua
+++ b/src/Data/Skills/minion.lua
@@ -144,12 +144,12 @@ skills["GasShotSkeletonSniperMinion"] = {
name = "Gas Arrow",
hidden = true,
description = "Rain an arrow down from above, creating a cloud of flammable poisonous gas where it lands. The cloud will detonate if hit by a Detonator skill or if an Ignited enemy touches it, creating a fiery explosion.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Rain] = true, [SkillType.DamageOverTime] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Rain] = true, [SkillType.DamageOverTime] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
levels = {
- [1] = { attackSpeedMultiplier = 20, storedUses = 1, baseMultiplier = 0.7, cooldown = 8, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = 20, storedUses = 1, baseMultiplier = 0.8, cooldown = 6, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -257,7 +257,7 @@ skills["BoneshatterBruteMinion"] = {
qualityStats = {
},
levels = {
- [1] = { attackSpeedMultiplier = 20, storedUses = 1, baseMultiplier = 1.2, cooldown = 4, levelRequirement = 0, },
+ [1] = { attackSpeedMultiplier = 20, storedUses = 1, baseMultiplier = 1.8, cooldown = 4, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -297,7 +297,7 @@ skills["BoneshatterBruteMinion"] = {
"is_area_damage",
},
levels = {
- [1] = { baseMultiplier = 2.4, actorLevel = 1, },
+ [1] = { baseMultiplier = 4.8, actorLevel = 1, },
},
},
}
@@ -306,7 +306,7 @@ skills["ArcSkeletonMageMinion"] = {
name = "Arc",
hidden = true,
description = "An arc of Lightning stretches from the caster to a targeted enemy and Chains on to other nearby enemies. Shocked enemies Hit release damaging pulses.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.25,
qualityStats = {
},
@@ -319,7 +319,7 @@ skills["ArcSkeletonMageMinion"] = {
baseEffectiveness = 1.2000000476837,
incrementalEffectiveness = 0.25,
damageIncrementalEffectiveness = 0.037999998778105,
- statDescriptionScope = "arc",
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
spell = true,
chaining = true,
@@ -334,11 +334,15 @@ skills["ArcSkeletonMageMinion"] = {
"number_of_chains",
"disable_visual_hit_effect",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.10000000149012, 1.8999999761581, 2, statInterpolation = { 3, 3, 1, }, actorLevel = 1, },
- [2] = { 0.10000000149012, 1.8999999761581, 3, statInterpolation = { 3, 3, 1, }, actorLevel = 20, },
- [3] = { 0.10000000149012, 1.8999999761581, 4, statInterpolation = { 3, 3, 1, }, actorLevel = 40, },
- [4] = { 0.10000000149012, 1.8999999761581, 5, statInterpolation = { 3, 3, 1, }, actorLevel = 60, },
+ [2] = { 0.10000000149012, 1.8999999761581, 2, statInterpolation = { 3, 3, 1, }, actorLevel = 20, },
+ [3] = { 0.10000000149012, 1.8999999761581, 2, statInterpolation = { 3, 3, 1, }, actorLevel = 40, },
+ [4] = { 0.10000000149012, 1.8999999761581, 2, statInterpolation = { 3, 3, 1, }, actorLevel = 60, },
},
},
}
@@ -347,7 +351,7 @@ skills["DeathStormSkeletonStormMageMinion"] = {
name = "Death Storm",
hidden = true,
description = "Lightning bolts strike all fallen Skeletons in the area, creating Shocked Ground around them.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.CreatesGroundEffect] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 2,
qualityStats = {
},
@@ -357,7 +361,7 @@ skills["DeathStormSkeletonStormMageMinion"] = {
statSets = {
[1] = {
label = "Death Storm",
- baseEffectiveness = 7.5,
+ baseEffectiveness = 9,
incrementalEffectiveness = 0.25,
damageIncrementalEffectiveness = 0.041499998420477,
statDescriptionScope = "death_storm",
@@ -368,8 +372,8 @@ skills["DeathStormSkeletonStormMageMinion"] = {
},
constantStats = {
{ "ground_lightning_art_variation", 1003 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_secondary_area_of_effect_radius", 18 },
+ { "active_skill_base_area_of_effect_radius", 20 },
+ { "active_skill_base_secondary_area_of_effect_radius", 20 },
{ "base_skill_effect_duration", 6000 },
},
stats = {
@@ -381,6 +385,10 @@ skills["DeathStormSkeletonStormMageMinion"] = {
"skill_cannot_be_knocked_back",
"skill_cannot_be_stunned",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.30000001192093, 1.7000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -390,7 +398,7 @@ skills["DeathStormSkeletonStormMageMinion"] = {
skills["FrostBoltSkeletonMageMinion"] = {
name = "Ice Shard",
hidden = true,
- skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, },
+ skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Unleashable] = true, [SkillType.Area] = true, },
castTime = 1.25,
qualityStats = {
},
@@ -422,6 +430,10 @@ skills["FrostBoltSkeletonMageMinion"] = {
"check_for_targets_between_initiator_and_projectile_source",
"maintain_projectile_direction_when_using_contact_position",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -453,8 +465,12 @@ skills["FrostBoltSkeletonMageMinion"] = {
"is_area_damage",
"display_statset_hide_usage_stats",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
- [1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
+ [1] = { 0.80000001192093, 1.2000000476837, critChance = 23, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
},
}
@@ -494,6 +510,10 @@ skills["IceBombSkeletonMageMinion"] = {
"skill_cannot_be_knocked_back",
"skill_cannot_be_stunned",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -626,6 +646,9 @@ skills["FireBombSkeletonMinion"] = {
"is_area_damage",
"grenades_target_at_half_monster_height",
},
+ notMinionStat = {
+ "base_fire_damage_to_deal_per_minute",
+ },
levels = {
[1] = { 16.666667039196, statInterpolation = { 3, }, actorLevel = 1, },
},
@@ -636,60 +659,58 @@ skills["DestructiveLinkSkeletonBombadierMinion"] = {
name = "Explosive Demise",
baseTypeName = "Explosive Demise",
color = 2,
- description = "Detonate an allied Minion whose current Life is below a threshold, dealing heavy damage to nearby enemies.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, },
- castTime = 0.6,
+ description = "Detonate an allied Minion whose current Life is below a threshold, dealing heavy Attack damage to nearby enemies.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Cooldown] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 1,
qualityStats = {
{ "arsonist_destructive_link_%_of_life_as_fire_damage", 0.2 },
},
levels = {
- [1] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [2] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [3] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [4] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [5] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [6] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [7] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [8] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [9] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [10] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [11] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [12] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [13] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [14] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [15] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [16] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [17] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [18] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [19] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [20] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [21] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [22] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [23] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [24] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [25] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [26] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [27] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [28] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [29] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [30] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [31] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [32] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [33] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [34] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [35] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [36] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [37] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [38] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [39] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
- [40] = { critChance = 8, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [1] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [2] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [3] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [4] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [5] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [6] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [7] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [8] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [9] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [10] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [11] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [12] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [13] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [14] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [15] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [16] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [17] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [18] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [19] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [20] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [21] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [22] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [23] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [24] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [25] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [26] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [27] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [28] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [29] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [30] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [31] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [32] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [33] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [34] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [35] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [36] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [37] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [38] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [39] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [40] = { baseMultiplier = 3, storedUses = 1, levelRequirement = 0, cooldown = 3, },
},
statSets = {
[1] = {
label = "Explosive Demise",
- baseEffectiveness = 4,
- incrementalEffectiveness = 0.25,
- damageIncrementalEffectiveness = 0.041499998420477,
+ incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "bombadier_destructive_link",
baseFlags = {
area = true,
@@ -697,11 +718,10 @@ skills["DestructiveLinkSkeletonBombadierMinion"] = {
},
constantStats = {
{ "active_skill_base_area_of_effect_radius", 24 },
- { "arsonist_destructive_link_%_of_life_as_fire_damage", 12 },
+ { "arsonist_destructive_link_%_of_life_as_fire_damage", 8 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
},
stats = {
- "spell_minimum_base_fire_damage",
- "spell_maximum_base_fire_damage",
"command_minion_target_ally_below_x_life",
"is_commandable_skill",
"is_area_damage",
@@ -712,46 +732,46 @@ skills["DestructiveLinkSkeletonBombadierMinion"] = {
"quality_display_arsonist_is_gem",
},
levels = {
- [1] = { 12, 19, 27, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
- [2] = { 20, 30, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 3, },
- [3] = { 29, 44, 69, statInterpolation = { 1, 1, 1, }, actorLevel = 5, },
- [4] = { 40, 60, 94, statInterpolation = { 1, 1, 1, }, actorLevel = 7, },
- [5] = { 52, 77, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 9, },
- [6] = { 65, 98, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 11, },
- [7] = { 81, 122, 180, statInterpolation = { 1, 1, 1, }, actorLevel = 13, },
- [8] = { 99, 148, 214, statInterpolation = { 1, 1, 1, }, actorLevel = 15, },
- [9] = { 119, 179, 251, statInterpolation = { 1, 1, 1, }, actorLevel = 17, },
- [10] = { 142, 213, 291, statInterpolation = { 1, 1, 1, }, actorLevel = 19, },
- [11] = { 168, 252, 333, statInterpolation = { 1, 1, 1, }, actorLevel = 21, },
- [12] = { 198, 297, 380, statInterpolation = { 1, 1, 1, }, actorLevel = 23, },
- [13] = { 231, 346, 431, statInterpolation = { 1, 1, 1, }, actorLevel = 25, },
- [14] = { 268, 403, 484, statInterpolation = { 1, 1, 1, }, actorLevel = 27, },
- [15] = { 311, 466, 544, statInterpolation = { 1, 1, 1, }, actorLevel = 29, },
- [16] = { 358, 537, 608, statInterpolation = { 1, 1, 1, }, actorLevel = 31, },
- [17] = { 411, 617, 677, statInterpolation = { 1, 1, 1, }, actorLevel = 33, },
- [18] = { 471, 706, 750, statInterpolation = { 1, 1, 1, }, actorLevel = 35, },
- [19] = { 537, 806, 831, statInterpolation = { 1, 1, 1, }, actorLevel = 37, },
- [20] = { 612, 918, 917, statInterpolation = { 1, 1, 1, }, actorLevel = 39, },
- [21] = { 696, 1043, 1011, statInterpolation = { 1, 1, 1, }, actorLevel = 41, },
- [22] = { 789, 1183, 1110, statInterpolation = { 1, 1, 1, }, actorLevel = 43, },
- [23] = { 893, 1339, 1218, statInterpolation = { 1, 1, 1, }, actorLevel = 45, },
- [24] = { 1009, 1513, 1333, statInterpolation = { 1, 1, 1, }, actorLevel = 47, },
- [25] = { 1138, 1707, 1459, statInterpolation = { 1, 1, 1, }, actorLevel = 49, },
- [26] = { 1282, 1923, 1593, statInterpolation = { 1, 1, 1, }, actorLevel = 51, },
- [27] = { 1442, 2163, 1737, statInterpolation = { 1, 1, 1, }, actorLevel = 53, },
- [28] = { 1620, 2430, 1893, statInterpolation = { 1, 1, 1, }, actorLevel = 55, },
- [29] = { 1818, 2727, 2060, statInterpolation = { 1, 1, 1, }, actorLevel = 57, },
- [30] = { 2038, 3057, 2239, statInterpolation = { 1, 1, 1, }, actorLevel = 59, },
- [31] = { 2282, 3422, 2432, statInterpolation = { 1, 1, 1, }, actorLevel = 61, },
- [32] = { 2552, 3828, 2640, statInterpolation = { 1, 1, 1, }, actorLevel = 63, },
- [33] = { 2852, 4279, 2862, statInterpolation = { 1, 1, 1, }, actorLevel = 65, },
- [34] = { 3185, 4778, 3101, statInterpolation = { 1, 1, 1, }, actorLevel = 67, },
- [35] = { 3554, 5330, 3357, statInterpolation = { 1, 1, 1, }, actorLevel = 69, },
- [36] = { 3962, 5943, 3632, statInterpolation = { 1, 1, 1, }, actorLevel = 71, },
- [37] = { 4414, 6620, 3928, statInterpolation = { 1, 1, 1, }, actorLevel = 73, },
- [38] = { 4913, 7370, 4246, statInterpolation = { 1, 1, 1, }, actorLevel = 75, },
- [39] = { 5466, 8200, 4585, statInterpolation = { 1, 1, 1, }, actorLevel = 77, },
- [40] = { 6078, 9117, 4951, statInterpolation = { 1, 1, 1, }, actorLevel = 79, },
+ [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 52, statInterpolation = { 1, }, actorLevel = 3, },
+ [3] = { 77, statInterpolation = { 1, }, actorLevel = 5, },
+ [4] = { 105, statInterpolation = { 1, }, actorLevel = 7, },
+ [5] = { 134, statInterpolation = { 1, }, actorLevel = 9, },
+ [6] = { 168, statInterpolation = { 1, }, actorLevel = 11, },
+ [7] = { 203, statInterpolation = { 1, }, actorLevel = 13, },
+ [8] = { 243, statInterpolation = { 1, }, actorLevel = 15, },
+ [9] = { 286, statInterpolation = { 1, }, actorLevel = 17, },
+ [10] = { 333, statInterpolation = { 1, }, actorLevel = 19, },
+ [11] = { 383, statInterpolation = { 1, }, actorLevel = 21, },
+ [12] = { 439, statInterpolation = { 1, }, actorLevel = 23, },
+ [13] = { 500, statInterpolation = { 1, }, actorLevel = 25, },
+ [14] = { 564, statInterpolation = { 1, }, actorLevel = 27, },
+ [15] = { 636, statInterpolation = { 1, }, actorLevel = 29, },
+ [16] = { 714, statInterpolation = { 1, }, actorLevel = 31, },
+ [17] = { 799, statInterpolation = { 1, }, actorLevel = 33, },
+ [18] = { 889, statInterpolation = { 1, }, actorLevel = 35, },
+ [19] = { 989, statInterpolation = { 1, }, actorLevel = 37, },
+ [20] = { 1096, statInterpolation = { 1, }, actorLevel = 39, },
+ [21] = { 1213, statInterpolation = { 1, }, actorLevel = 41, },
+ [22] = { 1338, statInterpolation = { 1, }, actorLevel = 43, },
+ [23] = { 1474, statInterpolation = { 1, }, actorLevel = 45, },
+ [24] = { 1620, statInterpolation = { 1, }, actorLevel = 47, },
+ [25] = { 1780, statInterpolation = { 1, }, actorLevel = 49, },
+ [26] = { 1951, statInterpolation = { 1, }, actorLevel = 51, },
+ [27] = { 2137, statInterpolation = { 1, }, actorLevel = 53, },
+ [28] = { 2338, statInterpolation = { 1, }, actorLevel = 55, },
+ [29] = { 2554, statInterpolation = { 1, }, actorLevel = 57, },
+ [30] = { 2788, statInterpolation = { 1, }, actorLevel = 59, },
+ [31] = { 3040, statInterpolation = { 1, }, actorLevel = 61, },
+ [32] = { 3313, statInterpolation = { 1, }, actorLevel = 63, },
+ [33] = { 3606, statInterpolation = { 1, }, actorLevel = 65, },
+ [34] = { 3923, statInterpolation = { 1, }, actorLevel = 67, },
+ [35] = { 4263, statInterpolation = { 1, }, actorLevel = 69, },
+ [36] = { 4631, statInterpolation = { 1, }, actorLevel = 71, },
+ [37] = { 5028, statInterpolation = { 1, }, actorLevel = 73, },
+ [38] = { 5456, statInterpolation = { 1, }, actorLevel = 75, },
+ [39] = { 5915, statInterpolation = { 1, }, actorLevel = 77, },
+ [40] = { 6412, statInterpolation = { 1, }, actorLevel = 79, },
},
},
}
@@ -760,7 +780,7 @@ skills["EnrageSkeletonReaverMinion"] = {
name = "Enrage",
hidden = true,
description = "Enrage all Skeletal Reavers, causing them to lose life over time and gain Rage on hit. Skeletal Reavers do more Attack Damage and gain increased Attack speed based on their Rage.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -873,7 +893,7 @@ skills["MPSAncestralTotemSpiritSoulCasterProjectile"] = {
qualityStats = {
},
levels = {
- [1] = { levelRequirement = 0, },
+ [1] = { critChance = 6, levelRequirement = 0, },
},
statSets = {
[1] = {
@@ -886,7 +906,7 @@ skills["MPSAncestralTotemSpiritSoulCasterProjectile"] = {
},
constantStats = {
{ "monster_projectile_variation", 1389 },
- { "spell_maximum_action_distance_+%", -40 },
+ { "spell_maximum_action_distance_+%", -23 },
},
stats = {
"spell_minimum_base_cold_damage",
@@ -895,6 +915,10 @@ skills["MPSAncestralTotemSpiritSoulCasterProjectile"] = {
"projectile_uses_contact_position",
"use_scaled_contact_offset",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1024,4 +1048,194 @@ skills["GAAnimateWeaponQuarterstaffSweep"] = {
},
},
}
+}
+skills["RavenousSwarmAttack"] = {
+ name = "Attack",
+ hidden = true,
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Chaos] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "Attack",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ attack = true,
+ melee = true,
+ area = true,
+ },
+ stats = {
+ "global_poison_on_hit",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["LivingLightningZap"] = {
+ name = "Zap",
+ hidden = true,
+ description = "Teleport to a target, dealing Lightning Attack Damage.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Melee] = true, [SkillType.CannotTerrainChain] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { critChance = 9, storedUses = 1, levelRequirement = 0, cooldown = 0.25, },
+ },
+ statSets = {
+ [1] = {
+ label = "Zap",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "skill_stat_descriptions",
+ baseFlags = {
+ attack = true,
+ melee = true,
+ chaining = true,
+ },
+ constantStats = {
+ { "number_of_chains", 3 },
+ { "living_lightning_damage_+%_final_per_additional_hit", -30 },
+ },
+ stats = {
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ },
+ },
+ }
+}
+skills["DeathFromAboveDaemonMinion"] = {
+ name = "Death From Above",
+ hidden = true,
+ description = "Fires a flare at a target location, attaching to an enemy if it lands on one. Then fires a series of arrow volleys centred around the flare.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, },
+ castTime = 1,
+ qualityStats = {
+ },
+ levels = {
+ [1] = { baseMultiplier = 3.8, storedUses = 1, levelRequirement = 0, cooldown = 40, },
+ },
+ statSets = {
+ [1] = {
+ label = "Death From Above",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "death_from_above",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ area = true,
+ },
+ statMap = {
+ ["death_from_above_number_of_volleys"] = {
+ skill("dpsMultiplier", nil),
+ },
+ },
+ constantStats = {
+ { "death_from_above_volley_delay_ms", 2000 },
+ { "death_from_above_number_of_volleys", 4 },
+ { "explosion_delay_ms", 250 },
+ { "active_skill_base_area_of_effect_radius", 140 },
+ { "active_skill_base_secondary_area_of_effect_radius", 75 },
+ { "command_minion_marker_additional_time_ms", 300 },
+ },
+ stats = {
+ "is_commandable_skill",
+ "base_is_projectile",
+ "is_area_damage",
+ "skill_cannot_be_frozen",
+ "skill_cannot_be_electrocuted",
+ "skill_cannot_be_knocked_back",
+ "skill_cannot_be_stunned",
+ "modifiers_to_projectile_count_do_not_apply",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ },
+ },
+ }
}
\ No newline at end of file
diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua
index 72aeeb1aec..77829e6cfe 100644
--- a/src/Data/Skills/other.lua
+++ b/src/Data/Skills/other.lua
@@ -6,6 +6,229 @@
--
local skills, mod, flag, skill = ...
+skills["AcidicConcoctionPlayer"] = {
+ name = "Acidic Concoction",
+ baseTypeName = "Acidic Concoction",
+ fromTree = true,
+ color = 4,
+ description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area. The thrown flask Consumes Poison on Hit to cause an acidic burst.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, },
+ weaponTypes = {
+ ["None"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.2 },
+ },
+ levels = {
+ [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Flask",
+ baseEffectiveness = 2.2999999523163,
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "poisonous_concoction",
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ unarmed = true,
+ area = true,
+ },
+ constantStats = {
+ { "flask_throw_base_charges_used", 5 },
+ { "base_number_of_projectiles", 1 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "throw_flask_effects_type", 4 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "main_hand_base_weapon_attack_duration_ms", 714 },
+ },
+ stats = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ "base_is_projectile",
+ "projectile_behaviour_only_explode",
+ "can_perform_skill_while_moving",
+ "replace_main_hand_unarmed_attack_stats_with_nothing_type",
+ "is_area_damage",
+ "base_consume_enemy_poison_on_hit",
+ "cannot_poison",
+ },
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ },
+ levels = {
+ [1] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 41, 61, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 57, 86, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 67, 100, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 76, 114, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 86, 129, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 97, 145, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 108, 161, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 131, 196, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 143, 214, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 156, 233, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 182, 273, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 211, 316, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 226, 338, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 241, 361, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 257, 385, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 273, 409, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 289, 434, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 307, 460, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 324, 486, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 342, 513, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 360, 541, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 379, 569, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 399, 598, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 418, 628, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 439, 658, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 459, 689, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 480, 720, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 524, 785, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 546, 819, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 569, 853, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Acidic Burst",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "poisonous_concoction",
+ statMap = {
+ ["poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed"] = {
+ mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", actor = "enemy", var = "PoisonStacks" }),
+ },
+ ["active_skill_base_secondary_area_of_effect_radius"] = {
+ skill("radius", nil),
+ },
+ },
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "base_number_of_projectiles", 1 },
+ { "throw_flask_effects_type", 4 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "main_hand_base_weapon_attack_duration_ms", 714 },
+ { "active_skill_base_secondary_area_of_effect_radius", 15 },
+ { "poison_concoction_poison_burst_physical_damage_equal_to_%_of_strongest_active_poison", 150 },
+ { "poisonous_concoction_area_of_effect_+%_final_per_active_poison_consumed", 30 },
+ },
+ stats = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ "base_is_projectile",
+ "projectile_behaviour_only_explode",
+ "can_perform_skill_while_moving",
+ "replace_main_hand_unarmed_attack_stats_with_nothing_type",
+ "is_area_damage",
+ "base_consume_enemy_poison_on_hit",
+ "cannot_poison",
+ },
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ },
+ levels = {
+ [1] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 0, 0, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
skills["AncestralSpiritsPlayer"] = {
name = "Ancestral Spirits",
baseTypeName = "Ancestral Spirits",
@@ -71,13 +294,22 @@ skills["AncestralSpiritsPlayer"] = {
label = "Ancestral Spirits",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
+ statMap = {
+ ["minion_1%_damage_+%_per_X_player_strength"] = {
+ mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }),
+ },
+ ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = {
+ mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }),
+ div = 3,
+ },
+ },
baseFlags = {
spell = true,
minion = true,
},
constantStats = {
- { "minion_1%_damage_+%_per_X_player_strength", 3 },
- { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 },
+ { "minion_1%_damage_+%_per_X_player_strength", 1 },
+ { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 },
},
stats = {
"display_modifiers_to_totem_life_effect_these_minions",
@@ -134,14 +366,14 @@ skills["BleedingConcoctionPlayer"] = {
baseTypeName = "Bleeding Concoction",
fromTree = true,
color = 4,
- description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Physical attack damage in an area. Bleeding inflicted by this skill has higher Magnitude.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, },
+ description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area and Aggravating Bleeding on Enemies hit.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, },
weaponTypes = {
["None"] = true,
},
castTime = 1,
qualityStats = {
- { "faster_bleed_%", 1 },
+ { "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
[1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
@@ -190,12 +422,7 @@ skills["BleedingConcoctionPlayer"] = {
label = "Bleeding Concoction",
baseEffectiveness = 4.1999998092651,
incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "throw_flask_bleed",
- statMap = {
- ["flask_throw_bleed_effect_+%_final"] = {
- mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Bleed),
- },
- },
+ statDescriptionScope = "bleeding_concoction",
baseFlags = {
attack = true,
projectile = true,
@@ -205,14 +432,14 @@ skills["BleedingConcoctionPlayer"] = {
constantStats = {
{ "flask_throw_base_charges_used", 5 },
{ "base_number_of_projectiles", 1 },
- { "active_skill_base_area_of_effect_radius", 15 },
- { "flask_throw_bleed_effect_+%_final", 200 },
+ { "active_skill_base_area_of_effect_radius", 18 },
{ "throw_flask_effects_type", 3 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_base_weapon_attack_duration_ms", 714 },
{ "base_chance_to_inflict_bleeding_%", 100 },
+ { "base_aggravate_bleeding_on_attack_hit_chance_%", 100 },
},
stats = {
"main_hand_weapon_minimum_physical_damage",
@@ -223,6 +450,10 @@ skills["BleedingConcoctionPlayer"] = {
"replace_main_hand_unarmed_attack_stats_with_nothing_type",
"is_area_damage",
},
+ notMinionStat = {
+ "main_hand_weapon_minimum_physical_damage",
+ "main_hand_weapon_maximum_physical_damage",
+ },
levels = {
[1] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 19, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
@@ -384,120 +615,525 @@ skills["BloodBoilPlayer"] = {
},
}
}
-skills["MetaCastOnCharmUsePlayer"] = {
- name = "Cast on Charm Use",
- baseTypeName = "Cast on Charm Use",
+skills["MeleeBowPlayer"] = {
+ name = "Bow Shot",
+ baseTypeName = "Bow Shot",
fromItem = true,
color = 4,
- description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.",
- skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
- castTime = 0,
+ description = "Fire an arrow with your Bow.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, [SkillType.NoAttackInPlace] = true, },
+ weaponTypes = {
+ ["Bow"] = true,
+ },
+ castTime = 1,
qualityStats = {
- { "energy_generated_+%", 0.75 },
},
levels = {
[1] = { levelRequirement = 0, },
- [2] = { levelRequirement = 3, },
- [3] = { levelRequirement = 6, },
- [4] = { levelRequirement = 10, },
- [5] = { levelRequirement = 14, },
- [6] = { levelRequirement = 18, },
- [7] = { levelRequirement = 22, },
- [8] = { levelRequirement = 26, },
- [9] = { levelRequirement = 31, },
- [10] = { levelRequirement = 36, },
- [11] = { levelRequirement = 41, },
- [12] = { levelRequirement = 46, },
- [13] = { levelRequirement = 52, },
- [14] = { levelRequirement = 58, },
- [15] = { levelRequirement = 64, },
- [16] = { levelRequirement = 66, },
- [17] = { levelRequirement = 72, },
- [18] = { levelRequirement = 78, },
- [19] = { levelRequirement = 84, },
- [20] = { levelRequirement = 90, },
- [21] = { levelRequirement = 90, },
- [22] = { levelRequirement = 90, },
- [23] = { levelRequirement = 90, },
- [24] = { levelRequirement = 90, },
- [25] = { levelRequirement = 90, },
- [26] = { levelRequirement = 90, },
- [27] = { levelRequirement = 90, },
- [28] = { levelRequirement = 90, },
- [29] = { levelRequirement = 90, },
- [30] = { levelRequirement = 90, },
- [31] = { levelRequirement = 90, },
- [32] = { levelRequirement = 90, },
- [33] = { levelRequirement = 90, },
- [34] = { levelRequirement = 90, },
- [35] = { levelRequirement = 90, },
- [36] = { levelRequirement = 90, },
- [37] = { levelRequirement = 90, },
- [38] = { levelRequirement = 90, },
- [39] = { levelRequirement = 90, },
- [40] = { levelRequirement = 90, },
+ [2] = { baseMultiplier = 1.1, levelRequirement = 3, },
+ [3] = { baseMultiplier = 1.21, levelRequirement = 6, },
+ [4] = { baseMultiplier = 1.32, levelRequirement = 10, },
+ [5] = { baseMultiplier = 1.42, levelRequirement = 14, },
+ [6] = { baseMultiplier = 1.53, levelRequirement = 18, },
+ [7] = { baseMultiplier = 1.64, levelRequirement = 22, },
+ [8] = { baseMultiplier = 1.74, levelRequirement = 26, },
+ [9] = { baseMultiplier = 1.82, levelRequirement = 31, },
+ [10] = { baseMultiplier = 1.91, levelRequirement = 36, },
+ [11] = { baseMultiplier = 2.01, levelRequirement = 41, },
+ [12] = { baseMultiplier = 2.11, levelRequirement = 46, },
+ [13] = { baseMultiplier = 2.22, levelRequirement = 52, },
+ [14] = { baseMultiplier = 2.33, levelRequirement = 58, },
+ [15] = { baseMultiplier = 2.44, levelRequirement = 64, },
+ [16] = { baseMultiplier = 2.57, levelRequirement = 66, },
+ [17] = { baseMultiplier = 2.69, levelRequirement = 72, },
+ [18] = { baseMultiplier = 2.83, levelRequirement = 78, },
+ [19] = { baseMultiplier = 2.97, levelRequirement = 84, },
+ [20] = { baseMultiplier = 3.12, levelRequirement = 90, },
+ [21] = { baseMultiplier = 3.27, levelRequirement = 90, },
+ [22] = { baseMultiplier = 3.44, levelRequirement = 90, },
+ [23] = { baseMultiplier = 3.61, levelRequirement = 90, },
+ [24] = { baseMultiplier = 3.79, levelRequirement = 90, },
+ [25] = { baseMultiplier = 3.98, levelRequirement = 90, },
+ [26] = { baseMultiplier = 4.18, levelRequirement = 90, },
+ [27] = { baseMultiplier = 4.39, levelRequirement = 90, },
+ [28] = { baseMultiplier = 4.61, levelRequirement = 90, },
+ [29] = { baseMultiplier = 4.84, levelRequirement = 90, },
+ [30] = { baseMultiplier = 5.08, levelRequirement = 90, },
+ [31] = { baseMultiplier = 5.33, levelRequirement = 90, },
+ [32] = { baseMultiplier = 5.6, levelRequirement = 90, },
+ [33] = { baseMultiplier = 5.88, levelRequirement = 90, },
+ [34] = { baseMultiplier = 6.18, levelRequirement = 90, },
+ [35] = { baseMultiplier = 6.48, levelRequirement = 90, },
+ [36] = { baseMultiplier = 6.81, levelRequirement = 90, },
+ [37] = { baseMultiplier = 7.15, levelRequirement = 90, },
+ [38] = { baseMultiplier = 7.51, levelRequirement = 90, },
+ [39] = { baseMultiplier = 7.88, levelRequirement = 90, },
+ [40] = { baseMultiplier = 8.28, levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Cast on Charm Use",
+ label = "Bow Shot",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
+ attack = true,
+ projectile = true,
},
constantStats = {
- { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 },
- { "skill_desired_amount_override", 1 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "energy_generated_+%",
- "generic_ongoing_trigger_triggers_at_maximum_energy",
- "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
- "base_deal_no_damage",
+ "base_is_projectile",
+ "projectile_uses_contact_position",
+ "projectile_uses_contact_direction",
+ "check_for_targets_between_initiator_and_projectile_source",
+ "skill_can_fire_arrows",
+ "can_perform_skill_while_moving",
+ "should_use_additive_aiming_animation",
+ "has_modular_projectiles_enabled",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ExplodingPoisonToadPlayer"] = {
+ name = "Bursting Fen Toad",
+ baseTypeName = "Bursting Fen Toad",
+ fromItem = true,
+ color = 4,
+ description = "A Poisonous Toad leaps towards enemies and explodes, dealing damage in an area and inflicting Poison.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.UseGlobalStats] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "trigger_toad_spawn_chance_%", 0.5 },
+ },
+ levels = {
+ [1] = { critChance = 5, baseMultiplier = 2.25, levelRequirement = 0, },
+ [2] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 3, },
+ [3] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 6, },
+ [4] = { critChance = 5, baseMultiplier = 2.97, levelRequirement = 10, },
+ [5] = { critChance = 5, baseMultiplier = 3.2, levelRequirement = 14, },
+ [6] = { critChance = 5, baseMultiplier = 3.45, levelRequirement = 18, },
+ [7] = { critChance = 5, baseMultiplier = 3.69, levelRequirement = 22, },
+ [8] = { critChance = 5, baseMultiplier = 3.91, levelRequirement = 26, },
+ [9] = { critChance = 5, baseMultiplier = 4.1, levelRequirement = 31, },
+ [10] = { critChance = 5, baseMultiplier = 4.31, levelRequirement = 36, },
+ [11] = { critChance = 5, baseMultiplier = 4.52, levelRequirement = 41, },
+ [12] = { critChance = 5, baseMultiplier = 4.75, levelRequirement = 46, },
+ [13] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 52, },
+ [14] = { critChance = 5, baseMultiplier = 5.24, levelRequirement = 58, },
+ [15] = { critChance = 5, baseMultiplier = 5.5, levelRequirement = 64, },
+ [16] = { critChance = 5, baseMultiplier = 5.77, levelRequirement = 66, },
+ [17] = { critChance = 5, baseMultiplier = 6.06, levelRequirement = 72, },
+ [18] = { critChance = 5, baseMultiplier = 6.37, levelRequirement = 78, },
+ [19] = { critChance = 5, baseMultiplier = 6.68, levelRequirement = 84, },
+ [20] = { critChance = 5, baseMultiplier = 7.02, levelRequirement = 90, },
+ [21] = { critChance = 5, baseMultiplier = 7.37, levelRequirement = 90, },
+ [22] = { critChance = 5, baseMultiplier = 7.74, levelRequirement = 90, },
+ [23] = { critChance = 5, baseMultiplier = 8.12, levelRequirement = 90, },
+ [24] = { critChance = 5, baseMultiplier = 8.53, levelRequirement = 90, },
+ [25] = { critChance = 5, baseMultiplier = 8.96, levelRequirement = 90, },
+ [26] = { critChance = 5, baseMultiplier = 9.4, levelRequirement = 90, },
+ [27] = { critChance = 5, baseMultiplier = 9.87, levelRequirement = 90, },
+ [28] = { critChance = 5, baseMultiplier = 10.37, levelRequirement = 90, },
+ [29] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 90, },
+ [30] = { critChance = 5, baseMultiplier = 11.43, levelRequirement = 90, },
+ [31] = { critChance = 5, baseMultiplier = 12, levelRequirement = 90, },
+ [32] = { critChance = 5, baseMultiplier = 12.6, levelRequirement = 90, },
+ [33] = { critChance = 5, baseMultiplier = 13.23, levelRequirement = 90, },
+ [34] = { critChance = 5, baseMultiplier = 13.89, levelRequirement = 90, },
+ [35] = { critChance = 5, baseMultiplier = 14.59, levelRequirement = 90, },
+ [36] = { critChance = 5, baseMultiplier = 15.32, levelRequirement = 90, },
+ [37] = { critChance = 5, baseMultiplier = 16.08, levelRequirement = 90, },
+ [38] = { critChance = 5, baseMultiplier = 16.89, levelRequirement = 90, },
+ [39] = { critChance = 5, baseMultiplier = 17.73, levelRequirement = 90, },
+ [40] = { critChance = 5, baseMultiplier = 18.62, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Bursting Fen Toad",
+ baseEffectiveness = 2,
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "exploding_poison_toad",
+ baseFlags = {
+ area = true,
+ attack = true,
+ },
+ constantStats = {
+ { "trigger_toad_spawn_chance_%", 25 },
+ { "base_chance_to_poison_on_hit_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 25 },
+ },
+ stats = {
+ "attack_minimum_added_physical_damage",
+ "attack_maximum_added_physical_damage",
+ "is_area_damage",
+ },
+ levels = {
+ [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["MetaDeadeyeMarksPlayer"] = {
+ name = "Called Shots",
+ baseTypeName = "Called Shots",
+ fromTree = true,
+ color = 4,
+ description = "Applies a socketed Mark Skill to a nearby unmarked Enemy every few seconds. Consuming socketed Marks will cause them to be reapplied to an unmarked Enemy. This reapplication can happen at most once every half second.",
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Triggers] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.ZeroReservation] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.2 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Called Shots",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_deadeye_marks",
+ baseFlags = {
+ },
+ constantStats = {
+ { "active_skill_base_area_of_effect_radius", 40 },
+ { "deadeye_meta_marks_number_of_enemies_to_mark", 1 },
+ },
+ stats = {
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
- [2] = {
+ }
+}
+skills["SupportMetaDeadeyeMarksPlayer"] = {
+ name = "SupportMetaDeadeyeMarksPlayer",
+ hidden = true,
+ fromTree = true,
+ support = true,
+ requireSkillTypes = { SkillType.Mark, },
+ addSkillTypes = { },
+ excludeSkillTypes = { },
+ qualityStats = {
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
+ },
+ statSets = {
+ [1] = {
+ label = "SupportMetaDeadeyeMarksPlayer",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "meta_gem_stat_descriptions",
+ baseFlags = {
+ },
+ constantStats = {
+ { "your_marks_spread_to_a_nearby_enemies_on_consume_%_chance", 100 },
+ },
+ stats = {
+ "mark_supported_by_deadeye_meta_gem",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["MetaCastOnCharmUsePlayer"] = {
+ name = "Cast on Charm Use",
+ baseTypeName = "Cast on Charm Use",
+ fromItem = true,
+ color = 4,
+ description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "energy_generated_+%", 0.75 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
label = "Cast on Charm Use",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
@@ -506,15 +1142,12 @@ skills["MetaCastOnCharmUsePlayer"] = {
constantStats = {
{ "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 },
{ "skill_desired_amount_override", 1 },
- { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
},
stats = {
"energy_generated_+%",
"generic_ongoing_trigger_triggers_at_maximum_energy",
"generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills",
"base_deal_no_damage",
- "triggered_by_generic_ongoing_trigger",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
@@ -561,84 +1194,72 @@ skills["MetaCastOnCharmUsePlayer"] = {
},
}
}
-skills["MeleeBowPlayer"] = {
- name = "Bow Shot",
- baseTypeName = "Bow Shot",
+skills["SupportMetaCastOnCharmUsePlayer"] = {
+ name = "SupportMetaCastOnCharmUsePlayer",
+ hidden = true,
fromItem = true,
- color = 4,
- description = "Fire an arrow with your Bow.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CanRapidFire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, },
- weaponTypes = {
- ["Bow"] = true,
- },
- castTime = 1,
+ support = true,
+ requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, },
+ addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
+ excludeSkillTypes = { SkillType.SupportedByHourglass, },
+ isTrigger = true,
qualityStats = {
},
levels = {
[1] = { levelRequirement = 0, },
- [2] = { baseMultiplier = 1.1, levelRequirement = 3, },
- [3] = { baseMultiplier = 1.21, levelRequirement = 6, },
- [4] = { baseMultiplier = 1.32, levelRequirement = 10, },
- [5] = { baseMultiplier = 1.42, levelRequirement = 14, },
- [6] = { baseMultiplier = 1.53, levelRequirement = 18, },
- [7] = { baseMultiplier = 1.64, levelRequirement = 22, },
- [8] = { baseMultiplier = 1.74, levelRequirement = 26, },
- [9] = { baseMultiplier = 1.82, levelRequirement = 31, },
- [10] = { baseMultiplier = 1.91, levelRequirement = 36, },
- [11] = { baseMultiplier = 2.01, levelRequirement = 41, },
- [12] = { baseMultiplier = 2.11, levelRequirement = 46, },
- [13] = { baseMultiplier = 2.22, levelRequirement = 52, },
- [14] = { baseMultiplier = 2.33, levelRequirement = 58, },
- [15] = { baseMultiplier = 2.44, levelRequirement = 64, },
- [16] = { baseMultiplier = 2.57, levelRequirement = 66, },
- [17] = { baseMultiplier = 2.69, levelRequirement = 72, },
- [18] = { baseMultiplier = 2.83, levelRequirement = 78, },
- [19] = { baseMultiplier = 2.97, levelRequirement = 84, },
- [20] = { baseMultiplier = 3.12, levelRequirement = 90, },
- [21] = { baseMultiplier = 3.27, levelRequirement = 90, },
- [22] = { baseMultiplier = 3.44, levelRequirement = 90, },
- [23] = { baseMultiplier = 3.61, levelRequirement = 90, },
- [24] = { baseMultiplier = 3.79, levelRequirement = 90, },
- [25] = { baseMultiplier = 3.98, levelRequirement = 90, },
- [26] = { baseMultiplier = 4.18, levelRequirement = 90, },
- [27] = { baseMultiplier = 4.39, levelRequirement = 90, },
- [28] = { baseMultiplier = 4.61, levelRequirement = 90, },
- [29] = { baseMultiplier = 4.84, levelRequirement = 90, },
- [30] = { baseMultiplier = 5.08, levelRequirement = 90, },
- [31] = { baseMultiplier = 5.33, levelRequirement = 90, },
- [32] = { baseMultiplier = 5.6, levelRequirement = 90, },
- [33] = { baseMultiplier = 5.88, levelRequirement = 90, },
- [34] = { baseMultiplier = 6.18, levelRequirement = 90, },
- [35] = { baseMultiplier = 6.48, levelRequirement = 90, },
- [36] = { baseMultiplier = 6.81, levelRequirement = 90, },
- [37] = { baseMultiplier = 7.15, levelRequirement = 90, },
- [38] = { baseMultiplier = 7.51, levelRequirement = 90, },
- [39] = { baseMultiplier = 7.88, levelRequirement = 90, },
- [40] = { baseMultiplier = 8.28, levelRequirement = 90, },
+ [2] = { levelRequirement = 0, },
+ [3] = { levelRequirement = 0, },
+ [4] = { levelRequirement = 0, },
+ [5] = { levelRequirement = 0, },
+ [6] = { levelRequirement = 0, },
+ [7] = { levelRequirement = 0, },
+ [8] = { levelRequirement = 0, },
+ [9] = { levelRequirement = 0, },
+ [10] = { levelRequirement = 0, },
+ [11] = { levelRequirement = 0, },
+ [12] = { levelRequirement = 0, },
+ [13] = { levelRequirement = 0, },
+ [14] = { levelRequirement = 0, },
+ [15] = { levelRequirement = 0, },
+ [16] = { levelRequirement = 0, },
+ [17] = { levelRequirement = 0, },
+ [18] = { levelRequirement = 0, },
+ [19] = { levelRequirement = 0, },
+ [20] = { levelRequirement = 0, },
+ [21] = { levelRequirement = 0, },
+ [22] = { levelRequirement = 0, },
+ [23] = { levelRequirement = 0, },
+ [24] = { levelRequirement = 0, },
+ [25] = { levelRequirement = 0, },
+ [26] = { levelRequirement = 0, },
+ [27] = { levelRequirement = 0, },
+ [28] = { levelRequirement = 0, },
+ [29] = { levelRequirement = 0, },
+ [30] = { levelRequirement = 0, },
+ [31] = { levelRequirement = 0, },
+ [32] = { levelRequirement = 0, },
+ [33] = { levelRequirement = 0, },
+ [34] = { levelRequirement = 0, },
+ [35] = { levelRequirement = 0, },
+ [36] = { levelRequirement = 0, },
+ [37] = { levelRequirement = 0, },
+ [38] = { levelRequirement = 0, },
+ [39] = { levelRequirement = 0, },
+ [40] = { levelRequirement = 0, },
},
statSets = {
[1] = {
- label = "Bow Shot",
+ label = "SupportMetaCastOnCharmUsePlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
- attack = true,
- projectile = true,
},
constantStats = {
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 },
},
stats = {
- "base_is_projectile",
- "projectile_uses_contact_position",
- "projectile_uses_contact_direction",
- "check_for_targets_between_initiator_and_projectile_source",
- "skill_can_fire_arrows",
- "can_perform_skill_while_moving",
- "should_use_additive_aiming_animation",
- "has_modular_projectiles_enabled",
+ "triggered_by_generic_ongoing_trigger",
+ "generic_ongoing_trigger_triggers_at_maximum_energy",
},
levels = {
[1] = { actorLevel = 1, },
@@ -691,7 +1312,7 @@ skills["MeleeCrossbowPlayer"] = {
fromItem = true,
color = 4,
description = "Fire a bolt from your crossbow.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -759,7 +1380,7 @@ skills["MeleeCrossbowPlayer"] = {
{ "base_knockback_distance", 0 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_is_projectile",
@@ -772,6 +1393,7 @@ skills["MeleeCrossbowPlayer"] = {
"cannot_cancel_skill_before_contact_point",
"disable_visual_hit_effect",
"can_perform_skill_while_moving",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -823,7 +1445,7 @@ skills["UnloadAmmoPlayer"] = {
hidden = true,
fromItem = true,
description = "Clear your active Bolt and reload any ammunition.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -881,9 +1503,6 @@ skills["UnloadAmmoPlayer"] = {
},
constantStats = {
{ "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
{ "base_number_of_crossbow_bolts", 7 },
},
stats = {
@@ -892,6 +1511,7 @@ skills["UnloadAmmoPlayer"] = {
"can_perform_skill_while_moving",
"base_deal_no_damage",
"crossbow_ammo_skill_does_not_transition",
+ "skill_is_instant_while_sprinting",
},
levels = {
[1] = { actorLevel = 1, },
@@ -944,51 +1564,52 @@ skills["DemonFormPlayer"] = {
fromTree = true,
color = 4,
description = "Shapeshift into a demon, vastly boosting the power of your Spells. You gain Demonflame every second you remain in demon form, causing your Life to be lost at an ever-increasing rate. Maximum 10 Demonflame. Revert to human form if you reach 1 Life, use a Skill that isn't a Spell, or reactivate this Skill.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
+ { "demon_form_grants_cast_speed_+%", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 7, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 8, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 9, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 15, cost = { Mana = 6, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 15, cost = { Mana = 7, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 15, cost = { Mana = 8, }, },
[4] = { storedUses = 1, levelRequirement = 10, cooldown = 15, cost = { Mana = 10, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 12, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 14, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 16, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 18, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 21, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 24, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 28, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 32, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 37, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 43, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 49, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 56, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 65, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 74, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 85, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 98, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 113, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 129, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 148, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 170, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 196, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 225, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 258, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 296, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 340, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 391, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 449, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 515, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 592, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 679, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 780, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 895, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1028, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1180, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1355, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 1556, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 15, cost = { Mana = 11, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 15, cost = { Mana = 13, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 15, cost = { Mana = 15, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 15, cost = { Mana = 17, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 15, cost = { Mana = 20, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 15, cost = { Mana = 22, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 15, cost = { Mana = 25, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 15, cost = { Mana = 28, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 15, cost = { Mana = 31, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 15, cost = { Mana = 35, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 15, cost = { Mana = 39, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 15, cost = { Mana = 43, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 15, cost = { Mana = 48, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 15, cost = { Mana = 53, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 15, cost = { Mana = 59, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 65, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 72, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 79, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 88, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 96, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 106, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 116, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 127, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 139, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 153, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 167, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 183, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 200, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 218, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 238, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 259, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 283, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 308, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 335, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 365, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 15, cost = { Mana = 397, }, },
},
statSets = {
[1] = {
@@ -997,55 +1618,56 @@ skills["DemonFormPlayer"] = {
statDescriptionScope = "demon_transformation",
baseFlags = {
},
+ constantStats = {
+ { "demon_form_spell_damage_+%_final_per_stack", 3 },
+ },
stats = {
- "demon_form_spell_damage_+%_per_stack",
"demon_form_grants_cast_speed_+%",
- "demon_form_grants_spell_gem_level_+",
"demon_form_life_loss_per_minute_per_stack",
"base_deal_no_damage",
"demon_transformation_cooldown_does_not_tick",
},
levels = {
- [1] = { 7, 12, 3, 48, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, },
- [2] = { 8, 13, 3, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 8, 13, 3, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 9, 14, 3, 100, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 9, 15, 4, 128, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 10, 15, 4, 144, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 10, 16, 4, 160, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 11, 17, 4, 180, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 12, 17, 4, 210, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 12, 18, 4, 244, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 13, 19, 5, 308, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 13, 20, 5, 346, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 14, 20, 5, 394, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 15, 21, 5, 454, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 15, 22, 5, 518, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 16, 22, 5, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 16, 23, 6, 780, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 17, 24, 6, 848, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 18, 24, 6, 980, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 18, 25, 6, 1112, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 19, 26, 6, 1202, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 20, 26, 6, 1315, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 20, 27, 6, 1428, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 20, 28, 7, 1541, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 21, 28, 7, 1654, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, },
- [26] = { 21, 29, 7, 1767, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 22, 30, 7, 1880, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 23, 30, 7, 1992, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 23, 31, 7, 2105, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 24, 32, 8, 2218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 24, 32, 8, 2331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 24, 33, 8, 2444, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 25, 33, 8, 2557, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 25, 33, 8, 2670, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 25, 34, 8, 2783, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 26, 34, 8, 2896, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 26, 34, 8, 3009, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 26, 35, 8, 3122, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 26, 35, 8, 3235, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 27, 35, 8, 3347, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 12, 48, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 13, 64, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 14, 100, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 15, 128, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 15, 144, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 16, 160, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 17, 180, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 17, 210, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 18, 244, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 19, 308, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 20, 346, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 20, 394, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 21, 454, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 22, 518, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 22, 585, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 23, 780, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 24, 848, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 24, 980, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 25, 1112, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 26, 1143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 26, 1179, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 27, 1214, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 28, 1247, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 28, 1278, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 29, 1308, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 30, 1336, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 30, 1364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 31, 1390, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 32, 1416, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 32, 1441, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 33, 1465, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 33, 1488, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 33, 1511, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 34, 1533, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 34, 1555, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 34, 1575, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 35, 1596, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 35, 1616, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 35, 1635, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1062,57 +1684,58 @@ skills["ElementalExpressionTriggeredPlayer"] = {
{ "base_cooldown_speed_+%", 1 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.25, cost = { Mana = 4, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 0.25, cost = { Mana = 3, }, },
[2] = { storedUses = 1, levelRequirement = 3, cooldown = 0.25, cost = { Mana = 4, }, },
[3] = { storedUses = 1, levelRequirement = 6, cooldown = 0.25, cost = { Mana = 5, }, },
[4] = { storedUses = 1, levelRequirement = 10, cooldown = 0.25, cost = { Mana = 6, }, },
[5] = { storedUses = 1, levelRequirement = 14, cooldown = 0.25, cost = { Mana = 7, }, },
[6] = { storedUses = 1, levelRequirement = 18, cooldown = 0.25, cost = { Mana = 8, }, },
[7] = { storedUses = 1, levelRequirement = 22, cooldown = 0.25, cost = { Mana = 9, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 0.25, cost = { Mana = 11, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 0.25, cost = { Mana = 13, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 0.25, cost = { Mana = 14, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 0.25, cost = { Mana = 17, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 0.25, cost = { Mana = 19, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 0.25, cost = { Mana = 22, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 0.25, cost = { Mana = 25, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 0.25, cost = { Mana = 29, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 0.25, cost = { Mana = 34, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 0.25, cost = { Mana = 39, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 0.25, cost = { Mana = 45, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 0.25, cost = { Mana = 51, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 59, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 68, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 78, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 89, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 103, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 118, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 136, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 156, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 179, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 205, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 236, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 271, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 311, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 357, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 410, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 471, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 541, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 621, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 713, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 818, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 940, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 0.25, cost = { Mana = 10, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 0.25, cost = { Mana = 12, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 0.25, cost = { Mana = 13, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 0.25, cost = { Mana = 15, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 0.25, cost = { Mana = 17, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 0.25, cost = { Mana = 19, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 0.25, cost = { Mana = 21, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 0.25, cost = { Mana = 23, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 0.25, cost = { Mana = 26, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 0.25, cost = { Mana = 29, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 0.25, cost = { Mana = 32, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 0.25, cost = { Mana = 36, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 39, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 43, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 48, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 53, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 58, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 64, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 70, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 77, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 84, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 92, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 101, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 110, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 120, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 131, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 143, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 156, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 170, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 186, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 202, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 220, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 0.25, cost = { Mana = 239, }, },
},
statSets = {
[1] = {
label = "Elemental Expression",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
+ statDescriptionScope = "elemental_strike_trigger_statset_0",
baseFlags = {
},
+ constantStats = {
+ { "chance_to_be_trigger_elemental_expression_%", 100 },
+ },
stats = {
- "is_triggerable_strike",
- "triggerable_in_any_set",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1159,193 +1782,202 @@ skills["ElementalExpressionTriggeredPlayer"] = {
},
[2] = {
label = "Fiery Explosion",
- baseEffectiveness = 1.75,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "skill_stat_descriptions",
+ baseEffectiveness = 2.625,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "elemental_strike_trigger_statset_1",
baseFlags = {
spell = true,
area = true,
},
constantStats = {
+ { "chance_to_be_trigger_elemental_expression_%", 100 },
{ "active_skill_base_area_of_effect_radius", 36 },
},
stats = {
"spell_minimum_base_fire_damage",
"spell_maximum_base_fire_damage",
- "is_triggerable_strike",
- "triggerable_in_any_set",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
- [1] = { 5, 8, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 7, 11, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 10, 15, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, 20, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 17, 25, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 21, 31, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 25, 38, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 35, 53, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 41, 62, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 48, 71, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 55, 82, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 63, 95, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 72, 108, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 82, 123, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 93, 140, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 106, 159, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 120, 179, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 135, 203, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 152, 228, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 171, 257, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 193, 289, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 217, 325, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 244, 365, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 274, 410, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 307, 460, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 345, 517, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 387, 580, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 434, 651, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 487, 730, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 546, 819, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 613, 920, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 689, 1033, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 774, 1160, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 869, 1304, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 978, 1466, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 1100, 1650, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1238, 1857, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1394, 2091, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1571, 2357, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 8, 12, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 11, 16, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 15, 22, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 19, 29, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 25, 37, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 37, 55, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 44, 66, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 52, 78, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 61, 91, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 71, 106, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 82, 124, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 95, 143, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 110, 165, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 126, 189, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 144, 216, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 165, 247, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 188, 282, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 214, 321, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 244, 366, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 277, 416, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 315, 473, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 358, 537, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 407, 610, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 462, 693, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 525, 787, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 596, 894, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 677, 1015, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 769, 1153, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 874, 1311, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 994, 1491, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1131, 1697, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1288, 1932, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1468, 2201, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1674, 2510, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1910, 2865, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 2181, 3272, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2494, 3741, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2854, 4280, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 3269, 4903, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[3] = {
label = "Icy Wave",
- baseEffectiveness = 1.4349999427795,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "skill_stat_descriptions",
+ baseEffectiveness = 2.1524999141693,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "elemental_strike_trigger_statset_2",
baseFlags = {
spell = true,
projectile = true,
},
constantStats = {
+ { "chance_to_be_trigger_elemental_expression_%", 100 },
{ "base_number_of_projectiles", 3 },
{ "fixed_projectile_height", 15 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
- "is_triggerable_strike",
- "triggerable_in_any_set",
"always_pierce",
"show_number_of_projectiles",
"base_is_projectile",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
- [1] = { 4, 7, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 6, 9, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 8, 13, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 11, 16, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 14, 21, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 17, 25, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 21, 31, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 24, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 29, 43, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 34, 50, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 39, 59, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 45, 68, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 52, 78, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 59, 89, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 67, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 77, 115, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 87, 130, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 98, 147, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 111, 166, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 125, 187, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 141, 211, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 158, 237, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 178, 267, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 224, 336, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 252, 378, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 283, 424, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 317, 475, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 356, 534, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 399, 599, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 448, 672, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 503, 754, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 565, 847, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 634, 952, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 713, 1069, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 802, 1202, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 902, 1353, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1015, 1523, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1143, 1715, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1288, 1933, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 7, 10, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 9, 14, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 12, 18, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 16, 24, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 20, 30, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 25, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 30, 45, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 36, 54, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 42, 64, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 50, 75, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 58, 87, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 68, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 78, 117, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 90, 135, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 103, 155, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 118, 177, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 135, 203, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 154, 231, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 176, 264, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 227, 341, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 259, 388, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 294, 441, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 334, 500, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 379, 568, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 430, 645, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 488, 733, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 555, 832, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 630, 946, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 717, 1075, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 815, 1223, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 928, 1391, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1056, 1584, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1203, 1805, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1372, 2058, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1566, 2349, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1789, 2683, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 2045, 3067, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 2340, 3510, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 2680, 4020, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[4] = {
label = "Arcing Bolt",
- baseEffectiveness = 1.6100000143051,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "skill_stat_descriptions",
+ baseEffectiveness = 2.414999961853,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0082000000402331,
+ statDescriptionScope = "elemental_strike_trigger_statset_3",
baseFlags = {
spell = true,
chaining = true,
},
constantStats = {
+ { "chance_to_be_trigger_elemental_expression_%", 100 },
{ "number_of_chains", 7 },
},
stats = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
- "is_triggerable_strike",
- "triggerable_in_any_set",
+ },
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
},
levels = {
- [1] = { 2, 11, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 3, 15, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4, 20, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 5, 26, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 6, 33, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 7, 40, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 9, 49, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 10, 58, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 12, 69, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 14, 80, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 16, 93, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 19, 107, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 22, 123, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 25, 141, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 32, 182, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 36, 207, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 41, 234, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 47, 264, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 53, 298, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 59, 335, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 67, 377, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 75, 424, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 84, 476, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 94, 535, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 106, 600, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 119, 674, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 133, 756, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 150, 848, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 168, 952, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 188, 1068, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 212, 1199, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 238, 1346, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 267, 1512, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 300, 1700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 337, 1911, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 379, 2150, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 427, 2420, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 481, 2726, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 542, 3072, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { 3, 16, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 4, 21, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 5, 29, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 7, 38, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 8, 48, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 10, 59, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 13, 72, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 15, 86, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 18, 101, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 21, 119, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 24, 139, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 33, 186, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 38, 214, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 43, 246, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 50, 282, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 57, 322, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 65, 368, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 74, 419, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 84, 477, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 96, 542, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 109, 616, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 124, 700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 140, 795, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 159, 903, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 181, 1025, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 206, 1165, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 233, 1323, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 265, 1503, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 302, 1709, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 343, 1943, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 390, 2211, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 444, 2518, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 506, 2869, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 577, 3272, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 659, 3734, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 753, 4265, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 860, 4875, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 985, 5579, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1128, 6390, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1356,59 +1988,59 @@ skills["ElementalStormPlayer"] = {
fromTree = true,
color = 4,
description = "Create a stationary Fire, Cold or Lightning storm at a target location for a duration, based on the highest Elemental Damage type for the Hit that Triggered the storm. Hits which do not deal Elemental Damage will not Trigger the storm.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
{ "base_cooldown_speed_+%", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { Mana = 8, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { Mana = 9, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { Mana = 10, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { Mana = 11, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { Mana = 13, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { Mana = 14, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { Mana = 16, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { Mana = 18, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { Mana = 20, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { Mana = 22, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { Mana = 25, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { Mana = 28, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { Mana = 31, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { Mana = 34, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { Mana = 38, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { Mana = 43, }, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 5, cost = { Mana = 48, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { Mana = 54, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { Mana = 60, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 67, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 74, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 83, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 93, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 103, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 115, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 129, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 143, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 160, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 178, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 199, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 222, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 247, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 276, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 308, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 343, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 383, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 427, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 476, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 531, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { Mana = 592, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 3, cost = { Mana = 8, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 3, cost = { Mana = 9, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 3, cost = { Mana = 10, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 3, cost = { Mana = 12, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 3, cost = { Mana = 13, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 3, cost = { Mana = 15, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 3, cost = { Mana = 17, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 3, cost = { Mana = 19, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 3, cost = { Mana = 21, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 3, cost = { Mana = 23, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 3, cost = { Mana = 26, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 3, cost = { Mana = 28, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 3, cost = { Mana = 31, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 3, cost = { Mana = 34, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 3, cost = { Mana = 37, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 3, cost = { Mana = 40, }, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 3, cost = { Mana = 43, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 3, cost = { Mana = 47, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 3, cost = { Mana = 51, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 55, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 60, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 64, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 69, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 74, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 80, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 86, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 92, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 99, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 106, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 113, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 121, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 130, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 138, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 148, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 158, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 168, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 179, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 191, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 203, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 3, cost = { Mana = 216, }, },
},
statSets = {
[1] = {
label = "Elemental Storm",
baseEffectiveness = 0.5625,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "tornado_triggered",
statMap = {
["tornado_base_damage_interval_ms"] = {
@@ -1481,8 +2113,8 @@ skills["ElementalStormPlayer"] = {
[2] = {
label = "Fire",
baseEffectiveness = 0.55000001192093,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "tornado_triggered",
statMap = {
["tornado_base_damage_interval_ms"] = {
@@ -1512,54 +2144,58 @@ skills["ElementalStormPlayer"] = {
"is_triggerable_elemental_storm",
"global_cannot_crit",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
[4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
[5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [6] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
[7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 12, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 14, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
[11] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
[14] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 62, 93, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 71, 106, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 80, 121, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 104, 156, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 152, 228, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 173, 259, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 224, 336, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 255, 382, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 290, 435, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 330, 496, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 377, 565, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 491, 737, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 562, 842, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 643, 964, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 736, 1104, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [15] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 89, 133, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 178, 266, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 235, 353, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 271, 407, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 649, 974, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 754, 1131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 876, 1315, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1020, 1530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
[3] = {
label = "Lightning",
baseEffectiveness = 0.41999998688698,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
statDescriptionScope = "tornado_triggered",
statMap = {
["tornado_base_damage_interval_ms"] = {
@@ -1589,124 +2225,377 @@ skills["ElementalStormPlayer"] = {
"is_triggerable_elemental_storm",
"global_cannot_crit",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, },
[2] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
[3] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
[4] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 2, 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [5] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
[6] = { 2, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
[7] = { 2, 13, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 3, 19, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [8] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 3, 18, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
[10] = { 4, 22, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
[11] = { 5, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
[12] = { 5, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
[13] = { 6, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
[14] = { 7, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 8, 46, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 9, 52, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 11, 60, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 12, 68, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 14, 78, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 16, 89, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 18, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 20, 115, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 23, 131, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 26, 148, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 30, 168, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 34, 191, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 38, 217, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 44, 247, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 50, 281, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 56, 319, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 64, 363, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 73, 413, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 83, 470, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 95, 536, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 108, 611, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 123, 698, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 141, 797, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 161, 911, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 184, 1043, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 211, 1195, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [15] = { 8, 47, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 10, 54, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 11, 62, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 15, 82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 17, 95, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 19, 109, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 22, 125, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 25, 144, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 29, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 33, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 38, 218, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 44, 250, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 51, 288, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 59, 332, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 67, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 78, 440, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 90, 508, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 103, 586, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 120, 678, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 138, 784, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 160, 908, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 186, 1054, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 216, 1223, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 251, 1422, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 292, 1656, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ [4] = {
+ label = "Cold",
+ baseEffectiveness = 0.41999998688698,
+ incrementalEffectiveness = 0.12999999523163,
+ damageIncrementalEffectiveness = 0.0096000004559755,
+ statDescriptionScope = "tornado_triggered",
+ statMap = {
+ ["tornado_base_damage_interval_ms"] = {
+ skill("hitTimeOverride", nil),
+ div = 1000,
+ },
+ },
+ baseFlags = {
+ spell = true,
+ area = true,
+ duration = true,
+ },
+ constantStats = {
+ { "tornado_base_damage_interval_ms", 250 },
+ { "number_of_tornados_allowed", 50 },
+ { "skill_override_pvp_scaling_time_ms", 1000 },
+ { "base_skill_effect_duration", 5000 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ },
+ stats = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ "skill_can_add_multiple_charges_per_action",
+ "damage_cannot_be_reflected_or_leech_if_used_by_other_object",
+ "is_area_damage",
+ "tornado_hinder",
+ "is_triggerable_elemental_storm",
+ "global_cannot_crit",
+ },
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
+ levels = {
+ [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 136, 203, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 207, 311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 239, 358, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 369, 554, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 428, 641, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 496, 744, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 576, 864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 779, 1169, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["AmazonTriggerElementalSurgePlayer"] = {
+ name = "Elemental Surge",
+ baseTypeName = "Elemental Surge",
+ fromTree = true,
+ color = 4,
+ description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, },
+ castTime = 1,
+ qualityStats = {
+ { "active_skill_base_area_of_effect_radius", 0.15 },
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.5, levelRequirement = 0, },
+ [2] = { baseMultiplier = 0.55, levelRequirement = 3, },
+ [3] = { baseMultiplier = 0.61, levelRequirement = 6, },
+ [4] = { baseMultiplier = 0.66, levelRequirement = 10, },
+ [5] = { baseMultiplier = 0.72, levelRequirement = 14, },
+ [6] = { baseMultiplier = 0.77, levelRequirement = 18, },
+ [7] = { baseMultiplier = 0.83, levelRequirement = 22, },
+ [8] = { baseMultiplier = 0.88, levelRequirement = 26, },
+ [9] = { baseMultiplier = 0.93, levelRequirement = 31, },
+ [10] = { baseMultiplier = 0.99, levelRequirement = 36, },
+ [11] = { baseMultiplier = 1.05, levelRequirement = 41, },
+ [12] = { baseMultiplier = 1.11, levelRequirement = 46, },
+ [13] = { baseMultiplier = 1.17, levelRequirement = 52, },
+ [14] = { baseMultiplier = 1.25, levelRequirement = 58, },
+ [15] = { baseMultiplier = 1.32, levelRequirement = 64, },
+ [16] = { baseMultiplier = 1.41, levelRequirement = 66, },
+ [17] = { baseMultiplier = 1.5, levelRequirement = 72, },
+ [18] = { baseMultiplier = 1.59, levelRequirement = 78, },
+ [19] = { baseMultiplier = 1.7, levelRequirement = 84, },
+ [20] = { baseMultiplier = 1.81, levelRequirement = 90, },
+ [21] = { baseMultiplier = 1.93, levelRequirement = 90, },
+ [22] = { baseMultiplier = 2.06, levelRequirement = 90, },
+ [23] = { baseMultiplier = 2.2, levelRequirement = 90, },
+ [24] = { baseMultiplier = 2.34, levelRequirement = 90, },
+ [25] = { baseMultiplier = 2.5, levelRequirement = 90, },
+ [26] = { baseMultiplier = 2.67, levelRequirement = 90, },
+ [27] = { baseMultiplier = 2.84, levelRequirement = 90, },
+ [28] = { baseMultiplier = 3.03, levelRequirement = 90, },
+ [29] = { baseMultiplier = 3.24, levelRequirement = 90, },
+ [30] = { baseMultiplier = 3.45, levelRequirement = 90, },
+ [31] = { baseMultiplier = 3.68, levelRequirement = 90, },
+ [32] = { baseMultiplier = 3.93, levelRequirement = 90, },
+ [33] = { baseMultiplier = 4.19, levelRequirement = 90, },
+ [34] = { baseMultiplier = 4.47, levelRequirement = 90, },
+ [35] = { baseMultiplier = 4.76, levelRequirement = 90, },
+ [36] = { baseMultiplier = 5.08, levelRequirement = 90, },
+ [37] = { baseMultiplier = 5.42, levelRequirement = 90, },
+ [38] = { baseMultiplier = 5.78, levelRequirement = 90, },
+ [39] = { baseMultiplier = 6.17, levelRequirement = 90, },
+ [40] = { baseMultiplier = 6.58, levelRequirement = 90, },
+ },
+ statSets = {
+ [1] = {
+ label = "Cold Surge",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "trigger_elemental_infusion",
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "base_skill_effect_duration", 15000 },
+ { "maximum_number_of_instilling_stacks", 6 },
+ },
+ stats = {
+ "is_area_damage",
+ "cannot_consume_power_frenzy_endurance_charges",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ levels = {
+ [1] = { actorLevel = 1, },
+ [2] = { actorLevel = 3.4519999027252, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
+ },
+ },
+ [2] = {
+ label = "Fire Surge",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "trigger_elemental_infusion",
+ baseFlags = {
+ attack = true,
+ area = true,
+ },
+ constantStats = {
+ { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "base_skill_effect_duration", 15000 },
+ { "maximum_number_of_instilling_stacks", 6 },
+ { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
+ },
+ stats = {
+ "is_area_damage",
+ "cannot_consume_power_frenzy_endurance_charges",
+ "base_skill_show_average_damage_instead_of_dps",
+ },
+ levels = {
+ [1] = { baseMultiplier = 0.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
},
},
- [4] = {
- label = "Cold",
- baseEffectiveness = 0.41999998688698,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "tornado_triggered",
- statMap = {
- ["tornado_base_damage_interval_ms"] = {
- skill("hitTimeOverride", nil),
- div = 1000,
- },
- },
+ [3] = {
+ label = "Lightning Surge",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "trigger_elemental_infusion",
baseFlags = {
- spell = true,
+ attack = true,
area = true,
- duration = true,
},
constantStats = {
- { "tornado_base_damage_interval_ms", 250 },
- { "number_of_tornados_allowed", 50 },
- { "skill_override_pvp_scaling_time_ms", 1000 },
- { "base_skill_effect_duration", 5000 },
+ { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
{ "active_skill_base_area_of_effect_radius", 18 },
+ { "base_skill_effect_duration", 15000 },
+ { "maximum_number_of_instilling_stacks", 6 },
+ { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
},
stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "skill_can_add_multiple_charges_per_action",
- "damage_cannot_be_reflected_or_leech_if_used_by_other_object",
"is_area_damage",
- "tornado_hinder",
- "is_triggerable_elemental_storm",
- "global_cannot_crit",
+ "cannot_consume_power_frenzy_endurance_charges",
+ "base_skill_show_average_damage_instead_of_dps",
},
levels = {
- [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 22, 32, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 37, 55, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 48, 71, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 54, 81, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 61, 92, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 90, 135, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 116, 174, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 132, 198, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 150, 225, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 194, 292, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 221, 332, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 288, 432, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 328, 493, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 375, 563, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 429, 643, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 562, 843, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [1] = { baseMultiplier = 0.5, actorLevel = 1, },
+ [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
+ [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
+ [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
+ [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
+ [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
+ [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
+ [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
+ [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
+ [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
+ [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
+ [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
+ [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
+ [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
+ [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
+ [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
+ [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
+ [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
+ [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
+ [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
+ [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
+ [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
+ [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
+ [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
+ [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
+ [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
+ [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
+ [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
+ [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
+ [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
+ [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
+ [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
+ [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
+ [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
+ [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
+ [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
+ [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
+ [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
+ [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
+ [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
},
},
}
@@ -1717,7 +2606,7 @@ skills["EncaseInJadePlayer"] = {
fromTree = true,
color = 4,
description = "Consume all stacks of Jade to grant Guard based off your maximum Life for each Jade consumed. You cannot gain Jade stacks while you have Guard.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0.3,
qualityStats = {
{ "maximum_life_%_damage_absorbed_per_jade_consumed", 0.05 },
@@ -1779,47 +2668,189 @@ skills["EncaseInJadePlayer"] = {
"base_skill_effect_duration",
"base_deal_no_damage",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
+ levels = {
+ [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ },
+ },
+ }
+}
+skills["ExplosiveConcoctionPlayer"] = {
+ name = "Explosive Concoction",
+ baseTypeName = "Explosive Concoction",
+ fromTree = true,
+ color = 4,
+ description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Fire Attack damage in an area. Additional smaller flasks are thrown at nearby Ignited Enemies.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, },
+ weaponTypes = {
+ ["None"] = true,
+ },
+ castTime = 1,
+ qualityStats = {
+ { "explosive_concoction_number_of_secondary_projectiles", 0.1 },
+ },
+ levels = {
+ [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
+ [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, },
+ [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, },
+ [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, },
+ [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, },
+ [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, },
+ [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, },
+ [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, },
+ [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, },
+ [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, },
+ [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, },
+ [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, },
+ [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, },
+ [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, },
+ [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, },
+ [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, },
+ [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, },
+ [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, },
+ [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, },
+ [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, },
+ [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, },
+ [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, },
+ [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, },
+ [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, },
+ [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, },
+ [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, },
+ [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, },
+ [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, },
+ [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, },
+ [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, },
+ [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, },
+ [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, },
+ [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, },
+ [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, },
+ [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, },
+ [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, },
+ [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, },
+ [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, },
+ [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, },
+ [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Flask",
+ baseEffectiveness = 4.5,
+ incrementalEffectiveness = 0.27349999547005,
+ statDescriptionScope = "explosive_concoction",
+ statMap = {
+ ["flask_throw_fire_exposure_ms"] = {
+ mod("FireExposureChance", "BASE", nil),
+ value = 100,
+ },
+ },
+ baseFlags = {
+ attack = true,
+ projectile = true,
+ duration = true,
+ unarmed = true,
+ area = true,
+ },
+ constantStats = {
+ { "flask_throw_base_charges_used", 5 },
+ { "base_number_of_projectiles", 1 },
+ { "active_skill_base_area_of_effect_radius", 18 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "main_hand_base_weapon_attack_duration_ms", 714 },
+ { "active_skill_ignite_chance_+%_final", 100 },
+ },
+ stats = {
+ "main_hand_weapon_minimum_fire_damage",
+ "main_hand_weapon_maximum_fire_damage",
+ "base_is_projectile",
+ "projectile_behaviour_only_explode",
+ "can_perform_skill_while_moving",
+ "replace_main_hand_unarmed_attack_stats_with_nothing_type",
+ "is_area_damage",
+ },
levels = {
- [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -1948,6 +2979,8 @@ skills["SupportMetaCastFireSpellOnHitPlayer"] = {
addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, },
excludeSkillTypes = { SkillType.SupportedByHourglass, },
isTrigger = true,
+ qualityStats = {
+ },
levels = {
[1] = { levelRequirement = 0, },
[2] = { levelRequirement = 0, },
@@ -1994,7 +3027,7 @@ skills["SupportMetaCastFireSpellOnHitPlayer"] = {
[1] = {
label = "SupportMetaCastFireSpellOnHitPlayer",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "gem_stat_descriptions",
+ statDescriptionScope = "meta_gem_stat_descriptions",
baseFlags = {
},
constantStats = {
@@ -2003,190 +3036,48 @@ skills["SupportMetaCastFireSpellOnHitPlayer"] = {
stats = {
"triggered_by_generic_ongoing_trigger",
"generic_ongoing_trigger_triggers_at_maximum_energy",
- "skill_cannot_generate_energy",
},
levels = {
[1] = { actorLevel = 1, },
[2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["ExplosiveConcoctionPlayer"] = {
- name = "Explosive Concoction",
- baseTypeName = "Explosive Concoction",
- fromTree = true,
- color = 4,
- description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Fire attack damage in an area and inflicting Fire Exposure.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, },
- weaponTypes = {
- ["None"] = true,
- },
- castTime = 1,
- qualityStats = {
- { "fire_exposure_effect_+%", 1 },
- },
- levels = {
- [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, },
- },
- statSets = {
- [1] = {
- label = "Explosive Concoction",
- baseEffectiveness = 4.5,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "throw_flask_fire",
- statMap = {
- ["flask_throw_fire_exposure_ms"] = {
- mod("FireExposureChance", "BASE", nil),
- value = 100,
- },
- },
- baseFlags = {
- attack = true,
- projectile = true,
- duration = true,
- unarmed = true,
- area = true,
- },
- constantStats = {
- { "flask_throw_base_charges_used", 5 },
- { "base_number_of_projectiles", 1 },
- { "active_skill_base_area_of_effect_radius", 15 },
- { "flask_throw_fire_exposure_ms", 4000 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "main_hand_base_weapon_attack_duration_ms", 714 },
- { "active_skill_ignite_chance_+%_final", 100 },
- { "active_skill_ignite_effect_+%_final", 200 },
- },
- stats = {
- "main_hand_weapon_minimum_fire_damage",
- "main_hand_weapon_maximum_fire_damage",
- "base_is_projectile",
- "projectile_behaviour_only_explode",
- "can_perform_skill_while_moving",
- "replace_main_hand_unarmed_attack_stats_with_nothing_type",
- "is_area_damage",
- },
- levels = {
- [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [3] = { actorLevel = 6.7670001983643, },
+ [4] = { actorLevel = 10.307999610901, },
+ [5] = { actorLevel = 14.074999809265, },
+ [6] = { actorLevel = 18.068000793457, },
+ [7] = { actorLevel = 22.287000656128, },
+ [8] = { actorLevel = 26.732000350952, },
+ [9] = { actorLevel = 31.40299987793, },
+ [10] = { actorLevel = 36.299999237061, },
+ [11] = { actorLevel = 41.423000335693, },
+ [12] = { actorLevel = 46.771999359131, },
+ [13] = { actorLevel = 52.34700012207, },
+ [14] = { actorLevel = 58.147998809814, },
+ [15] = { actorLevel = 64.175003051758, },
+ [16] = { actorLevel = 70.428001403809, },
+ [17] = { actorLevel = 76.906997680664, },
+ [18] = { actorLevel = 83.611999511719, },
+ [19] = { actorLevel = 90.542999267578, },
+ [20] = { actorLevel = 97.699996948242, },
+ [21] = { actorLevel = 105.08300018311, },
+ [22] = { actorLevel = 112.69200134277, },
+ [23] = { actorLevel = 120.52700042725, },
+ [24] = { actorLevel = 128.58799743652, },
+ [25] = { actorLevel = 136.875, },
+ [26] = { actorLevel = 145.38800048828, },
+ [27] = { actorLevel = 154.12699890137, },
+ [28] = { actorLevel = 163.09199523926, },
+ [29] = { actorLevel = 172.28300476074, },
+ [30] = { actorLevel = 181.69999694824, },
+ [31] = { actorLevel = 191.34300231934, },
+ [32] = { actorLevel = 201.21200561523, },
+ [33] = { actorLevel = 211.30700683594, },
+ [34] = { actorLevel = 221.62800598145, },
+ [35] = { actorLevel = 232.17500305176, },
+ [36] = { actorLevel = 242.94799804688, },
+ [37] = { actorLevel = 253.94700622559, },
+ [38] = { actorLevel = 265.17199707031, },
+ [39] = { actorLevel = 276.62298583984, },
+ [40] = { actorLevel = 288.29998779297, },
},
},
}
@@ -2196,14 +3087,14 @@ skills["FulminatingConcoctionPlayer"] = {
baseTypeName = "Fulminating Concoction",
fromTree = true,
color = 4,
- description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Lightning attack damage in an area and inflicting Lightning Exposure.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, },
+ description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Lightning Attack damage in an area with high chance to Shock.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, },
weaponTypes = {
["None"] = true,
},
castTime = 1,
qualityStats = {
- { "lightning_exposure_effect_+%", 1 },
+ { "active_skill_shock_chance_+%_final", 2 },
},
levels = {
[1] = { critChance = 8, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
@@ -2252,7 +3143,7 @@ skills["FulminatingConcoctionPlayer"] = {
label = "Fulminating Concoction",
baseEffectiveness = 4.1999998092651,
incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "throw_flask_lightning",
+ statDescriptionScope = "fulminating_concoction",
statMap = {
["flask_throw_lightning_exposure_ms"] = {
mod("LightningExposureChance", "BASE", nil),
@@ -2269,14 +3160,14 @@ skills["FulminatingConcoctionPlayer"] = {
constantStats = {
{ "flask_throw_base_charges_used", 5 },
{ "base_number_of_projectiles", 1 },
- { "active_skill_base_area_of_effect_radius", 15 },
- { "flask_throw_lightning_exposure_ms", 4000 },
+ { "active_skill_base_area_of_effect_radius", 18 },
{ "throw_flask_effects_type", 2 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_base_weapon_attack_duration_ms", 714 },
{ "active_skill_shock_chance_+%_final", 200 },
+ { "active_skill_shock_effect_+%_final", 50 },
},
stats = {
"main_hand_weapon_minimum_lightning_damage",
@@ -2332,241 +3223,239 @@ skills["FulminatingConcoctionPlayer"] = {
},
}
}
-skills["AmazonTriggerElementalInfusionPlayer"] = {
- name = "Infuse Weapon",
- baseTypeName = "Infuse Weapon",
- fromTree = true,
+skills["FuturePastPlayer"] = {
+ name = "Future-Past",
+ baseTypeName = "Future-Past",
+ fromItem = true,
color = 4,
- description = "Grants your weapon Infusion. Non-Melee Projectile Attacks with that weapon Consume Infusions to Infuse the Projectiles fired, causing them to explode at the end of their flight.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.GeneratesInfusion] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, },
- castTime = 1,
+ description = "Hinekora observes your Future-Past granting you the opportunity to subvert a lesser fate. After a period of Hindsight, she will grant you her Foresight, which prevents you from avoiding Hits while Dodge Rolling. When you are Hit while Dodge Rolling, Hinekora restores you to full Life immediately before taking damage from the Hit, and grants you Sight Beyond Sight, which prevents you from dying.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, },
+ castTime = 0,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.15 },
+ { "base_secondary_skill_effect_duration", 15 },
},
levels = {
- [1] = { baseMultiplier = 0.5, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.55, levelRequirement = 3, },
- [3] = { baseMultiplier = 0.61, levelRequirement = 6, },
- [4] = { baseMultiplier = 0.66, levelRequirement = 10, },
- [5] = { baseMultiplier = 0.72, levelRequirement = 14, },
- [6] = { baseMultiplier = 0.77, levelRequirement = 18, },
- [7] = { baseMultiplier = 0.83, levelRequirement = 22, },
- [8] = { baseMultiplier = 0.88, levelRequirement = 26, },
- [9] = { baseMultiplier = 0.93, levelRequirement = 31, },
- [10] = { baseMultiplier = 0.99, levelRequirement = 36, },
- [11] = { baseMultiplier = 1.05, levelRequirement = 41, },
- [12] = { baseMultiplier = 1.11, levelRequirement = 46, },
- [13] = { baseMultiplier = 1.17, levelRequirement = 52, },
- [14] = { baseMultiplier = 1.25, levelRequirement = 58, },
- [15] = { baseMultiplier = 1.32, levelRequirement = 64, },
- [16] = { baseMultiplier = 1.41, levelRequirement = 66, },
- [17] = { baseMultiplier = 1.5, levelRequirement = 72, },
- [18] = { baseMultiplier = 1.59, levelRequirement = 78, },
- [19] = { baseMultiplier = 1.7, levelRequirement = 84, },
- [20] = { baseMultiplier = 1.81, levelRequirement = 90, },
- [21] = { baseMultiplier = 1.93, levelRequirement = 90, },
- [22] = { baseMultiplier = 2.06, levelRequirement = 90, },
- [23] = { baseMultiplier = 2.2, levelRequirement = 90, },
- [24] = { baseMultiplier = 2.34, levelRequirement = 90, },
- [25] = { baseMultiplier = 2.5, levelRequirement = 90, },
- [26] = { baseMultiplier = 2.67, levelRequirement = 90, },
- [27] = { baseMultiplier = 2.84, levelRequirement = 90, },
- [28] = { baseMultiplier = 3.03, levelRequirement = 90, },
- [29] = { baseMultiplier = 3.24, levelRequirement = 90, },
- [30] = { baseMultiplier = 3.45, levelRequirement = 90, },
- [31] = { baseMultiplier = 3.68, levelRequirement = 90, },
- [32] = { baseMultiplier = 3.93, levelRequirement = 90, },
- [33] = { baseMultiplier = 4.19, levelRequirement = 90, },
- [34] = { baseMultiplier = 4.47, levelRequirement = 90, },
- [35] = { baseMultiplier = 4.76, levelRequirement = 90, },
- [36] = { baseMultiplier = 5.08, levelRequirement = 90, },
- [37] = { baseMultiplier = 5.42, levelRequirement = 90, },
- [38] = { baseMultiplier = 5.78, levelRequirement = 90, },
- [39] = { baseMultiplier = 6.17, levelRequirement = 90, },
- [40] = { baseMultiplier = 6.58, levelRequirement = 90, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Cold-Infused",
+ label = "Future-Past",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "trigger_elemental_infusion",
+ statDescriptionScope = "foresight",
baseFlags = {
- attack = true,
- area = true,
},
constantStats = {
- { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 },
+ { "foresight_clone_duration_ms", 2000 },
+ { "skill_desired_amount_override", 1 },
+ { "base_secondary_skill_effect_duration", 1500 },
},
stats = {
- "is_area_damage",
- "skill_is_infusion_skill",
- "cannot_consume_power_frenzy_endurance_charges",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
- },
- },
- [2] = {
- label = "Fire-Infused",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "trigger_elemental_infusion",
- baseFlags = {
- attack = true,
- area = true,
- },
- constantStats = {
- { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 },
+ "base_skill_effect_duration",
+ "base_deal_no_damage",
},
- stats = {
- "is_area_damage",
- "skill_is_infusion_skill",
- "cannot_consume_power_frenzy_endurance_charges",
+ notMinionStat = {
+ "base_skill_effect_duration",
},
levels = {
- [1] = { baseMultiplier = 0.5, actorLevel = 1, },
- [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
- [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
+ [1] = { 25500, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 25000, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 24500, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 24000, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 23500, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 23000, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 22500, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 22000, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 21500, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 21000, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 20500, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 20000, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 19500, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 19000, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 18500, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 18000, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 17500, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 17000, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 16500, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 16000, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 15500, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 15000, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 14500, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 14000, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 13750, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 13500, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 13250, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 13000, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 12750, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 12500, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 12375, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 12250, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 12125, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 12000, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 11875, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 11750, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 11625, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 11500, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 11375, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 11250, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
- [3] = {
- label = "Lightning-Infused",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "trigger_elemental_infusion",
- baseFlags = {
- attack = true,
- area = true,
+ }
+}
+skills["InevitableAgonyPlayer"] = {
+ name = "Inevitable Agony",
+ baseTypeName = "Inevitable Agony",
+ fromTree = true,
+ color = 4,
+ description = "Curse all targets in an area after a short delay, causing a portion of Damage they take from Hits to be tracked by the Curse debuff. When the debuff's duration expires, they take that tracked damage again, all at once.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0.7,
+ qualityStats = {
+ { "base_curse_delay_+%", -0.5 },
+ },
+ levels = {
+ [1] = { levelRequirement = 0, cost = { Mana = 41, }, },
+ [2] = { levelRequirement = 3, cost = { Mana = 46, }, },
+ [3] = { levelRequirement = 6, cost = { Mana = 52, }, },
+ [4] = { levelRequirement = 10, cost = { Mana = 57, }, },
+ [5] = { levelRequirement = 14, cost = { Mana = 63, }, },
+ [6] = { levelRequirement = 18, cost = { Mana = 69, }, },
+ [7] = { levelRequirement = 22, cost = { Mana = 76, }, },
+ [8] = { levelRequirement = 26, cost = { Mana = 82, }, },
+ [9] = { levelRequirement = 31, cost = { Mana = 89, }, },
+ [10] = { levelRequirement = 36, cost = { Mana = 96, }, },
+ [11] = { levelRequirement = 41, cost = { Mana = 103, }, },
+ [12] = { levelRequirement = 46, cost = { Mana = 110, }, },
+ [13] = { levelRequirement = 52, cost = { Mana = 118, }, },
+ [14] = { levelRequirement = 58, cost = { Mana = 126, }, },
+ [15] = { levelRequirement = 64, cost = { Mana = 134, }, },
+ [16] = { levelRequirement = 66, cost = { Mana = 142, }, },
+ [17] = { levelRequirement = 72, cost = { Mana = 151, }, },
+ [18] = { levelRequirement = 78, cost = { Mana = 160, }, },
+ [19] = { levelRequirement = 84, cost = { Mana = 169, }, },
+ [20] = { levelRequirement = 90, cost = { Mana = 178, }, },
+ [21] = { levelRequirement = 90, cost = { Mana = 188, }, },
+ [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
+ [23] = { levelRequirement = 90, cost = { Mana = 208, }, },
+ [24] = { levelRequirement = 90, cost = { Mana = 219, }, },
+ [25] = { levelRequirement = 90, cost = { Mana = 230, }, },
+ [26] = { levelRequirement = 90, cost = { Mana = 241, }, },
+ [27] = { levelRequirement = 90, cost = { Mana = 253, }, },
+ [28] = { levelRequirement = 90, cost = { Mana = 265, }, },
+ [29] = { levelRequirement = 90, cost = { Mana = 277, }, },
+ [30] = { levelRequirement = 90, cost = { Mana = 289, }, },
+ [31] = { levelRequirement = 90, cost = { Mana = 302, }, },
+ [32] = { levelRequirement = 90, cost = { Mana = 316, }, },
+ [33] = { levelRequirement = 90, cost = { Mana = 329, }, },
+ [34] = { levelRequirement = 90, cost = { Mana = 344, }, },
+ [35] = { levelRequirement = 90, cost = { Mana = 358, }, },
+ [36] = { levelRequirement = 90, cost = { Mana = 373, }, },
+ [37] = { levelRequirement = 90, cost = { Mana = 388, }, },
+ [38] = { levelRequirement = 90, cost = { Mana = 404, }, },
+ [39] = { levelRequirement = 90, cost = { Mana = 420, }, },
+ [40] = { levelRequirement = 90, cost = { Mana = 437, }, },
+ },
+ statSets = {
+ [1] = {
+ label = "Inevitable Agony",
+ incrementalEffectiveness = 0.092720001935959,
+ statDescriptionScope = "synchronisation_of_pain",
+ baseFlags = {
},
constantStats = {
- { "chance_to_be_triggered_by_amazon_infusion_%", 100 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 },
+ { "curse_delay_duration_ms", 1500 },
+ { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
- "is_area_damage",
- "skill_is_infusion_skill",
- "cannot_consume_power_frenzy_endurance_charges",
+ "base_skill_effect_duration",
+ "active_skill_base_area_of_effect_radius",
+ "curse_pain_synchronisation_base_recorded_damage_%_to_apply",
+ "can_perform_skill_while_moving",
+ },
+ notMinionStat = {
+ "base_skill_effect_duration",
},
levels = {
- [1] = { baseMultiplier = 0.5, actorLevel = 1, },
- [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, },
- [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, },
- [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, },
- [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, },
- [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, },
- [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, },
- [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, },
- [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, },
- [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, },
- [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, },
- [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, },
- [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, },
- [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, },
- [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, },
- [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, },
- [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, },
- [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, },
- [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, },
- [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, },
- [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, },
- [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, },
- [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, },
- [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, },
- [25] = { baseMultiplier = 2.5, actorLevel = 136.875, },
- [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, },
- [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, },
- [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, },
- [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, },
- [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, },
- [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, },
- [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, },
- [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, },
- [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, },
- [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, },
- [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, },
- [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, },
- [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, },
- [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, },
- [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, },
+ [1] = { 6000, 15, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 1, },
+ [2] = { 6200, 16, 21, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 6200, 17, 21, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 6200, 18, 22, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 6400, 18, 23, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 6400, 19, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 6400, 20, 24, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 6600, 21, 25, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 6600, 22, 26, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 6600, 23, 27, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 6800, 23, 27, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 6800, 24, 28, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 6800, 25, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 7000, 26, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 7000, 27, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 7000, 28, 31, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 7200, 28, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 7200, 29, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 7200, 30, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 7400, 31, 33, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 7400, 32, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 7400, 33, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 7600, 34, 35, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 7600, 34, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 7600, 35, 37, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, },
+ [26] = { 7800, 36, 37, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 7800, 37, 38, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 7800, 38, 39, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 8000, 39, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 8000, 39, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 8000, 40, 41, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 8200, 40, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 8200, 41, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 8200, 41, 43, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 8400, 42, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 8400, 42, 45, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 8400, 42, 45, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 8600, 43, 46, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 8600, 43, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 8600, 44, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2580,7 +3469,7 @@ skills["IntoTheBreachPlayer"] = {
skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.GeneratesRemnants] = true, },
castTime = 0,
qualityStats = {
- { "breach_flame_spawn_rate_ms", -15 },
+ { "remnant_effect_+%", 0.75 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -2641,48 +3530,49 @@ skills["IntoTheBreachPlayer"] = {
},
stats = {
"breach_flame_spawn_rate_ms",
+ "remnant_effect_+%",
},
levels = {
- [1] = { 1400, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 1390, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 1380, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 1370, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 1360, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 1350, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 1340, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 1330, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 1320, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 1310, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 1300, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 1290, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 1280, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 1270, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 1260, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 1250, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 1240, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 1230, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 1220, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 1210, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 1200, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 1190, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 1180, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 1170, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 1160, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 1150, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 1140, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 1130, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 1120, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 1110, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 1105, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 1100, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 1095, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 1090, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 1085, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 1080, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 1075, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 1070, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 1065, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 1060, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 1400, 0, statInterpolation = { 1, 1, }, actorLevel = 1, },
+ [2] = { 1390, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 1380, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 1370, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
+ [5] = { 1360, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
+ [6] = { 1350, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
+ [7] = { 1340, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
+ [8] = { 1330, 18, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
+ [9] = { 1320, 21, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
+ [10] = { 1310, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
+ [11] = { 1300, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
+ [12] = { 1290, 29, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
+ [13] = { 1280, 31, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
+ [14] = { 1270, 34, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
+ [15] = { 1260, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
+ [16] = { 1250, 39, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
+ [17] = { 1240, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
+ [18] = { 1230, 44, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
+ [19] = { 1220, 47, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
+ [20] = { 1210, 50, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
+ [21] = { 1200, 52, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
+ [22] = { 1190, 54, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
+ [23] = { 1180, 56, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
+ [24] = { 1170, 58, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
+ [25] = { 1160, 60, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
+ [26] = { 1150, 62, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
+ [27] = { 1140, 64, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
+ [28] = { 1130, 66, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
+ [29] = { 1120, 68, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
+ [30] = { 1110, 70, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
+ [31] = { 1105, 72, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
+ [32] = { 1100, 74, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
+ [33] = { 1095, 76, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
+ [34] = { 1090, 78, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
+ [35] = { 1085, 80, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
+ [36] = { 1080, 82, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
+ [37] = { 1075, 84, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
+ [38] = { 1070, 86, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
+ [39] = { 1065, 88, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
+ [40] = { 1060, 90, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -2692,7 +3582,7 @@ skills["LifeRemnantsPlayer"] = {
baseTypeName = "Life Remnants",
fromTree = true,
color = 4,
- description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Critically Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.",
+ description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.",
skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, },
castTime = 0,
qualityStats = {
@@ -2749,7 +3639,7 @@ skills["LifeRemnantsPlayer"] = {
},
constantStats = {
{ "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 25 },
- { "life_remnants_spawn_remnant_on_crit_vs_enemy_every_X_ms", 2000 },
+ { "life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms", 3000 },
{ "skill_desired_amount_override", 1 },
{ "base_remnant_duration_ms", 8000 },
},
@@ -2872,6 +3762,7 @@ skills["Melee1HMacePlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -2988,6 +3879,7 @@ skills["Melee2HMacePlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -3107,122 +3999,7 @@ skills["MeleeMaceMacePlayer"] = {
stats = {
"is_area_damage",
"skill_double_hits_when_dual_wielding",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["ChaosSpearTriggerChaosInfusionPlayer"] = {
- name = "Chaotic Infusion",
- baseTypeName = "Chaotic Infusion",
- fromItem = true,
- color = 4,
- description = "Grants your weapon Infusion. Non-Melee Projectile Attacks with that weapon Consume Infusions to Infuse the first Projectile fired, causing it to explode at the end of its flight.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.GeneratesInfusion] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, },
- castTime = 1,
- qualityStats = {
- },
- levels = {
- [1] = { baseMultiplier = 0.5, levelRequirement = 0, },
- [2] = { baseMultiplier = 0.55, levelRequirement = 3, },
- [3] = { baseMultiplier = 0.61, levelRequirement = 6, },
- [4] = { baseMultiplier = 0.66, levelRequirement = 10, },
- [5] = { baseMultiplier = 0.72, levelRequirement = 14, },
- [6] = { baseMultiplier = 0.77, levelRequirement = 18, },
- [7] = { baseMultiplier = 0.83, levelRequirement = 22, },
- [8] = { baseMultiplier = 0.88, levelRequirement = 26, },
- [9] = { baseMultiplier = 0.93, levelRequirement = 31, },
- [10] = { baseMultiplier = 0.99, levelRequirement = 36, },
- [11] = { baseMultiplier = 1.05, levelRequirement = 41, },
- [12] = { baseMultiplier = 1.11, levelRequirement = 46, },
- [13] = { baseMultiplier = 1.17, levelRequirement = 52, },
- [14] = { baseMultiplier = 1.25, levelRequirement = 58, },
- [15] = { baseMultiplier = 1.32, levelRequirement = 64, },
- [16] = { baseMultiplier = 1.41, levelRequirement = 66, },
- [17] = { baseMultiplier = 1.5, levelRequirement = 72, },
- [18] = { baseMultiplier = 1.59, levelRequirement = 78, },
- [19] = { baseMultiplier = 1.7, levelRequirement = 84, },
- [20] = { baseMultiplier = 1.81, levelRequirement = 90, },
- [21] = { baseMultiplier = 1.93, levelRequirement = 90, },
- [22] = { baseMultiplier = 2.06, levelRequirement = 90, },
- [23] = { baseMultiplier = 2.2, levelRequirement = 90, },
- [24] = { baseMultiplier = 2.34, levelRequirement = 90, },
- [25] = { baseMultiplier = 2.5, levelRequirement = 90, },
- [26] = { baseMultiplier = 2.67, levelRequirement = 90, },
- [27] = { baseMultiplier = 2.84, levelRequirement = 90, },
- [28] = { baseMultiplier = 3.03, levelRequirement = 90, },
- [29] = { baseMultiplier = 3.24, levelRequirement = 90, },
- [30] = { baseMultiplier = 3.45, levelRequirement = 90, },
- [31] = { baseMultiplier = 3.68, levelRequirement = 90, },
- [32] = { baseMultiplier = 3.93, levelRequirement = 90, },
- [33] = { baseMultiplier = 4.19, levelRequirement = 90, },
- [34] = { baseMultiplier = 4.47, levelRequirement = 90, },
- [35] = { baseMultiplier = 4.76, levelRequirement = 90, },
- [36] = { baseMultiplier = 5.08, levelRequirement = 90, },
- [37] = { baseMultiplier = 5.42, levelRequirement = 90, },
- [38] = { baseMultiplier = 5.78, levelRequirement = 90, },
- [39] = { baseMultiplier = 6.17, levelRequirement = 90, },
- [40] = { baseMultiplier = 6.58, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Chaotic Infusion",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "trigger_chaos_infusion",
- baseFlags = {
- attack = true,
- area = true,
- },
- constantStats = {
- { "chance_to_be_triggered_by_chaos_spear_%", 100 },
- { "active_skill_base_area_of_effect_radius", 18 },
- { "active_skill_base_physical_damage_%_to_convert_to_chaos", 100 },
- },
- stats = {
- "is_area_damage",
- "skill_is_infusion_skill",
- "cannot_consume_power_frenzy_endurance_charges",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -3278,7 +4055,7 @@ skills["ManifestWeaponPlayer"] = {
},
color = 4,
description = "Manifest a copy of your main hand Melee Martial Weapon as an immortal Companion to fight by your side. In addition to its standard Strikes, the Manifested Weapon gains an additional Attack depending on its weapon type.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, },
weaponTypes = {
["One Handed Mace"] = true,
@@ -3348,6 +4125,15 @@ skills["ManifestWeaponPlayer"] = {
label = "Manifest Weapon",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
+ statMap = {
+ ["minion_1%_damage_+%_per_X_player_strength"] = {
+ mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }),
+ },
+ ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = {
+ mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }),
+ div = 3,
+ },
+ },
baseFlags = {
spell = true,
minion = true,
@@ -3355,8 +4141,8 @@ skills["ManifestWeaponPlayer"] = {
},
constantStats = {
{ "skill_desired_initial_amount", 1 },
- { "minion_1%_damage_+%_per_X_player_strength", 3 },
- { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 },
+ { "minion_1%_damage_+%_per_X_player_strength", 1 },
+ { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 },
},
stats = {
"is_resummoning_minion",
@@ -3412,52 +4198,52 @@ skills["MeditatePlayer"] = {
fromTree = true,
color = 4,
description = "Channel to Recharge Energy Shield and allow that Recharge to Overflow. Channelling ends when you take damage or your Energy Shield is double its normal maximum. This skill cannot be used if your Energy Shield is already double its normal maximum or you have no maximum Energy Shield.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
{ "meditate_energy_shield_recharge_rate_+%_final", 0.5 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 10, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 9.9, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 9.8, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 9.7, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 9.6, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 9.5, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 9.4, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 9.3, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 9.2, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 9.1, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 9, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 8.9, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 8.8, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 8.7, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 8.6, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 8.5, },
- [17] = { storedUses = 1, levelRequirement = 72, cooldown = 8.4, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 8.3, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 8.2, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 8.1, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 8, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 7.9, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 7.8, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 7.7, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 7.6, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 7.5, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 7.4, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 7.3, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 7.2, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 7.1, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 7.05, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 7, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 6.95, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 6.9, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 6.85, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 6.8, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 6.75, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 6.7, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 6.65, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 6.6, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 7, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 6.9, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 6.8, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 6.7, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 6.6, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 6.5, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 6.4, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 6.3, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 6.2, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 6.1, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 6, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5.9, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5.8, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5.7, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5.6, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5.5, },
+ [17] = { storedUses = 1, levelRequirement = 72, cooldown = 5.4, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5.3, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5.2, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5.1, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 4.9, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 4.8, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 4.7, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 4.6, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 4.5, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 4.4, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 4.3, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 4.2, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 4.1, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 4.05, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 4, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 3.95, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 3.9, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 3.85, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 3.8, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 3.75, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 3.7, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 3.65, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 3.6, },
},
statSets = {
[1] = {
@@ -3469,7 +4255,7 @@ skills["MeditatePlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"meditate_energy_shield_recharge_rate_+%_final",
@@ -3477,46 +4263,46 @@ skills["MeditatePlayer"] = {
"base_deal_no_damage",
},
levels = {
- [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 3, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 4, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 6, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 7, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 9, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 10, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 12, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 13, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 15, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 16, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 18, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 19, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 21, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 22, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 24, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 25, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 27, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 28, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 33, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 34, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 36, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 37, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 39, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 40, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 42, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 43, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 44, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 45, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 45, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 46, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 47, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 48, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 48, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 49, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 50, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 51, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
+ [1] = { 24, statInterpolation = { 1, }, actorLevel = 1, },
+ [2] = { 28, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
+ [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
+ [4] = { 36, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
+ [5] = { 40, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
+ [6] = { 44, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
+ [7] = { 48, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
+ [8] = { 52, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
+ [9] = { 56, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
+ [10] = { 60, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
+ [11] = { 64, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
+ [12] = { 68, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
+ [13] = { 72, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
+ [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
+ [15] = { 80, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
+ [16] = { 84, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
+ [17] = { 88, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
+ [18] = { 92, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
+ [19] = { 96, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
+ [20] = { 100, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
+ [21] = { 104, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
+ [22] = { 108, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
+ [23] = { 112, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
+ [24] = { 116, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
+ [25] = { 120, statInterpolation = { 1, }, actorLevel = 136.875, },
+ [26] = { 124, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
+ [27] = { 128, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
+ [28] = { 132, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
+ [29] = { 136, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
+ [30] = { 140, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
+ [31] = { 144, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
+ [32] = { 148, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
+ [33] = { 152, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
+ [34] = { 156, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
+ [35] = { 160, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
+ [36] = { 164, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
+ [37] = { 168, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
+ [38] = { 172, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
+ [39] = { 176, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
+ [40] = { 180, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
},
},
}
@@ -3527,7 +4313,7 @@ skills["ParryPlayer"] = {
fromTree = true,
color = 4,
description = "Ready your Buckler to parry the next Strike or Projectile that would Hit you, Blocking the Hit and retaliating with a quick sweep that leaves enemies off balance, causing them to take massively increased Attack damage for a short duration. Parrying causes you to accumulate Heavy Stun buildup. You cannot Evade a Hit you could parry, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.",
- skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, },
+ skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -3551,15 +4337,15 @@ skills["ParryPlayer"] = {
shieldAttack = true,
},
constantStats = {
- { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_+%_final_while_performing_action", -50 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "parry_blocked_projectile_distance", 10 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
+ { "base_maximum_active_block_distance", 10 },
{ "base_parry_buff_damage_taken_+%_final_to_apply", 50 },
{ "base_skill_effect_duration", 2000 },
{ "active_skill_hit_damage_stun_multiplier_+%_final", 400 },
{ "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 },
- { "stun_threshold_+%_final_while_performing_action", -65 },
+ { "stun_threshold_+%_final_while_performing_action", -60 },
{ "active_skill_override_turn_duration_ms", 100 },
},
stats = {
@@ -3573,6 +4359,7 @@ skills["ParryPlayer"] = {
"quality_display_base_skill_effect_duration_is_gem",
"base_skill_show_average_damage_instead_of_dps",
"replace_off_hand_unarmed_attack_stats_with_shield_type",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { 0.80000001192093, 1, statInterpolation = { 3, 3, }, actorLevel = 1, },
@@ -3580,141 +4367,40 @@ skills["ParryPlayer"] = {
},
}
}
-skills["PoisonousConcoctionPlayer"] = {
- name = "Poisonous Concoction",
- baseTypeName = "Poisonous Concoction",
- fromTree = true,
- color = 4,
- description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Chaos attack damage in an area. Poison inflicted by this skill has more effect.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, },
- weaponTypes = {
- ["None"] = true,
- },
- castTime = 1,
- qualityStats = {
- { "faster_poison_%", 1 },
- },
- levels = {
- [1] = { critChance = 5, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
- [2] = { critChance = 5, baseMultiplier = 0.77, levelRequirement = 3, cost = { Mana = 0, }, },
- [3] = { critChance = 5, baseMultiplier = 0.84, levelRequirement = 6, cost = { Mana = 0, }, },
- [4] = { critChance = 5, baseMultiplier = 0.92, levelRequirement = 10, cost = { Mana = 0, }, },
- [5] = { critChance = 5, baseMultiplier = 0.99, levelRequirement = 14, cost = { Mana = 0, }, },
- [6] = { critChance = 5, baseMultiplier = 1.05, levelRequirement = 18, cost = { Mana = 0, }, },
- [7] = { critChance = 5, baseMultiplier = 1.12, levelRequirement = 22, cost = { Mana = 0, }, },
- [8] = { critChance = 5, baseMultiplier = 1.18, levelRequirement = 26, cost = { Mana = 0, }, },
- [9] = { critChance = 5, baseMultiplier = 1.23, levelRequirement = 31, cost = { Mana = 0, }, },
- [10] = { critChance = 5, baseMultiplier = 1.28, levelRequirement = 36, cost = { Mana = 0, }, },
- [11] = { critChance = 5, baseMultiplier = 1.34, levelRequirement = 41, cost = { Mana = 0, }, },
- [12] = { critChance = 5, baseMultiplier = 1.39, levelRequirement = 46, cost = { Mana = 0, }, },
- [13] = { critChance = 5, baseMultiplier = 1.44, levelRequirement = 52, cost = { Mana = 0, }, },
- [14] = { critChance = 5, baseMultiplier = 1.5, levelRequirement = 58, cost = { Mana = 0, }, },
- [15] = { critChance = 5, baseMultiplier = 1.55, levelRequirement = 64, cost = { Mana = 0, }, },
- [16] = { critChance = 5, baseMultiplier = 1.61, levelRequirement = 66, cost = { Mana = 0, }, },
- [17] = { critChance = 5, baseMultiplier = 1.67, levelRequirement = 72, cost = { Mana = 0, }, },
- [18] = { critChance = 5, baseMultiplier = 1.73, levelRequirement = 78, cost = { Mana = 0, }, },
- [19] = { critChance = 5, baseMultiplier = 1.79, levelRequirement = 84, cost = { Mana = 0, }, },
- [20] = { critChance = 5, baseMultiplier = 1.85, levelRequirement = 90, cost = { Mana = 0, }, },
- [21] = { critChance = 5, baseMultiplier = 1.91, levelRequirement = 90, cost = { Mana = 0, }, },
- [22] = { critChance = 5, baseMultiplier = 1.97, levelRequirement = 90, cost = { Mana = 0, }, },
- [23] = { critChance = 5, baseMultiplier = 2.04, levelRequirement = 90, cost = { Mana = 0, }, },
- [24] = { critChance = 5, baseMultiplier = 2.1, levelRequirement = 90, cost = { Mana = 0, }, },
- [25] = { critChance = 5, baseMultiplier = 2.17, levelRequirement = 90, cost = { Mana = 0, }, },
- [26] = { critChance = 5, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, },
- [27] = { critChance = 5, baseMultiplier = 2.32, levelRequirement = 90, cost = { Mana = 0, }, },
- [28] = { critChance = 5, baseMultiplier = 2.4, levelRequirement = 90, cost = { Mana = 0, }, },
- [29] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 90, cost = { Mana = 0, }, },
- [30] = { critChance = 5, baseMultiplier = 2.56, levelRequirement = 90, cost = { Mana = 0, }, },
- [31] = { critChance = 5, baseMultiplier = 2.64, levelRequirement = 90, cost = { Mana = 0, }, },
- [32] = { critChance = 5, baseMultiplier = 2.73, levelRequirement = 90, cost = { Mana = 0, }, },
- [33] = { critChance = 5, baseMultiplier = 2.82, levelRequirement = 90, cost = { Mana = 0, }, },
- [34] = { critChance = 5, baseMultiplier = 2.91, levelRequirement = 90, cost = { Mana = 0, }, },
- [35] = { critChance = 5, baseMultiplier = 3.01, levelRequirement = 90, cost = { Mana = 0, }, },
- [36] = { critChance = 5, baseMultiplier = 3.11, levelRequirement = 90, cost = { Mana = 0, }, },
- [37] = { critChance = 5, baseMultiplier = 3.21, levelRequirement = 90, cost = { Mana = 0, }, },
- [38] = { critChance = 5, baseMultiplier = 3.32, levelRequirement = 90, cost = { Mana = 0, }, },
- [39] = { critChance = 5, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, },
- [40] = { critChance = 5, baseMultiplier = 3.55, levelRequirement = 90, cost = { Mana = 0, }, },
+skills["PinnacleOfPowerPlayer"] = {
+ name = "Pinnacle of Power",
+ baseTypeName = "Pinnacle of Power",
+ fromItem = true,
+ color = 4,
+ description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
+ castTime = 0,
+ qualityStats = {
+ { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 },
+ },
+ levels = {
+ [20] = { storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 93, }, },
},
statSets = {
[1] = {
- label = "Poisonous Concoction",
- baseEffectiveness = 3.9000000953674,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "throw_flask_poison",
- statMap = {
- ["flask_throw_poison_effect_+%_final"] = {
- mod("AilmentMagnitude", "MORE", nil, 0, KeywordFlag.Poison),
- },
- },
+ label = "Pinnacle of Power",
+ incrementalEffectiveness = 0.054999999701977,
+ statDescriptionScope = "elemental_power",
baseFlags = {
- attack = true,
- projectile = true,
- unarmed = true,
- area = true,
+ buff = true,
+ duration = true,
},
constantStats = {
- { "flask_throw_base_charges_used", 5 },
- { "base_number_of_projectiles", 1 },
- { "active_skill_base_area_of_effect_radius", 15 },
- { "flask_throw_poison_effect_+%_final", 200 },
- { "throw_flask_effects_type", 4 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "main_hand_base_weapon_attack_duration_ms", 714 },
- { "base_chance_to_poison_on_hit_%", 100 },
+ { "elemental_power_buff_duration_per_power_charge_ms", 5000 },
+ { "elemental_power_elemental_damage_+%_final_per_power_charge", 8 },
},
stats = {
- "main_hand_weapon_minimum_physical_damage",
- "main_hand_weapon_maximum_physical_damage",
- "base_is_projectile",
- "projectile_behaviour_only_explode",
- "can_perform_skill_while_moving",
- "replace_main_hand_unarmed_attack_stats_with_nothing_type",
- "is_area_damage",
+ "base_skill_is_instant",
+ "base_deal_no_damage",
+ "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem",
},
levels = {
- [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 164, 246, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 222, 332, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 264, 396, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 357, 536, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 382, 574, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 435, 653, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 463, 694, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 550, 824, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 611, 917, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 643, 965, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 676, 1014, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 709, 1064, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 744, 1115, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 814, 1221, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 851, 1276, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 926, 1389, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 965, 1447, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
+ [20] = { actorLevel = 60, },
},
},
}
@@ -3785,6 +4471,7 @@ skills["MeleeUnarmedPlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -3901,6 +4588,7 @@ skills["MeleeQuarterstaffPlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -3952,8 +4640,8 @@ skills["ShieldBlockPlayer"] = {
baseTypeName = "Raise Shield",
fromItem = true,
color = 4,
- description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking to perform a Shield Bash that damages and Stuns enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.",
- skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, },
+ description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking when an enemy is close to perform a Shield Bash, damaging and Stunning enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.",
+ skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, [SkillType.NoAttackInPlace] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -3972,16 +4660,15 @@ skills["ShieldBlockPlayer"] = {
melee = true,
},
constantStats = {
- { "movement_speed_+%_final_while_performing_action", -70 },
+ { "movement_speed_+%_final_while_performing_action", -50 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "channel_skill_end_animation_duration_override_ms", 35 },
{ "active_block_light_stun_threshold_+%_final", 50 },
{ "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 },
{ "skill_animation_duration_multiplier_override", 4 },
{ "base_minimum_channel_time_ms", 250 },
{ "raise_shield_base_retaliation_duration_ms", 1000 },
- { "raise_shield_blocked_projectile_distance", 10 },
{ "active_skill_hit_damage_stun_multiplier_+%_final", 600 },
{ "melee_strike_bonus_attack_distance", 14 },
{ "off_hand_minimum_added_physical_damage_per_5_shield_armour", 3 },
@@ -3997,6 +4684,7 @@ skills["ShieldBlockPlayer"] = {
"base_skill_show_average_damage_instead_of_dps",
"replace_off_hand_unarmed_attack_stats_with_shield_type",
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4010,7 +4698,7 @@ skills["RitualSacrificePlayer"] = {
fromTree = true,
color = 4,
description = "Sacrifice the Corpse of a Rare Monster to grant you its Modifiers for a duration.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.TargetsDestructibleRareCorpses] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.TargetsDestructibleRareCorpses] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 5,
qualityStats = {
{ "base_skill_effect_duration", 100 },
@@ -4070,13 +4758,16 @@ skills["RitualSacrificePlayer"] = {
{ "head_hunt_%_life_to_remove_on_self_stab", 20 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
},
stats = {
"base_skill_effect_duration",
"can_perform_skill_while_moving",
"quality_display_base_skill_effect_duration_is_gem",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 15000, statInterpolation = { 1, }, actorLevel = 1, },
[2] = { 15250, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
@@ -4127,14 +4818,14 @@ skills["ShatteringConcoctionPlayer"] = {
baseTypeName = "Shattering Concoction",
fromTree = true,
color = 4,
- description = "Consume charges from your Mana Flask to throw a bottle that explodes, dealing Cold attack damage in an area and inflicting Cold Exposure.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, },
+ description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Cold Attack damage in an area and inflicting Exposure.",
+ skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackInPlace] = true, [SkillType.GroundTargetedProjectile] = true, },
weaponTypes = {
["None"] = true,
},
castTime = 1,
qualityStats = {
- { "cold_exposure_effect_+%", 1 },
+ { "freeze_duration_+%", 1 },
},
levels = {
[1] = { critChance = 11, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, },
@@ -4183,7 +4874,7 @@ skills["ShatteringConcoctionPlayer"] = {
label = "Shattering Concoction",
baseEffectiveness = 3.9000000953674,
incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "throw_flask_cold",
+ statDescriptionScope = "shattering_concoction",
statMap = {
["flask_throw_cold_exposure_ms"] = {
mod("ColdExposureChance", "BASE", nil),
@@ -4200,14 +4891,12 @@ skills["ShatteringConcoctionPlayer"] = {
constantStats = {
{ "flask_throw_base_charges_used", 5 },
{ "base_number_of_projectiles", 1 },
- { "active_skill_base_area_of_effect_radius", 15 },
- { "flask_throw_cold_exposure_ms", 4000 },
+ { "active_skill_base_area_of_effect_radius", 18 },
{ "throw_flask_effects_type", 1 },
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_base_weapon_attack_duration_ms", 714 },
- { "active_skill_hit_damage_freeze_multiplier_+%_final", 200 },
},
stats = {
"main_hand_weapon_minimum_cold_damage",
@@ -4217,6 +4906,9 @@ skills["ShatteringConcoctionPlayer"] = {
"can_perform_skill_while_moving",
"replace_main_hand_unarmed_attack_stats_with_nothing_type",
"is_area_damage",
+ "has_freeze_cull",
+ "inflict_all_exposure_on_hit",
+ "active_skill_show_freeze_range",
},
levels = {
[1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, },
@@ -4272,7 +4964,7 @@ skills["SorceryWardPlayer"] = {
skillTypes = { [SkillType.Spell] = true, [SkillType.Aegis] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, },
castTime = 1,
qualityStats = {
- { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.5 },
+ { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.25 },
},
levels = {
[1] = { levelRequirement = 0, },
@@ -4448,6 +5140,7 @@ skills["MeleeSpearOffHandPlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4565,6 +5258,7 @@ skills["MeleeSpearPlayer"] = {
},
stats = {
"is_area_damage",
+ "precise_cursor_targeting_uses_contact_point_height_offset",
},
levels = {
[1] = { actorLevel = 1, },
@@ -4617,7 +5311,7 @@ skills["SpearThrowPlayer"] = {
fromItem = true,
color = 4,
description = "Hurl your Spear with force. Consumes a Frenzy Charge if you have one to cause the Spear to explode at the end of its flight.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanRapidFire] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Spear"] = true,
},
@@ -4678,7 +5372,7 @@ skills["SpearThrowPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_weapon_range_+", 105 },
},
stats = {
@@ -4744,7 +5438,7 @@ skills["SpearThrowPlayer"] = {
constantStats = {
{ "movement_speed_+%_final_while_performing_action", -70 },
{ "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
+ { "movement_speed_while_performing_action_locked_duration_%", 50 },
{ "main_hand_weapon_range_+", 105 },
{ "active_skill_base_area_of_effect_radius", 20 },
},
@@ -4873,7 +5567,7 @@ skills["SummonInfernalHoundPlayer"] = {
constantStats = {
{ "display_minion_monster_type", 8 },
{ "infernal_familiar_minion_burns_for_%_max_life", 20 },
- { "infernal_familiar_minion_burn_radius", 15 },
+ { "infernal_familiar_minion_burn_radius", 25 },
{ "skill_desired_initial_amount", 1 },
},
stats = {
@@ -4929,10 +5623,11 @@ skills["SupportingFirePlayer"] = {
baseTypeName = "Supporting Fire",
fromTree = true,
minionList = {
+ "TacticianMinion",
},
color = 4,
description = "Recruit artillery Minions that takes up positions behind you. They will lay in wait for your Command then fire volleys of arrows at the target location.",
- skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, },
+ skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.NoAttackInPlace] = true, },
minionSkillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, },
castTime = 0,
qualityStats = {
@@ -4985,84 +5680,26 @@ skills["SupportingFirePlayer"] = {
label = "Minion Info",
incrementalEffectiveness = 0.054999999701977,
statDescriptionScope = "skill_stat_descriptions",
- baseFlags = {
- minion = true,
- permanentMinion = true,
- },
- constantStats = {
- { "minion_1%_damage_+%_per_X_player_strength", 3 },
- { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 },
- { "skill_desired_amount_override", 1 },
- },
- stats = {
- "display_statset_no_hit_damage",
- },
- levels = {
- [1] = { actorLevel = 1, },
- [2] = { actorLevel = 3.4519999027252, },
- [3] = { actorLevel = 6.7670001983643, },
- [4] = { actorLevel = 10.307999610901, },
- [5] = { actorLevel = 14.074999809265, },
- [6] = { actorLevel = 18.068000793457, },
- [7] = { actorLevel = 22.287000656128, },
- [8] = { actorLevel = 26.732000350952, },
- [9] = { actorLevel = 31.40299987793, },
- [10] = { actorLevel = 36.299999237061, },
- [11] = { actorLevel = 41.423000335693, },
- [12] = { actorLevel = 46.771999359131, },
- [13] = { actorLevel = 52.34700012207, },
- [14] = { actorLevel = 58.147998809814, },
- [15] = { actorLevel = 64.175003051758, },
- [16] = { actorLevel = 70.428001403809, },
- [17] = { actorLevel = 76.906997680664, },
- [18] = { actorLevel = 83.611999511719, },
- [19] = { actorLevel = 90.542999267578, },
- [20] = { actorLevel = 97.699996948242, },
- [21] = { actorLevel = 105.08300018311, },
- [22] = { actorLevel = 112.69200134277, },
- [23] = { actorLevel = 120.52700042725, },
- [24] = { actorLevel = 128.58799743652, },
- [25] = { actorLevel = 136.875, },
- [26] = { actorLevel = 145.38800048828, },
- [27] = { actorLevel = 154.12699890137, },
- [28] = { actorLevel = 163.09199523926, },
- [29] = { actorLevel = 172.28300476074, },
- [30] = { actorLevel = 181.69999694824, },
- [31] = { actorLevel = 191.34300231934, },
- [32] = { actorLevel = 201.21200561523, },
- [33] = { actorLevel = 211.30700683594, },
- [34] = { actorLevel = 221.62800598145, },
- [35] = { actorLevel = 232.17500305176, },
- [36] = { actorLevel = 242.94799804688, },
- [37] = { actorLevel = 253.94700622559, },
- [38] = { actorLevel = 265.17199707031, },
- [39] = { actorLevel = 276.62298583984, },
- [40] = { actorLevel = 288.29998779297, },
+ statMap = {
+ ["minion_1%_damage_+%_per_X_player_strength"] = {
+ mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }),
+ },
+ ["minion_1%_area_of_effect_+%_per_X_player_dexterity"] = {
+ mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }),
+ div = 3,
+ },
},
- },
- [2] = {
- label = "Command",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
minion = true,
permanentMinion = true,
},
constantStats = {
- { "minion_1%_damage_+%_per_X_player_strength", 3 },
- { "minion_1%_accuracy_rating_+%_per_X_player_dexterity", 3 },
+ { "minion_1%_damage_+%_per_X_player_strength", 1 },
+ { "minion_1%_area_of_effect_+%_per_X_player_dexterity", 3 },
{ "skill_desired_amount_override", 1 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
},
stats = {
"display_statset_no_hit_damage",
- "minions_do_not_move_to_skill_target",
- "can_perform_skill_while_moving",
- "skill_is_command",
- "base_deal_no_damage",
- "use_supporting_fire_settings",
},
levels = {
[1] = { actorLevel = 1, },
@@ -5115,7 +5752,7 @@ skills["TemperWeaponPlayer"] = {
fromTree = true,
color = 4,
description = "Channel to temper your main hand Melee Martial Weapon. Each hit of the hammer against the anvil Empowers subsequent Attacks to Combust when Hitting enemies.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["One Handed Mace"] = true,
["Flail"] = true,
@@ -5134,46 +5771,46 @@ skills["TemperWeaponPlayer"] = {
{ "skill_speed_+%", 1 },
},
levels = {
- [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { ManaPerMinute = 180, }, },
- [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { ManaPerMinute = 199, }, },
- [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { ManaPerMinute = 221, }, },
- [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { ManaPerMinute = 244, }, },
- [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { ManaPerMinute = 271, }, },
- [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { ManaPerMinute = 300, }, },
- [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { ManaPerMinute = 333, }, },
- [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { ManaPerMinute = 369, }, },
- [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { ManaPerMinute = 409, }, },
- [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { ManaPerMinute = 453, }, },
- [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { ManaPerMinute = 502, }, },
- [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { ManaPerMinute = 556, }, },
- [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { ManaPerMinute = 616, }, },
- [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { ManaPerMinute = 683, }, },
- [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { ManaPerMinute = 757, }, },
- [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { ManaPerMinute = 839, }, },
+ [1] = { storedUses = 1, levelRequirement = 0, cooldown = 5, cost = { ManaPerMinute = 174, }, },
+ [2] = { storedUses = 1, levelRequirement = 3, cooldown = 5, cost = { ManaPerMinute = 201, }, },
+ [3] = { storedUses = 1, levelRequirement = 6, cooldown = 5, cost = { ManaPerMinute = 231, }, },
+ [4] = { storedUses = 1, levelRequirement = 10, cooldown = 5, cost = { ManaPerMinute = 262, }, },
+ [5] = { storedUses = 1, levelRequirement = 14, cooldown = 5, cost = { ManaPerMinute = 296, }, },
+ [6] = { storedUses = 1, levelRequirement = 18, cooldown = 5, cost = { ManaPerMinute = 332, }, },
+ [7] = { storedUses = 1, levelRequirement = 22, cooldown = 5, cost = { ManaPerMinute = 371, }, },
+ [8] = { storedUses = 1, levelRequirement = 26, cooldown = 5, cost = { ManaPerMinute = 412, }, },
+ [9] = { storedUses = 1, levelRequirement = 31, cooldown = 5, cost = { ManaPerMinute = 456, }, },
+ [10] = { storedUses = 1, levelRequirement = 36, cooldown = 5, cost = { ManaPerMinute = 503, }, },
+ [11] = { storedUses = 1, levelRequirement = 41, cooldown = 5, cost = { ManaPerMinute = 553, }, },
+ [12] = { storedUses = 1, levelRequirement = 46, cooldown = 5, cost = { ManaPerMinute = 606, }, },
+ [13] = { storedUses = 1, levelRequirement = 52, cooldown = 5, cost = { ManaPerMinute = 663, }, },
+ [14] = { storedUses = 1, levelRequirement = 58, cooldown = 5, cost = { ManaPerMinute = 724, }, },
+ [15] = { storedUses = 1, levelRequirement = 64, cooldown = 5, cost = { ManaPerMinute = 789, }, },
+ [16] = { storedUses = 1, levelRequirement = 66, cooldown = 5, cost = { ManaPerMinute = 857, }, },
[17] = { storedUses = 1, levelRequirement = 72, cooldown = 5, cost = { ManaPerMinute = 930, }, },
- [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { ManaPerMinute = 1030, }, },
- [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { ManaPerMinute = 1142, }, },
- [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1265, }, },
- [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1402, }, },
- [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1553, }, },
- [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1721, }, },
- [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1908, }, },
- [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2114, }, },
- [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2342, }, },
- [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2596, }, },
- [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2876, }, },
- [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3187, }, },
- [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3532, }, },
- [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3914, }, },
- [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4337, }, },
- [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4806, }, },
- [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 5325, }, },
- [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 5901, }, },
- [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 6539, }, },
- [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 7246, }, },
- [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 8029, }, },
- [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 8897, }, },
- [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 9859, }, },
+ [18] = { storedUses = 1, levelRequirement = 78, cooldown = 5, cost = { ManaPerMinute = 1008, }, },
+ [19] = { storedUses = 1, levelRequirement = 84, cooldown = 5, cost = { ManaPerMinute = 1091, }, },
+ [20] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1179, }, },
+ [21] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1272, }, },
+ [22] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1371, }, },
+ [23] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1476, }, },
+ [24] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1588, }, },
+ [25] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1706, }, },
+ [26] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1831, }, },
+ [27] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 1964, }, },
+ [28] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2105, }, },
+ [29] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2254, }, },
+ [30] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2412, }, },
+ [31] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2580, }, },
+ [32] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2757, }, },
+ [33] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 2944, }, },
+ [34] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3143, }, },
+ [35] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3352, }, },
+ [36] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3574, }, },
+ [37] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 3809, }, },
+ [38] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4057, }, },
+ [39] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4319, }, },
+ [40] = { storedUses = 1, levelRequirement = 90, cooldown = 5, cost = { ManaPerMinute = 4596, }, },
},
statSets = {
[1] = {
@@ -5704,7 +6341,7 @@ skills["UnboundAvatarPlayer"] = {
fromTree = true,
color = 4,
description = "Gain Unbound Fury by inflicting Elemental Ailments with Hits on enemies. Once you reach maximum Unbound Fury, consume it to become Unbound for a duration, vastly augmenting your Elemental prowess.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, },
+ skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 0,
qualityStats = {
{ "base_skill_effect_duration", 50 },
@@ -5763,13 +6400,16 @@ skills["UnboundAvatarPlayer"] = {
{ "display_ailment_bearer_charge_interval", 1 },
{ "ailment_bearer_elemental_damage_+%_final", 40 },
{ "unbound_ailment_elemental_ailment_chance_+%_final", 80 },
- { "unbound_ailment_elemental_ailment_buildup_+%_final", 40 },
+ { "unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final", 40 },
{ "ailment_bearer_required_stacks_to_use", 100 },
},
stats = {
"base_skill_effect_duration",
"base_deal_no_damage",
},
+ notMinionStat = {
+ "base_skill_effect_duration",
+ },
levels = {
[1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, },
[2] = { 8100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
@@ -5815,206 +6455,84 @@ skills["UnboundAvatarPlayer"] = {
},
}
}
-skills["UniqueBreachLightningBoltPlayer"] = {
- name = "Lightning Bolt",
- baseTypeName = "Lightning Bolt",
- fromItem = true,
- color = 3,
- description = "Call down a Shocking bolt of Lightning to strike enemies in a small area.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cascadable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, },
- castTime = 0.85,
- qualityStats = {
- },
- levels = {
- [1] = { critChance = 10, storedUses = 1, levelRequirement = 0, cooldown = 0.5, cost = { Mana = 0, }, },
- [2] = { critChance = 10, storedUses = 1, levelRequirement = 3, cooldown = 0.5, cost = { Mana = 0, }, },
- [3] = { critChance = 10, storedUses = 1, levelRequirement = 6, cooldown = 0.5, cost = { Mana = 0, }, },
- [4] = { critChance = 10, storedUses = 1, levelRequirement = 10, cooldown = 0.5, cost = { Mana = 0, }, },
- [5] = { critChance = 10, storedUses = 1, levelRequirement = 14, cooldown = 0.5, cost = { Mana = 0, }, },
- [6] = { critChance = 10, storedUses = 1, levelRequirement = 18, cooldown = 0.5, cost = { Mana = 0, }, },
- [7] = { critChance = 10, storedUses = 1, levelRequirement = 22, cooldown = 0.5, cost = { Mana = 0, }, },
- [8] = { critChance = 10, storedUses = 1, levelRequirement = 26, cooldown = 0.5, cost = { Mana = 0, }, },
- [9] = { critChance = 10, storedUses = 1, levelRequirement = 31, cooldown = 0.5, cost = { Mana = 0, }, },
- [10] = { critChance = 10, storedUses = 1, levelRequirement = 36, cooldown = 0.5, cost = { Mana = 0, }, },
- [11] = { critChance = 10, storedUses = 1, levelRequirement = 41, cooldown = 0.5, cost = { Mana = 0, }, },
- [12] = { critChance = 10, storedUses = 1, levelRequirement = 46, cooldown = 0.5, cost = { Mana = 0, }, },
- [13] = { critChance = 10, storedUses = 1, levelRequirement = 52, cooldown = 0.5, cost = { Mana = 0, }, },
- [14] = { critChance = 10, storedUses = 1, levelRequirement = 58, cooldown = 0.5, cost = { Mana = 0, }, },
- [15] = { critChance = 10, storedUses = 1, levelRequirement = 64, cooldown = 0.5, cost = { Mana = 0, }, },
- [16] = { critChance = 10, storedUses = 1, levelRequirement = 66, cooldown = 0.5, cost = { Mana = 0, }, },
- [17] = { critChance = 10, storedUses = 1, levelRequirement = 72, cooldown = 0.5, cost = { Mana = 0, }, },
- [18] = { critChance = 10, storedUses = 1, levelRequirement = 78, cooldown = 0.5, cost = { Mana = 0, }, },
- [19] = { critChance = 10, storedUses = 1, levelRequirement = 84, cooldown = 0.5, cost = { Mana = 0, }, },
- [20] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [21] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [22] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [23] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [24] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [25] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [26] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [27] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [28] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [29] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [30] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [31] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [32] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [33] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [34] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [35] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [36] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [37] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [38] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [39] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- [40] = { critChance = 10, storedUses = 1, levelRequirement = 90, cooldown = 0.5, cost = { Mana = 0, }, },
- },
- statSets = {
- [1] = {
- label = "Lightning Bolt",
- baseEffectiveness = 2.2999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "lightning_bolt",
- baseFlags = {
- spell = true,
- area = true,
- },
- constantStats = {
- { "active_skill_shock_chance_+%_final", 200 },
- { "active_skill_base_area_of_effect_radius", 8 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "triggered_on_critical_strike_%", 100 },
- },
- stats = {
- "spell_minimum_base_lightning_damage",
- "spell_maximum_base_lightning_damage",
- "is_area_damage",
- "can_perform_skill_while_moving",
- },
- levels = {
- [1] = { 1, 17, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 1, 23, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 2, 32, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 2, 42, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 3, 53, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 3, 65, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 4, 78, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 5, 93, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 6, 110, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 7, 128, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 8, 149, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 9, 172, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 10, 197, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 12, 225, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 13, 256, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 15, 291, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 17, 330, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 20, 373, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 22, 422, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 25, 475, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 28, 535, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 32, 602, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 36, 677, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 40, 760, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 45, 854, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 50, 958, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 57, 1075, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 64, 1207, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 71, 1354, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 80, 1519, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 90, 1705, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 101, 1914, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 113, 2150, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 127, 2415, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 143, 2714, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 161, 3051, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 181, 3433, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 203, 3864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 229, 4352, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 258, 4905, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["CrossbowRequiemAmmoPlayer"] = {
- name = "Compose Requiem",
- baseTypeName = "Compose Requiem",
- fromItem = true,
- color = 1,
- description = "Your weapon passively accumulates anguish from the tormented souls within. When fully charged, use this skill to compose the Requiem, transforming your Crossbow shot into a torrent of anguish for a short, fixed amount of time. Does not use Ammunition.",
- skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, },
+skills["VoidIllusionPlayer"] = {
+ name = "Void Illusion",
+ baseTypeName = "Void Illusion",
+ fromTree = true,
+ color = 4,
+ description = "While active, creates a short-lived illusory copy of yourself whenever you dodge roll. The copy can be damaged by enemies, and copies that are destroyed by an enemy will cause damaging explosions. Copies created this way have 1 Life.",
+ skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
+ ["None"] = true,
+ ["One Handed Mace"] = true,
+ ["Flail"] = true,
+ ["Two Handed Sword"] = true,
+ ["Dagger"] = true,
+ ["Claw"] = true,
["Crossbow"] = true,
+ ["Bow"] = true,
+ ["Spear"] = true,
+ ["Two Handed Axe"] = true,
+ ["Two Handed Mace"] = true,
+ ["One Handed Axe"] = true,
+ ["Staff"] = true,
+ ["One Handed Sword"] = true,
},
- castTime = 1,
+ castTime = 0,
qualityStats = {
},
levels = {
- [1] = { levelRequirement = 0, cost = { Mana = 23, }, },
- [2] = { levelRequirement = 3, cost = { Mana = 25, }, },
- [3] = { levelRequirement = 6, cost = { Mana = 28, }, },
- [4] = { levelRequirement = 10, cost = { Mana = 31, }, },
- [5] = { levelRequirement = 14, cost = { Mana = 34, }, },
- [6] = { levelRequirement = 18, cost = { Mana = 38, }, },
- [7] = { levelRequirement = 22, cost = { Mana = 42, }, },
- [8] = { levelRequirement = 26, cost = { Mana = 47, }, },
- [9] = { levelRequirement = 31, cost = { Mana = 52, }, },
- [10] = { levelRequirement = 36, cost = { Mana = 57, }, },
- [11] = { levelRequirement = 41, cost = { Mana = 64, }, },
- [12] = { levelRequirement = 46, cost = { Mana = 71, }, },
- [13] = { levelRequirement = 52, cost = { Mana = 78, }, },
- [14] = { levelRequirement = 58, cost = { Mana = 87, }, },
- [15] = { levelRequirement = 64, cost = { Mana = 96, }, },
- [16] = { levelRequirement = 66, cost = { Mana = 107, }, },
- [17] = { levelRequirement = 72, cost = { Mana = 118, }, },
- [18] = { levelRequirement = 78, cost = { Mana = 131, }, },
- [19] = { levelRequirement = 84, cost = { Mana = 145, }, },
- [20] = { levelRequirement = 90, cost = { Mana = 161, }, },
- [21] = { levelRequirement = 90, cost = { Mana = 179, }, },
- [22] = { levelRequirement = 90, cost = { Mana = 198, }, },
- [23] = { levelRequirement = 90, cost = { Mana = 220, }, },
- [24] = { levelRequirement = 90, cost = { Mana = 243, }, },
- [25] = { levelRequirement = 90, cost = { Mana = 270, }, },
- [26] = { levelRequirement = 90, cost = { Mana = 299, }, },
- [27] = { levelRequirement = 90, cost = { Mana = 331, }, },
- [28] = { levelRequirement = 90, cost = { Mana = 367, }, },
- [29] = { levelRequirement = 90, cost = { Mana = 407, }, },
- [30] = { levelRequirement = 90, cost = { Mana = 451, }, },
- [31] = { levelRequirement = 90, cost = { Mana = 500, }, },
- [32] = { levelRequirement = 90, cost = { Mana = 554, }, },
- [33] = { levelRequirement = 90, cost = { Mana = 614, }, },
- [34] = { levelRequirement = 90, cost = { Mana = 680, }, },
- [35] = { levelRequirement = 90, cost = { Mana = 754, }, },
- [36] = { levelRequirement = 90, cost = { Mana = 835, }, },
- [37] = { levelRequirement = 90, cost = { Mana = 925, }, },
- [38] = { levelRequirement = 90, cost = { Mana = 1026, }, },
- [39] = { levelRequirement = 90, cost = { Mana = 1136, }, },
- [40] = { levelRequirement = 90, cost = { Mana = 1259, }, },
+ [1] = { levelRequirement = 0, },
+ [2] = { levelRequirement = 3, },
+ [3] = { levelRequirement = 6, },
+ [4] = { levelRequirement = 10, },
+ [5] = { levelRequirement = 14, },
+ [6] = { levelRequirement = 18, },
+ [7] = { levelRequirement = 22, },
+ [8] = { levelRequirement = 26, },
+ [9] = { levelRequirement = 31, },
+ [10] = { levelRequirement = 36, },
+ [11] = { levelRequirement = 41, },
+ [12] = { levelRequirement = 46, },
+ [13] = { levelRequirement = 52, },
+ [14] = { levelRequirement = 58, },
+ [15] = { levelRequirement = 64, },
+ [16] = { levelRequirement = 66, },
+ [17] = { levelRequirement = 72, },
+ [18] = { levelRequirement = 78, },
+ [19] = { levelRequirement = 84, },
+ [20] = { levelRequirement = 90, },
+ [21] = { levelRequirement = 90, },
+ [22] = { levelRequirement = 90, },
+ [23] = { levelRequirement = 90, },
+ [24] = { levelRequirement = 90, },
+ [25] = { levelRequirement = 90, },
+ [26] = { levelRequirement = 90, },
+ [27] = { levelRequirement = 90, },
+ [28] = { levelRequirement = 90, },
+ [29] = { levelRequirement = 90, },
+ [30] = { levelRequirement = 90, },
+ [31] = { levelRequirement = 90, },
+ [32] = { levelRequirement = 90, },
+ [33] = { levelRequirement = 90, },
+ [34] = { levelRequirement = 90, },
+ [35] = { levelRequirement = 90, },
+ [36] = { levelRequirement = 90, },
+ [37] = { levelRequirement = 90, },
+ [38] = { levelRequirement = 90, },
+ [39] = { levelRequirement = 90, },
+ [40] = { levelRequirement = 90, },
},
statSets = {
[1] = {
- label = "Compose Requiem",
+ label = "Buff",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "rapid_shot_requiem_ammo",
+ statDescriptionScope = "skill_stat_descriptions",
baseFlags = {
},
- constantStats = {
- { "action_allowed_queue_time_override_ms", 1000 },
- { "movement_speed_+%_final_while_performing_action", -30 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "rapidshot_requiem_number_of_stacks_per_minute", 200 },
- { "rapidshot_requiem_base_buff_count_requirement", 100 },
- { "rapidshot_requiem_active_duration_ms", 12000 },
- },
- stats = {
- "action_can_be_used_in_aiming_stance",
- "can_perform_skill_while_moving",
+ stats = {
"base_deal_no_damage",
- "display_statset_hide_usage_stats",
- "crossbow_ammo_skill_does_not_transition",
- "crossbow_ammo_has_no_ammo",
+ "quality_display_active_skill_base_area_of_effect_radius_is_gem",
},
levels = {
[1] = { actorLevel = 1, },
@@ -6061,85 +6579,72 @@ skills["CrossbowRequiemAmmoPlayer"] = {
},
}
}
-skills["CrossbowRequiemPlayer"] = {
- name = "Requiem",
+skills["VoidIllusionSpawnPlayer"] = {
+ name = "Void Illusion",
hidden = true,
- fromItem = true,
- description = "Unleashes a torrent of anguish that bombard the target area, dealing damage in an area on impact. Does not use Ammunition and can be fired freely until the Requiem ends.",
- skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CrossbowSkill] = true, },
- weaponTypes = {
- ["Crossbow"] = true,
- },
+ fromTree = true,
+ skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, },
castTime = 1,
qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.1 },
+ { "active_skill_base_area_of_effect_radius", 0.2 },
},
levels = {
- [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, },
- [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, },
- [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, },
- [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, },
- [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, },
- [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, },
- [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, },
- [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, },
- [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, },
- [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, },
- [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, },
- [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, },
- [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, },
- [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, },
- [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, },
- [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, },
- [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, },
- [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, },
- [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, },
- [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, },
- [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, },
- [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, },
- [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, },
- [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, },
- [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, },
- [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, },
- [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, },
- [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, },
- [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, },
- [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, },
- [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, },
- [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, },
- [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, },
- [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, },
- [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, },
- [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, },
- [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, },
- [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, },
- [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, },
- [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, },
+ [1] = { baseMultiplier = 1.85, storedUses = 1, levelRequirement = 0, cooldown = 5.9, },
+ [2] = { baseMultiplier = 2.04, storedUses = 1, levelRequirement = 0, cooldown = 5.8, },
+ [3] = { baseMultiplier = 2.24, storedUses = 1, levelRequirement = 0, cooldown = 5.7, },
+ [4] = { baseMultiplier = 2.45, storedUses = 1, levelRequirement = 0, cooldown = 5.6, },
+ [5] = { baseMultiplier = 2.65, storedUses = 1, levelRequirement = 0, cooldown = 5.5, },
+ [6] = { baseMultiplier = 2.86, storedUses = 1, levelRequirement = 0, cooldown = 5.4, },
+ [7] = { baseMultiplier = 3.07, storedUses = 1, levelRequirement = 0, cooldown = 5.3, },
+ [8] = { baseMultiplier = 3.27, storedUses = 1, levelRequirement = 0, cooldown = 5.2, },
+ [9] = { baseMultiplier = 3.46, storedUses = 1, levelRequirement = 0, cooldown = 5.1, },
+ [10] = { baseMultiplier = 3.66, storedUses = 1, levelRequirement = 0, cooldown = 5, },
+ [11] = { baseMultiplier = 3.87, storedUses = 1, levelRequirement = 0, cooldown = 4.9, },
+ [12] = { baseMultiplier = 4.1, storedUses = 1, levelRequirement = 0, cooldown = 4.8, },
+ [13] = { baseMultiplier = 4.34, storedUses = 1, levelRequirement = 0, cooldown = 4.7, },
+ [14] = { baseMultiplier = 4.61, storedUses = 1, levelRequirement = 0, cooldown = 4.6, },
+ [15] = { baseMultiplier = 4.9, storedUses = 1, levelRequirement = 0, cooldown = 4.5, },
+ [16] = { baseMultiplier = 5.2, storedUses = 1, levelRequirement = 0, cooldown = 4.4, },
+ [17] = { baseMultiplier = 5.54, storedUses = 1, levelRequirement = 0, cooldown = 4.3, },
+ [18] = { baseMultiplier = 5.9, storedUses = 1, levelRequirement = 0, cooldown = 4.2, },
+ [19] = { baseMultiplier = 6.28, storedUses = 1, levelRequirement = 0, cooldown = 4.1, },
+ [20] = { baseMultiplier = 6.7, storedUses = 1, levelRequirement = 0, cooldown = 4, },
+ [21] = { baseMultiplier = 7.15, storedUses = 1, levelRequirement = 0, cooldown = 3.9, },
+ [22] = { baseMultiplier = 7.62, storedUses = 1, levelRequirement = 0, cooldown = 3.8, },
+ [23] = { baseMultiplier = 8.13, storedUses = 1, levelRequirement = 0, cooldown = 3.7, },
+ [24] = { baseMultiplier = 8.67, storedUses = 1, levelRequirement = 0, cooldown = 3.6, },
+ [25] = { baseMultiplier = 9.25, storedUses = 1, levelRequirement = 0, cooldown = 3.5, },
+ [26] = { baseMultiplier = 9.87, storedUses = 1, levelRequirement = 0, cooldown = 3.4, },
+ [27] = { baseMultiplier = 10.52, storedUses = 1, levelRequirement = 0, cooldown = 3.3, },
+ [28] = { baseMultiplier = 11.23, storedUses = 1, levelRequirement = 0, cooldown = 3.2, },
+ [29] = { baseMultiplier = 11.97, storedUses = 1, levelRequirement = 0, cooldown = 3.1, },
+ [30] = { baseMultiplier = 12.77, storedUses = 1, levelRequirement = 0, cooldown = 3, },
+ [31] = { baseMultiplier = 13.62, storedUses = 1, levelRequirement = 0, cooldown = 2.95, },
+ [32] = { baseMultiplier = 14.53, storedUses = 1, levelRequirement = 0, cooldown = 2.9, },
+ [33] = { baseMultiplier = 15.5, storedUses = 1, levelRequirement = 0, cooldown = 2.85, },
+ [34] = { baseMultiplier = 16.53, storedUses = 1, levelRequirement = 0, cooldown = 2.8, },
+ [35] = { baseMultiplier = 17.63, storedUses = 1, levelRequirement = 0, cooldown = 2.75, },
+ [36] = { baseMultiplier = 18.8, storedUses = 1, levelRequirement = 0, cooldown = 2.7, },
+ [37] = { baseMultiplier = 20.06, storedUses = 1, levelRequirement = 0, cooldown = 2.65, },
+ [38] = { baseMultiplier = 21.39, storedUses = 1, levelRequirement = 0, cooldown = 2.6, },
+ [39] = { baseMultiplier = 22.82, storedUses = 1, levelRequirement = 0, cooldown = 2.55, },
+ [40] = { baseMultiplier = 24.34, storedUses = 1, levelRequirement = 0, cooldown = 2.5, },
},
statSets = {
[1] = {
- label = "Requiem",
+ label = "Void Illusion",
incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "rapid_shot_requiem",
+ statDescriptionScope = "create_void_illusion",
baseFlags = {
- projectile = true,
- area = true,
+ attack = true,
},
constantStats = {
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 50 },
- { "active_skill_base_area_of_effect_radius", 16 },
- { "active_skill_base_secondary_area_of_effect_radius", 24 },
- { "active_skill_base_physical_damage_%_to_convert_to_cold", 60 },
+ { "base_skill_effect_duration", 2000 },
+ { "active_skill_base_area_of_effect_radius", 30 },
},
stats = {
- "base_is_projectile",
- "action_requires_aiming_stance",
- "should_use_additive_aiming_animation",
- "projectile_uses_contact_position",
- "projectiles_crossbow_barrage",
- "can_perform_skill_while_moving",
+ "hide_minion_frame",
+ "triggered_by_void_illusion",
"quality_display_active_skill_base_area_of_effect_radius_is_gem",
},
levels = {
@@ -6187,527 +6692,135 @@ skills["CrossbowRequiemPlayer"] = {
},
}
}
-skills["ExplodingPoisonToadPlayer"] = {
- name = "Bursting Fen Toad",
- baseTypeName = "Bursting Fen Toad",
- fromItem = true,
- color = 4,
- description = "A Poisonous Toad leaps towards enemies and explodes, dealing damage in an area and inflicting Poison.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.UseGlobalStats] = true, },
- castTime = 1,
- qualityStats = {
- { "trigger_toad_spawn_chance_%", 0.5 },
- },
- levels = {
- [1] = { critChance = 5, baseMultiplier = 2.25, levelRequirement = 0, },
- [2] = { critChance = 5, baseMultiplier = 2.48, levelRequirement = 3, },
- [3] = { critChance = 5, baseMultiplier = 2.72, levelRequirement = 6, },
- [4] = { critChance = 5, baseMultiplier = 2.97, levelRequirement = 10, },
- [5] = { critChance = 5, baseMultiplier = 3.2, levelRequirement = 14, },
- [6] = { critChance = 5, baseMultiplier = 3.45, levelRequirement = 18, },
- [7] = { critChance = 5, baseMultiplier = 3.69, levelRequirement = 22, },
- [8] = { critChance = 5, baseMultiplier = 3.91, levelRequirement = 26, },
- [9] = { critChance = 5, baseMultiplier = 4.1, levelRequirement = 31, },
- [10] = { critChance = 5, baseMultiplier = 4.31, levelRequirement = 36, },
- [11] = { critChance = 5, baseMultiplier = 4.52, levelRequirement = 41, },
- [12] = { critChance = 5, baseMultiplier = 4.75, levelRequirement = 46, },
- [13] = { critChance = 5, baseMultiplier = 4.99, levelRequirement = 52, },
- [14] = { critChance = 5, baseMultiplier = 5.24, levelRequirement = 58, },
- [15] = { critChance = 5, baseMultiplier = 5.5, levelRequirement = 64, },
- [16] = { critChance = 5, baseMultiplier = 5.77, levelRequirement = 66, },
- [17] = { critChance = 5, baseMultiplier = 6.06, levelRequirement = 72, },
- [18] = { critChance = 5, baseMultiplier = 6.37, levelRequirement = 78, },
- [19] = { critChance = 5, baseMultiplier = 6.68, levelRequirement = 84, },
- [20] = { critChance = 5, baseMultiplier = 7.02, levelRequirement = 90, },
- [21] = { critChance = 5, baseMultiplier = 7.37, levelRequirement = 90, },
- [22] = { critChance = 5, baseMultiplier = 7.74, levelRequirement = 90, },
- [23] = { critChance = 5, baseMultiplier = 8.12, levelRequirement = 90, },
- [24] = { critChance = 5, baseMultiplier = 8.53, levelRequirement = 90, },
- [25] = { critChance = 5, baseMultiplier = 8.96, levelRequirement = 90, },
- [26] = { critChance = 5, baseMultiplier = 9.4, levelRequirement = 90, },
- [27] = { critChance = 5, baseMultiplier = 9.87, levelRequirement = 90, },
- [28] = { critChance = 5, baseMultiplier = 10.37, levelRequirement = 90, },
- [29] = { critChance = 5, baseMultiplier = 10.89, levelRequirement = 90, },
- [30] = { critChance = 5, baseMultiplier = 11.43, levelRequirement = 90, },
- [31] = { critChance = 5, baseMultiplier = 12, levelRequirement = 90, },
- [32] = { critChance = 5, baseMultiplier = 12.6, levelRequirement = 90, },
- [33] = { critChance = 5, baseMultiplier = 13.23, levelRequirement = 90, },
- [34] = { critChance = 5, baseMultiplier = 13.89, levelRequirement = 90, },
- [35] = { critChance = 5, baseMultiplier = 14.59, levelRequirement = 90, },
- [36] = { critChance = 5, baseMultiplier = 15.32, levelRequirement = 90, },
- [37] = { critChance = 5, baseMultiplier = 16.08, levelRequirement = 90, },
- [38] = { critChance = 5, baseMultiplier = 16.89, levelRequirement = 90, },
- [39] = { critChance = 5, baseMultiplier = 17.73, levelRequirement = 90, },
- [40] = { critChance = 5, baseMultiplier = 18.62, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Bursting Fen Toad",
- baseEffectiveness = 2,
- incrementalEffectiveness = 0.27349999547005,
- statDescriptionScope = "exploding_poison_toad",
- baseFlags = {
- area = true,
- attack = true,
- },
- constantStats = {
- { "trigger_toad_spawn_chance_%", 25 },
- { "base_chance_to_poison_on_hit_%", 100 },
- { "active_skill_base_area_of_effect_radius", 25 },
- },
- stats = {
- "attack_minimum_added_physical_damage",
- "attack_maximum_added_physical_damage",
- "is_area_damage",
- },
- levels = {
- [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["PinnacleOfPowerPlayer"] = {
- name = "Pinnacle of Power",
- baseTypeName = "Pinnacle of Power",
- fromItem = true,
- color = 4,
- description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, },
- castTime = 0,
- qualityStats = {
- { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 },
- },
- levels = {
- [20] = { storedUses = 1, levelRequirement = 0, cooldown = 4, cost = { Mana = 93, }, },
- },
- statSets = {
- [1] = {
- label = "Pinnacle of Power",
- incrementalEffectiveness = 0.054999999701977,
- statDescriptionScope = "elemental_power",
- baseFlags = {
- buff = true,
- duration = true,
- },
- constantStats = {
- { "elemental_power_buff_duration_per_power_charge_ms", 5000 },
- { "elemental_power_elemental_damage_+%_final_per_power_charge", 8 },
- },
- stats = {
- "base_skill_is_instant",
- "base_deal_no_damage",
- "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem",
- },
- levels = {
- [20] = { actorLevel = 60, },
- },
- },
- }
-}
-skills["ImpurityPlayer"] = {
- name = "Impurity",
- baseTypeName = "Impurity",
- fromItem = true,
- color = 3,
- description = "Emit an Aura that boosts the Chaos Resistance of you and Allies in your Presence.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Chaos] = true, [SkillType.AffectsPresence] = true, },
- castTime = 0,
- qualityStats = {
- { "base_skill_buff_chaos_damage_resistance_%_to_apply", 0.3 },
- },
- levels = {
- [1] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 0, },
- [2] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 3, },
- [3] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 6, },
- [4] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 10, },
- [5] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 14, },
- [6] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 18, },
- [7] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 22, },
- [8] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 26, },
- [9] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 31, },
- [10] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 36, },
- [11] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 41, },
- [12] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 46, },
- [13] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 52, },
- [14] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 58, },
- [15] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 64, },
- [16] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 66, },
- [17] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 72, },
- [18] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 78, },
- [19] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 84, },
- [20] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [21] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [22] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [23] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [24] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [25] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [26] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [27] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [28] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [29] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [30] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [31] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [32] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [33] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [34] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [35] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [36] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [37] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [38] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [39] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- [40] = { reservationMultiplier = -100, manaMultiplier = -100, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Impurity",
- incrementalEffectiveness = 0.092720001935959,
- statDescriptionScope = "chaos_resist_aura",
- statMap = {
- ["base_skill_buff_chaos_damage_resistance_%_to_apply"] = {
- mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }),
+ skills["EnemyExplode"] = {
+ name = "On Kill Monster Explosion",
+ hidden = true,
+ color = 4,
+ skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, },
+ castTime = 0,
+ levels = {
+ [1] = { damageEffectiveness = 0, baseMultiplier = 1, levelRequirement = 1, }
},
- },
- baseFlags = {
- aura = true,
- },
- constantStats = {
- { "skill_desired_amount_override", 1 },
- },
- stats = {
- "base_skill_buff_chaos_damage_resistance_%_to_apply",
- "base_deal_no_damage",
- },
- levels = {
- [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, },
- [2] = { 11, statInterpolation = { 1, }, actorLevel = 3.4519999027252, },
- [3] = { 12, statInterpolation = { 1, }, actorLevel = 6.7670001983643, },
- [4] = { 13, statInterpolation = { 1, }, actorLevel = 10.307999610901, },
- [5] = { 14, statInterpolation = { 1, }, actorLevel = 14.074999809265, },
- [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, },
- [7] = { 16, statInterpolation = { 1, }, actorLevel = 22.287000656128, },
- [8] = { 17, statInterpolation = { 1, }, actorLevel = 26.732000350952, },
- [9] = { 18, statInterpolation = { 1, }, actorLevel = 31.40299987793, },
- [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, },
- [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, },
- [12] = { 21, statInterpolation = { 1, }, actorLevel = 46.771999359131, },
- [13] = { 22, statInterpolation = { 1, }, actorLevel = 52.34700012207, },
- [14] = { 23, statInterpolation = { 1, }, actorLevel = 58.147998809814, },
- [15] = { 24, statInterpolation = { 1, }, actorLevel = 64.175003051758, },
- [16] = { 25, statInterpolation = { 1, }, actorLevel = 70.428001403809, },
- [17] = { 26, statInterpolation = { 1, }, actorLevel = 76.906997680664, },
- [18] = { 27, statInterpolation = { 1, }, actorLevel = 83.611999511719, },
- [19] = { 28, statInterpolation = { 1, }, actorLevel = 90.542999267578, },
- [20] = { 29, statInterpolation = { 1, }, actorLevel = 97.699996948242, },
- [21] = { 30, statInterpolation = { 1, }, actorLevel = 105.08300018311, },
- [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, },
- [23] = { 32, statInterpolation = { 1, }, actorLevel = 120.52700042725, },
- [24] = { 33, statInterpolation = { 1, }, actorLevel = 128.58799743652, },
- [25] = { 34, statInterpolation = { 1, }, actorLevel = 136.875, },
- [26] = { 35, statInterpolation = { 1, }, actorLevel = 145.38800048828, },
- [27] = { 36, statInterpolation = { 1, }, actorLevel = 154.12699890137, },
- [28] = { 37, statInterpolation = { 1, }, actorLevel = 163.09199523926, },
- [29] = { 38, statInterpolation = { 1, }, actorLevel = 172.28300476074, },
- [30] = { 39, statInterpolation = { 1, }, actorLevel = 181.69999694824, },
- [31] = { 40, statInterpolation = { 1, }, actorLevel = 191.34300231934, },
- [32] = { 41, statInterpolation = { 1, }, actorLevel = 201.21200561523, },
- [33] = { 42, statInterpolation = { 1, }, actorLevel = 211.30700683594, },
- [34] = { 43, statInterpolation = { 1, }, actorLevel = 221.62800598145, },
- [35] = { 44, statInterpolation = { 1, }, actorLevel = 232.17500305176, },
- [36] = { 45, statInterpolation = { 1, }, actorLevel = 242.94799804688, },
- [37] = { 46, statInterpolation = { 1, }, actorLevel = 253.94700622559, },
- [38] = { 47, statInterpolation = { 1, }, actorLevel = 265.17199707031, },
- [39] = { 48, statInterpolation = { 1, }, actorLevel = 276.62298583984, },
- [40] = { 49, statInterpolation = { 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["HeartOfIcePlayer"] = {
- name = "Heart of Ice",
- baseTypeName = "Heart of Ice",
- fromItem = true,
- color = 3,
- description = "Chills all enemies in your Presence.",
- skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.Cold] = true, [SkillType.Spell] = true, },
- castTime = 0,
- qualityStats = {
- { "active_skill_chill_effect_+%_final", 1 },
- },
- levels = {
- [1] = { critChance = 11, levelRequirement = 0, },
- [2] = { critChance = 11, levelRequirement = 3, },
- [3] = { critChance = 11, levelRequirement = 6, },
- [4] = { critChance = 11, levelRequirement = 10, },
- [5] = { critChance = 11, levelRequirement = 14, },
- [6] = { critChance = 11, levelRequirement = 18, },
- [7] = { critChance = 11, levelRequirement = 22, },
- [8] = { critChance = 11, levelRequirement = 26, },
- [9] = { critChance = 11, levelRequirement = 31, },
- [10] = { critChance = 11, levelRequirement = 36, },
- [11] = { critChance = 11, levelRequirement = 41, },
- [12] = { critChance = 11, levelRequirement = 46, },
- [13] = { critChance = 11, levelRequirement = 52, },
- [14] = { critChance = 11, levelRequirement = 58, },
- [15] = { critChance = 11, levelRequirement = 64, },
- [16] = { critChance = 11, levelRequirement = 66, },
- [17] = { critChance = 11, levelRequirement = 72, },
- [18] = { critChance = 11, levelRequirement = 78, },
- [19] = { critChance = 11, levelRequirement = 84, },
- [20] = { critChance = 11, levelRequirement = 90, },
- [21] = { critChance = 11, levelRequirement = 90, },
- [22] = { critChance = 11, levelRequirement = 90, },
- [23] = { critChance = 11, levelRequirement = 90, },
- [24] = { critChance = 11, levelRequirement = 90, },
- [25] = { critChance = 11, levelRequirement = 90, },
- [26] = { critChance = 11, levelRequirement = 90, },
- [27] = { critChance = 11, levelRequirement = 90, },
- [28] = { critChance = 11, levelRequirement = 90, },
- [29] = { critChance = 11, levelRequirement = 90, },
- [30] = { critChance = 11, levelRequirement = 90, },
- [31] = { critChance = 11, levelRequirement = 90, },
- [32] = { critChance = 11, levelRequirement = 90, },
- [33] = { critChance = 11, levelRequirement = 90, },
- [34] = { critChance = 11, levelRequirement = 90, },
- [35] = { critChance = 11, levelRequirement = 90, },
- [36] = { critChance = 11, levelRequirement = 90, },
- [37] = { critChance = 11, levelRequirement = 90, },
- [38] = { critChance = 11, levelRequirement = 90, },
- [39] = { critChance = 11, levelRequirement = 90, },
- [40] = { critChance = 11, levelRequirement = 90, },
- },
- statSets = {
- [1] = {
- label = "Heart of Ice",
- baseEffectiveness = 3.7999999523163,
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.0082000000402331,
- statDescriptionScope = "chilling_aura",
- baseFlags = {
- buff = true,
- aura = true,
- },
- constantStats = {
- { "skill_desired_amount_override", 1 },
- },
- stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "skill_chill_magnitude_is_aura_magnitude",
- },
- levels = {
- [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 22, 34, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 46, 69, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 80, 119, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 109, 164, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 127, 191, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 170, 254, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 195, 292, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 255, 383, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 291, 437, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 332, 498, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 378, 567, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 430, 645, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 489, 734, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 556, 834, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 632, 947, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 717, 1076, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 815, 1222, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 925, 1388, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 1051, 1577, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 1195, 1792, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 1359, 2038, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 1545, 2318, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 1759, 2638, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 2003, 3004, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 2283, 3424, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 2603, 3905, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 2971, 4456, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 3394, 5090, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 3880, 5820, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 4440, 6660, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 5086, 7629, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
-skills["IcestormPlayer"] = {
- name = "Icestorm",
- baseTypeName = "Icestorm",
- fromItem = true,
- color = 3,
- description = "Conjure a hail of icy bolts over the targeted area. Chill and Freeze on enemies in front of you are Consumed to fuel the Icestorm by creating improved bolts.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.SkillConsumesFreeze] = true, },
- castTime = 1.2,
- qualityStats = {
- { "active_skill_base_area_of_effect_radius", 0.1 },
- },
- levels = {
- [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 13, }, },
- [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 15, }, },
- [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 17, }, },
- [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 19, }, },
- [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 22, }, },
- [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 25, }, },
- [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 28, }, },
- [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 32, }, },
- [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 37, }, },
- [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 41, }, },
- [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 47, }, },
- [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 53, }, },
- [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 60, }, },
- [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 68, }, },
- [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 77, }, },
- [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 88, }, },
- [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 99, }, },
- [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 112, }, },
- [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 127, }, },
- [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 144, }, },
- [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 163, }, },
- [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 185, }, },
- [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 209, }, },
- [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 237, }, },
- [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 268, }, },
- [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 303, }, },
- [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 343, }, },
- [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 388, }, },
- [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 439, }, },
- [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 497, }, },
- [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 563, }, },
- [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 637, }, },
- [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 721, }, },
- [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 816, }, },
- [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 924, }, },
- [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1045, }, },
- [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1183, }, },
- [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1339, }, },
- [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1516, }, },
- [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 1715, }, },
- },
- statSets = {
- [1] = {
- label = "Storm",
- incrementalEffectiveness = 0.14000000059605,
- damageIncrementalEffectiveness = 0.006800000090152,
- statDescriptionScope = "ice_storm",
- baseFlags = {
- spell = true,
- area = true,
- duration = true,
- },
- constantStats = {
- { "fire_storm_fireball_delay_ms", 150 },
- { "firestorm_max_number_of_storms", 3 },
- { "base_skill_effect_duration", 6000 },
- { "active_skill_base_area_of_effect_radius", 9 },
- { "active_skill_base_secondary_area_of_effect_radius", 26 },
- { "movement_speed_+%_final_while_performing_action", -70 },
- { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 },
- { "movement_speed_while_performing_action_locked_duration_%", 60 },
- { "rain_hit_delay_ms", 150 },
- { "firestorm_improved_bolts_per_chill_consumed", 1 },
- { "firestorm_improved_bolts_per_monster_power_of_freeze_consumed", 1 },
- },
- stats = {
- "spell_minimum_base_cold_damage",
- "spell_maximum_base_cold_damage",
- "base_skill_show_average_damage_instead_of_dps",
- "is_area_damage",
- "can_perform_skill_while_moving",
- "cold_damage_cannot_chill",
- "never_freeze",
- "quality_display_active_skill_base_area_of_effect_radius_is_gem",
- },
- levels = {
- [1] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 1, },
- [2] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, },
- [3] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, },
- [4] = { 8, 11, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, },
- [5] = { 10, 14, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, },
- [6] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, },
- [7] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, },
- [8] = { 17, 26, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, },
- [9] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, },
- [10] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, },
- [11] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, },
- [12] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, },
- [13] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, },
- [14] = { 41, 62, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, },
- [15] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, },
- [16] = { 53, 80, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, },
- [17] = { 60, 91, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, },
- [18] = { 68, 103, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, },
- [19] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, },
- [20] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, },
- [21] = { 98, 147, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, },
- [22] = { 110, 165, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, },
- [23] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, },
- [24] = { 139, 209, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, },
- [25] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 136.875, },
- [26] = { 175, 263, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, },
- [27] = { 197, 295, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, },
- [28] = { 221, 331, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, },
- [29] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, },
- [30] = { 278, 417, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, },
- [31] = { 312, 468, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, },
- [32] = { 350, 526, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, },
- [33] = { 394, 590, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, },
- [34] = { 442, 663, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, },
- [35] = { 497, 745, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, },
- [36] = { 559, 838, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, },
- [37] = { 628, 943, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, },
- [38] = { 707, 1061, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, },
- [39] = { 797, 1195, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, },
- [40] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, },
- },
- },
- }
-}
\ No newline at end of file
+ preDamageFunc = function(activeSkill, output)
+ output.ExplodeChance = 0
+ local statSet = activeSkill.activeEffect.statSet or activeSkill.activeEffect.statSetCalcs
+ if statSet.index ~= 3 then
+ local allExplodeMods = activeSkill.skillModList:Tabulate("LIST", activeSkill.skillCfg, "ExplodeMod")
+ for _, explodeMod in ipairs(allExplodeMods) do
+ local activeEffectSource = activeSkill.activeEffect.srcInstance.explodeSource.modSource or "Tree:"..activeSkill.activeEffect.srcInstance.explodeSource.id
+ if explodeMod.mod.source == activeEffectSource then
+ local explodeMod = explodeMod.value
+ if explodeMod.type == "RandomElement" then
+ activeSkill.skillData["FireEffectiveExplodePercentage"] = explodeMod.amount / 3
+ activeSkill.skillData["ColdEffectiveExplodePercentage"] = explodeMod.amount / 3
+ activeSkill.skillData["LightningEffectiveExplodePercentage"] = explodeMod.amount / 3
+ else
+ activeSkill.skillData[explodeMod.type.."EffectiveExplodePercentage"] = explodeMod.amount
+ end
+ output.ExplodeChance = statSet.index == 2 and 1 or explodeMod.chance
+ end
+ end
+ else
+ local typeAmountChances = { }
+ local explodeModList = activeSkill.skillModList:List(activeSkill.skillCfg, "ExplodeMod")
+ for _, explodeMod in ipairs(explodeModList) do
+ local amountChance = typeAmountChances[explodeMod.type] or { }
+ amountChance[explodeMod.amount] = (amountChance[explodeMod.amount] or 0) + explodeMod.chance
+ typeAmountChances[explodeMod.type] = amountChance
+ end
+ for type, amountChance in pairs(typeAmountChances) do
+ local physExplodeChance = 0
+ for amount, chance in pairs(amountChance) do
+ local amountXChance = amount * chance
+ if type == "RandomElement" then
+ activeSkill.skillData["FireEffectiveExplodePercentage"] = (activeSkill.skillData["FireEffectiveExplodePercentage"] or 0) + amountXChance / 3
+ activeSkill.skillData["ColdEffectiveExplodePercentage"] = (activeSkill.skillData["ColdEffectiveExplodePercentage"] or 0) + amountXChance / 3
+ activeSkill.skillData["LightningEffectiveExplodePercentage"] = (activeSkill.skillData["LightningEffectiveExplodePercentage"] or 0) + amountXChance / 3
+ else
+ activeSkill.skillData[type.."EffectiveExplodePercentage"] = (activeSkill.skillData[type.."EffectiveExplodePercentage"] or 0) + amountXChance
+ end
+ if type == "Physical" then
+ physExplodeChance = 1 - ((1 - physExplodeChance) * (1 - chance))
+ end
+ output.ExplodeChance = 1 - ((1 - output.ExplodeChance) * (1 - chance))
+ end
+ if type == "Physical" and physExplodeChance ~= 0 then
+ activeSkill.skillModList:NewMod("CalcArmourAsThoughDealing", "MORE", 100 / math.min(physExplodeChance, 1) - 100)
+ end
+ end
+ end
+ output.ExplodeChance = math.min(output.ExplodeChance * 100, 100)
+ end,
+ statSets = {
+ [1] = {
+ label = "This Source Only",
+ baseFlags = {
+ area = true,
+ monsterExplode = true,
+ },
+ baseMods = {
+ skill("radius", 22),
+ skill("showAverage", true),
+ skill("corpseExplosionLifeMultiplier", 0),
+ skill("explodeCorpse", true),
+ skill("hitChanceIsExplodeChance", true),
+ },
+ stats = {
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "display_skill_deals_secondary_damage",
+ "damage_cannot_be_reflected",
+ "skill_can_add_multiple_charges_per_action",
+ },
+ levels = {
+ [1] = { },
+ },
+ },
+ [2] = {
+ label = "This Source Only, Ignoring Chance",
+ baseFlags = {
+ area = true,
+ monsterExplode = true,
+ },
+ baseMods = {
+ skill("radius", 22),
+ skill("showAverage", true),
+ skill("corpseExplosionLifeMultiplier", 0),
+ skill("explodeCorpse", true),
+ },
+ stats = {
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "display_skill_deals_secondary_damage",
+ "damage_cannot_be_reflected",
+ "skill_can_add_multiple_charges_per_action",
+ },
+ levels = {
+ [1] = { },
+ },
+ },
+ [3] = {
+ label = "Average of All Sources",
+ baseFlags = {
+ area = true,
+ monsterExplode = true,
+ },
+ baseMods = {
+ skill("radius", 22),
+ skill("showAverage", true),
+ skill("corpseExplosionLifeMultiplier", 0),
+ skill("explodeCorpse", true),
+ },
+ stats = {
+ "is_area_damage",
+ "base_skill_show_average_damage_instead_of_dps",
+ "display_skill_deals_secondary_damage",
+ "damage_cannot_be_reflected",
+ "skill_can_add_multiple_charges_per_action",
+ },
+ levels = {
+ [1] = { },
+ },
+ },
+ }
+ }
diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua
index 2d373e8333..3ec759d084 100644
--- a/src/Data/Skills/spectre.lua
+++ b/src/Data/Skills/spectre.lua
@@ -61,6 +61,9 @@ skills["ABTTProcessionBannerDrain"] = {
"base_physical_damage_taken_per_minute",
"is_area_damage",
},
+ notMinionStat = {
+ "base_physical_damage_taken_per_minute",
+ },
levels = {
[1] = { 16.666667039196, statInterpolation = { 3, }, actorLevel = 1, },
},
@@ -71,7 +74,7 @@ skills["AzmeriFabricationDespair"] = {
name = "Despair",
hidden = true,
description = "Curse all targets in an area after a short delay, lowering their Chaos Resistance.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Chaos] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -112,7 +115,7 @@ skills["AzmeriFabricationEnfeeble"] = {
name = "Enfeeble",
hidden = true,
description = "Curse all targets in an area after a short delay, making them deal less damage.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -140,7 +143,6 @@ skills["AzmeriFabricationEnfeeble"] = {
constantStats = {
{ "accuracy_rating_+%", -60 },
{ "base_skill_buff_damage_+%_final_to_apply", -60 },
- { "base_skill_buff_damage_+%_final_vs_unique_to_apply", -23 },
{ "active_skill_area_of_effect_radius_+%_final", 100 },
},
stats = {
@@ -158,7 +160,7 @@ skills["AzmeriFabricationTemporalChains"] = {
name = "Temporal Chains",
hidden = true,
description = "Curse all enemies in an area, Slowing them and making other effects on them expire more slowly.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, },
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1,
qualityStats = {
},
@@ -233,7 +235,7 @@ skills["AzmeriPictBowRainOfSpores"] = {
"skill_can_fire_arrows",
"cannot_pierce",
"action_attack_or_cast_time_uses_animation_length",
- "base_skill_cannot_be_blocked",
+ "base_cannot_be_blocked",
},
levels = {
[1] = { 16.666667039196, statInterpolation = { 3, }, actorLevel = 1, },
@@ -244,8 +246,8 @@ skills["AzmeriPictBowRainOfSpores"] = {
skills["BloodMageBloodTendrils"] = {
name = "Exsanguinate",
hidden = true,
- description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies hit by the tendrils take Physical damage and are inflicted with a Debuff that deals Physical damage over time.",
- skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, },
+ description = "Expel your own blood as Chaining blood tendrils in a cone in front of you. Enemies Hit by the tendrils take Physical damage and are inflicted with Bleeding.",
+ skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Unleashable] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.NoAttackInPlace] = true, },
castTime = 1.67,
qualityStats = {
},
@@ -279,6 +281,10 @@ skills["BloodMageBloodTendrils"] = {
"blood_tendrils_beam_count",
"spell_damage_modifiers_apply_to_skill_dot",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, 66.666668156783, 2, statInterpolation = { 3, 3, 3, 1, }, actorLevel = 1, },
},
@@ -316,6 +322,10 @@ skills["BoneCultistZealotFirestorm"] = {
"spell_maximum_base_physical_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -349,6 +359,10 @@ skills["BoneCultistZealotLightningstorm"] = {
"spell_maximum_base_lightning_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -740,6 +754,10 @@ skills["EDSPyramidHandLightningLance"] = {
"base_skill_can_be_blocked",
"base_skill_can_be_avoided_by_dodge_roll",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -779,6 +797,10 @@ skills["EDSShellMonsterFlamethrower"] = {
"base_skill_can_be_blocked",
"base_skill_can_be_avoided_by_dodge_roll",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -814,6 +836,10 @@ skills["EDSShellMonsterPoisonSpray"] = {
"spell_minimum_base_chaos_damage",
"spell_maximum_base_chaos_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -855,6 +881,10 @@ skills["ExpeditionGroundLaser"] = {
"cannot_stun",
"disable_visual_hit_effect",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, 50, statInterpolation = { 3, 3, 1, }, actorLevel = 1, },
[2] = { 0.80000001192093, 1.2000000476837, 200, statInterpolation = { 3, 3, 1, }, actorLevel = 68, },
@@ -940,6 +970,10 @@ skills["FungalArtilleryMortar"] = {
"base_skill_can_be_avoided_by_dodge_roll",
"projectile_ballistic_angle_from_reference_event",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1013,6 +1047,10 @@ skills["GSArmourCasterVolatileExplode"] = {
"spell_maximum_base_lightning_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1048,6 +1086,10 @@ skills["GSCenobiteBloaterOnDeath"] = {
"spell_maximum_base_physical_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1087,6 +1129,10 @@ skills["GSMercurialCasterBlast"] = {
"spell_maximum_base_fire_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
[2] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 45, },
@@ -1121,8 +1167,8 @@ skills["GACenobiteBloaterSlam"] = {
stats = {
"is_area_damage",
"action_attack_or_cast_time_uses_animation_length",
- "base_skill_cannot_be_blocked",
- "base_skill_cannot_be_avoided_by_dodge_roll",
+ "base_cannot_be_blocked",
+ "base_skill_cannot_be_avoided_by_dodge_roll_or_evaded_or_blocked",
},
levels = {
[1] = { actorLevel = 1, },
@@ -1538,13 +1584,17 @@ skills["GraveyardSpookyGhostExplode"] = {
hit = true,
},
constantStats = {
- { "freeze_as_though_dealt_damage_+%", 100 },
+ { "hit_damage_freeze_multiplier_+%", 100 },
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1585,6 +1635,10 @@ skills["GSDesertBatZap"] = {
"is_area_damage",
"base_skill_can_be_blocked",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1627,6 +1681,10 @@ skills["GSExpeditionBoneCultistEggExplosion"] = {
"base_skill_can_be_blocked",
"base_skill_can_be_avoided_by_dodge_roll",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1663,6 +1721,10 @@ skills["GSHellscapeDemonEliteBeamNuke"] = {
"spell_maximum_base_fire_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1700,6 +1762,10 @@ skills["GSHellscapePaleEliteBoltImpact"] = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1737,6 +1803,10 @@ skills["GSHellscapePaleEliteOmegaBeam"] = {
"spell_minimum_base_lightning_damage",
"spell_maximum_base_lightning_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1774,8 +1844,12 @@ skills["GSProwlingShadeIceBeam"] = {
"spell_maximum_base_cold_damage",
"is_area_damage",
},
+ notMinionStat = {
+ "spell_minimum_base_cold_damage",
+ "spell_maximum_base_cold_damage",
+ },
levels = {
- [1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 35, },
+ [1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
},
}
@@ -1811,6 +1885,10 @@ skills["GSRagingFireSpiritsVolatileSanctum"] = {
"is_area_damage",
"action_attack_or_cast_time_uses_animation_length",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1848,6 +1926,10 @@ skills["GSRagingTimeSpiritsVolatileSanctum"] = {
"is_area_damage",
"action_attack_or_cast_time_uses_animation_length",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1883,6 +1965,10 @@ skills["GSVaalConstructSkitterbotGrenadeExplode"] = {
"skill_ignore_moving_slowdown_on_shift_attack",
"base_is_projectile",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -1951,6 +2037,10 @@ skills["HellscapeDemonFodderFaceLaser"] = {
"base_skill_can_be_blocked",
"base_skill_can_be_avoided_by_dodge_roll",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -2219,6 +2309,7 @@ skills["MASKelpDregCrossbow"] = {
},
constantStats = {
{ "arrow_projectile_variation", 1001 },
+ { "chance_to_poison_on_hit_with_attacks_%", 20 },
},
stats = {
"skill_can_fire_arrows",
@@ -2446,6 +2537,10 @@ skills["MMSBaneSapling"] = {
"use_scaled_contact_offset",
"projectile_ballistic_angle_from_target_distance",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -2493,6 +2588,10 @@ skills["MMSBoneRabbleMortar"] = {
"use_scaled_contact_offset",
"action_attack_or_cast_time_uses_animation_length",
},
+ notMinionStat = {
+ "spell_minimum_base_lightning_damage",
+ "spell_maximum_base_lightning_damage",
+ },
levels = {
[1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -2539,6 +2638,10 @@ skills["MMSHellscapeDemonEliteTripleMortar"] = {
"use_scaled_contact_offset",
"distribute_projectiles_over_contact_points",
},
+ notMinionStat = {
+ "spell_minimum_base_physical_damage",
+ "spell_maximum_base_physical_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -2549,7 +2652,7 @@ skills["MMSVaalGuardGrenade"] = {
name = "Explosive Grenade",
hidden = true,
description = "Fire a bouncing Grenade that unleashes a devastating fiery blast when its fuse expires.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, [SkillType.Detonator] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -2595,7 +2698,7 @@ skills["MMSVaalGuardOilTrap"] = {
name = "Oil Grenade",
hidden = true,
description = "Fire a bouncing Grenade that bursts in a spray of Oil when the fuse expires or when it impacts an Enemy, dealing minimal damage but covering the ground and nearby enemies in Oil. Oil created this way can be Ignited by Detonator Skills or Ignited Ground.",
- skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, },
+ skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.NoAttackInPlace] = true, },
weaponTypes = {
["Crossbow"] = true,
},
@@ -2628,8 +2731,8 @@ skills["MMSVaalGuardOilTrap"] = {
"active_skill_base_area_of_effect_radius",
"skill_base_covered_in_oil_movement_speed_+%_final_to_apply",
"skill_base_ground_oil_movement_speed_+%_final_to_apply",
- "skill_base_ground_oil_exposure_-_to_total_fire_resistance",
- "skill_base_covered_in_oil_exposure_-_to_total_fire_resistance",
+ "skill_base_ground_oil_exposure_-_to_total_elemental_resistance",
+ "skill_base_covered_in_oil_exposure_-_to_total_elemental_resistance",
"base_is_projectile",
"projectile_ballistic_angle_from_reference_event",
"projectile_uses_contact_position",
@@ -2680,6 +2783,10 @@ skills["MPSArmourCasterBasic"] = {
"disable_visual_hit_effect",
"distribute_projectiles_over_contact_points",
},
+ notMinionStat = {
+ "spell_minimum_base_fire_damage",
+ "spell_maximum_base_fire_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, },
},
@@ -2723,6 +2830,10 @@ skills["MPSAzmeriPictStaffProj"] = {
"maintain_projectile_direction_when_using_contact_position",
"check_for_targets_between_initiator_and_projectile_source",
},
+ notMinionStat = {
+ "spell_minimum_base_chaos_damage",
+ "spell_maximum_base_chaos_damage",
+ },
levels = {
[1] = { 0.80000001192093, 1.2000000476837, statInt